-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-bluechi-uds-to-policy
- Loading branch information
Showing
38 changed files
with
331 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
SPECFILE_SUBPACKAGE_DVB=rpm/dvb/dvb.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM dvb package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-dvb-${VERSION}/ \ | ||
-f /tmp/qm-dvb-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/etc/qm/containers/containers.conf.d/qm_dropin_mount_bind_dvb.conf | ||
cd $(ROOTDIR) && mv /tmp/qm-dvb-${VERSION}.tar.gz ./rpm | ||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM package, useful for development | ||
mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
tools/version-update -v ${VERSION} | ||
cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_DVB} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
SPECFILE_SUBPACKAGE_IMG_TEMPDIR=rpm/img_tempdir/img_tempdir.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM img_tempdir package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-img_tempdir-${VERSION}/ \ | ||
-f /tmp/qm-img_tempdir-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/etc/qm/containers/containers.conf.d/qm_dropin_img_tempdir.conf | ||
cd $(ROOTDIR) && mv /tmp/qm-img_tempdir-${VERSION}.tar.gz ./rpm | ||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM package, useful for development | ||
mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
tools/version-update -v ${VERSION} | ||
cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_IMG_TEMPDIR} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
SPECFILE_SUBPACKAGE_INPUT=rpm/input/input.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM input package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-input-${VERSION}/ \ | ||
-f /tmp/qm-input-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/etc/qm/containers/containers.conf.d/qm_dropin_mount_bind_input.conf | ||
cd $(ROOTDIR) && mv /tmp/qm-input-${VERSION}.tar.gz ./rpm | ||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM package, useful for development | ||
mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
tools/version-update -v ${VERSION} | ||
cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_INPUT} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
SPECFILE_SUBPACKAGE_KVM=rpm/kvm/qm-kvm.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM kvm package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-kvm-${VERSION}/ \ | ||
-f /tmp/qm-kvm-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/etc/containers/systemd/qm.container.d/qm_dropin_mount_bind_kvm.conf | ||
cd $(ROOTDIR) && mv /tmp/qm-kvm-${VERSION}.tar.gz ./rpm | ||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM windowmanager package, useful for development | ||
cd $(ROOTDIR) && mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
cd $(ROOTDIR) && tools/version-update -v ${VERSION} | ||
cd $(ROOTDIR) && cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
cd $(ROOTDIR) && rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_IMG_WINDOWMANAGER} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
SPECFILE_SUBPACKAGE_RADIO=rpm/radio/radio.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM radio package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-radio-${VERSION}/ \ | ||
-f /tmp/qm-radio-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/etc/qm/containers/containers.conf.d/qm_dropin_mount_bind_radio.conf | ||
cd $(ROOTDIR) && mv /tmp/qm-radio-${VERSION}.tar.gz ./rpm | ||
|
||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM package, useful for development | ||
mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
tools/version-update -v ${VERSION} | ||
cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_RADIO} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
SPECFILE_SUBPACKAGE_ROS2_ROLLING=rpm/ros2/rolling/ros2_rolling.spec | ||
|
||
.PHONY: dist | ||
dist: ## - Creates the QM ros2 package | ||
cd $(ROOTDIR) && tar cvz \ | ||
--exclude-from=build-aux/exclude_from_tar_gz_subpackage_kvm.txt \ | ||
--dereference \ | ||
--transform s/qm/qm-ros2-${VERSION}/ \ | ||
-f /tmp/qm-ros2-${VERSION}.tar.gz \ | ||
../qm/README.md \ | ||
../qm/SECURITY.md \ | ||
../qm/LICENSE \ | ||
../qm/ \ | ||
../qm/subsystems/ros2/etc/containers/systemd/ros2-rolling.container | ||
cd $(ROOTDIR) && mv /tmp/qm-ros2-${VERSION}.tar.gz ./rpm | ||
|
||
|
||
.PHONY: rpm | ||
rpm: dist ## - Creates a local RPM package, useful for development | ||
cd $(ROOTDIR) && mkdir -p ${RPM_TOPDIR}/{RPMS,SRPMS,BUILD,SOURCES} | ||
cd $(ROOTDIR) && tools/version-update -v ${VERSION} | ||
cd $(ROOTDIR) && cp ./rpm/v${VERSION}.tar.gz ${RPM_TOPDIR}/SOURCES | ||
cd $(ROOTDIR) && rpmbuild -ba \ | ||
--define="_topdir ${RPM_TOPDIR}" \ | ||
--define="version ${VERSION}" \ | ||
${SPECFILE_SUBPACKAGE_ROS2_ROLLING} | ||
|
File renamed without changes.
File renamed without changes.
Oops, something went wrong.