import osbuild-44-1.el9
This commit is contained in:
parent
8cda1f6b47
commit
eb35806218
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/osbuild-42.tar.gz
|
||||
SOURCES/osbuild-44.tar.gz
|
||||
|
@ -1 +1 @@
|
||||
b8cf5a56914828be3315523c90271c46ae8ceda8 SOURCES/osbuild-42.tar.gz
|
||||
949d3841355957371d0356dc6522676ea54f7c45 SOURCES/osbuild-44.tar.gz
|
||||
|
@ -1,7 +1,7 @@
|
||||
%global forgeurl https://github.com/osbuild/osbuild
|
||||
%global selinuxtype targeted
|
||||
|
||||
Version: 42
|
||||
Version: 44
|
||||
|
||||
%forgemeta
|
||||
|
||||
@ -21,6 +21,7 @@ Summary: A build system for OS images
|
||||
BuildRequires: make
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-docutils
|
||||
BuildRequires: systemd
|
||||
|
||||
Requires: bash
|
||||
Requires: bubblewrap
|
||||
@ -68,6 +69,24 @@ Summary: %{summary}
|
||||
%description -n python3-%{pypi_name}
|
||||
A build system for OS images
|
||||
|
||||
%package lvm2
|
||||
Summary: LVM2 support
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: lvm2
|
||||
|
||||
%description lvm2
|
||||
Contains the necessary stages and device host
|
||||
services to build LVM2 based images.
|
||||
|
||||
%package luks2
|
||||
Summary: LUKS2 support
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: cryptsetup
|
||||
|
||||
%description luks2
|
||||
Contains the necessary stages and device host
|
||||
services to build LUKS2 encrypted images.
|
||||
|
||||
%package ostree
|
||||
Summary: OSTree support
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
@ -93,6 +112,7 @@ containers it uses to build OS artifacts.
|
||||
%package tools
|
||||
Summary: Extra tools and utilities
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: python3-pyyaml
|
||||
|
||||
%description tools
|
||||
Contains additional tools and utilities for development of
|
||||
@ -154,6 +174,10 @@ install -p -m 0644 -t %{buildroot}%{_mandir}/man5/ docs/*.5
|
||||
install -D -m 0644 -t %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype} %{name}.pp.bz2
|
||||
install -D -m 0644 -t %{buildroot}%{_mandir}/man8 selinux/%{name}_selinux.8
|
||||
|
||||
# Udev rules
|
||||
mkdir -p %{buildroot}%{_udevrulesdir}
|
||||
install -p -m 0755 data/10-osbuild-inhibitor.rules %{buildroot}%{_udevrulesdir}
|
||||
|
||||
%check
|
||||
exit 0
|
||||
# We have some integration tests, but those require running a VM, so that would
|
||||
@ -166,6 +190,14 @@ exit 0
|
||||
%{_mandir}/man5/%{name}-manifest.5*
|
||||
%{_datadir}/osbuild/schemas
|
||||
%{pkgdir}
|
||||
%{_udevrulesdir}/*.rules
|
||||
# the following files are in the lvm2 sub-package
|
||||
%exclude %{pkgdir}/devices/org.osbuild.lvm2*
|
||||
%exclude %{pkgdir}/stages/org.osbuild.lvm2*
|
||||
# the following files are in the luks2 sub-package
|
||||
%exclude %{pkgdir}/devices/org.osbuild.luks2*
|
||||
%exclude %{pkgdir}/stages/org.osbuild.crypttab
|
||||
%exclude %{pkgdir}/stages/org.osbuild.luks2*
|
||||
# the following files are in the ostree sub-package
|
||||
%exclude %{pkgdir}/assemblers/org.osbuild.ostree*
|
||||
%exclude %{pkgdir}/inputs/org.osbuild.ostree*
|
||||
@ -179,6 +211,15 @@ exit 0
|
||||
%{python3_sitelib}/%{pypi_name}-*.egg-info/
|
||||
%{python3_sitelib}/%{pypi_name}/
|
||||
|
||||
%files lvm2
|
||||
%{pkgdir}/devices/org.osbuild.lvm2*
|
||||
%{pkgdir}/stages/org.osbuild.lvm2*
|
||||
|
||||
%files luks2
|
||||
%{pkgdir}/devices/org.osbuild.luks2*
|
||||
%{pkgdir}/stages/org.osbuild.crypttab
|
||||
%{pkgdir}/stages/org.osbuild.luks2*
|
||||
|
||||
%files ostree
|
||||
%{pkgdir}/assemblers/org.osbuild.ostree*
|
||||
%{pkgdir}/inputs/org.osbuild.ostree*
|
||||
@ -207,6 +248,12 @@ fi
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Dec 16 2021 Simon Steinbeiss <simon.steinbeiss@redhat.com> - 44-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Dec 01 2021 Achilleas Koutsou <achilleas@koutsou.net> - 43-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Nov 17 2021 'Gianluca Zuccarelli' <'<gzuccare@redhat.com>'> - 42-1
|
||||
- New upstream release
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user