podman-3:4.0.0-0.3.rc3
- bump to v4.0.0-rc3 Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
This commit is contained in:
parent
07b92278ea
commit
7f1b0f5ff2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1794,3 +1794,4 @@
|
|||||||
/v3.4.4.tar.gz
|
/v3.4.4.tar.gz
|
||||||
/v4.0.0-rc1.tar.gz
|
/v4.0.0-rc1.tar.gz
|
||||||
/v4.0.0-rc2.tar.gz
|
/v4.0.0-rc2.tar.gz
|
||||||
|
/v4.0.0-rc3.tar.gz
|
||||||
|
22
podman.spec
22
podman.spec
@ -45,7 +45,7 @@
|
|||||||
%global commit_gvproxy 4ee84d66bd86668f011733d8873989b5862bcd07
|
%global commit_gvproxy 4ee84d66bd86668f011733d8873989b5862bcd07
|
||||||
%global shortcommit_gvproxy %(c=%{commit_gvproxy}; echo ${c:0:7})
|
%global shortcommit_gvproxy %(c=%{commit_gvproxy}; echo ${c:0:7})
|
||||||
|
|
||||||
%global built_tag v4.0.0-rc2
|
%global built_tag v4.0.0-rc3
|
||||||
%global built_tag_strip %(b=%{built_tag}; echo ${b:1})
|
%global built_tag_strip %(b=%{built_tag}; echo ${b:1})
|
||||||
|
|
||||||
Name: podman
|
Name: podman
|
||||||
@ -59,7 +59,7 @@ Version: 4.0.0
|
|||||||
# N.foo if released, 0.N.foo if unreleased
|
# N.foo if released, 0.N.foo if unreleased
|
||||||
# Rawhide almost always ships unreleased builds,
|
# Rawhide almost always ships unreleased builds,
|
||||||
# so release tag should be of the form 0.N.foo
|
# so release tag should be of the form 0.N.foo
|
||||||
Release: 0.2.rc2%{?dist}
|
Release: 0.3.rc3%{?dist}
|
||||||
Summary: Manage Pods, Containers and Container Images
|
Summary: Manage Pods, Containers and Container Images
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://%{name}.io/
|
URL: https://%{name}.io/
|
||||||
@ -93,7 +93,7 @@ BuildRequires: ostree-devel
|
|||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
BuildRequires: systemd-devel
|
BuildRequires: systemd-devel
|
||||||
Requires: conmon >= 2:2.0.30-2
|
Requires: conmon >= 2:2.0.30-2
|
||||||
Requires: containers-common >= 4:1-30
|
Requires: containers-common >= 4:1-46
|
||||||
Requires: containernetworking-plugins >= 1.0.0-15.1
|
Requires: containernetworking-plugins >= 1.0.0-15.1
|
||||||
Requires: iptables
|
Requires: iptables
|
||||||
Requires: nftables
|
Requires: nftables
|
||||||
@ -487,13 +487,13 @@ popd
|
|||||||
%install
|
%install
|
||||||
install -dp %{buildroot}%{_unitdir}
|
install -dp %{buildroot}%{_unitdir}
|
||||||
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{buildroot}%{_sysconfdir} \
|
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{buildroot}%{_sysconfdir} \
|
||||||
install.bin-nobuild \
|
install.bin \
|
||||||
install.man-nobuild \
|
install.man \
|
||||||
install.systemd \
|
install.systemd \
|
||||||
install.completions \
|
install.completions \
|
||||||
install.docker \
|
install.docker \
|
||||||
install.docker-docs-nobuild \
|
install.docker-docs \
|
||||||
install.remote-nobuild \
|
install.remote \
|
||||||
|
|
||||||
mv pkg/hooks/README.md pkg/hooks/README-hooks.md
|
mv pkg/hooks/README.md pkg/hooks/README-hooks.md
|
||||||
|
|
||||||
@ -553,6 +553,8 @@ done
|
|||||||
sort -u -o devel.file-list devel.file-list
|
sort -u -o devel.file-list devel.file-list
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
rm -f %{buildroot}%{_mandir}/man5/docker*.5
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
|
%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
|
||||||
%if ! 0%{?with_bundled}
|
%if ! 0%{?with_bundled}
|
||||||
@ -597,8 +599,7 @@ cp -pav test/system %{buildroot}/%{_datadir}/%{name}/test/
|
|||||||
%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
||||||
%{_unitdir}/%{name}*
|
%{_unitdir}/%{name}*
|
||||||
%{_userunitdir}/%{name}*
|
%{_userunitdir}/%{name}*
|
||||||
%{_usr}/lib/tmpfiles.d/%{name}.conf
|
%{_tmpfilesdir}/%{name}.conf
|
||||||
%{_mandir}/man5/docker*.5.gz
|
|
||||||
|
|
||||||
%files docker
|
%files docker
|
||||||
%{_bindir}/docker
|
%{_bindir}/docker
|
||||||
@ -653,6 +654,9 @@ exit 0
|
|||||||
|
|
||||||
# rhcontainerbot account currently managed by lsm5
|
# rhcontainerbot account currently managed by lsm5
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 31 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 3:4.0.0-0.3.rc3
|
||||||
|
- bump to v4.0.0-rc3
|
||||||
|
|
||||||
* Fri Jan 21 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 3:4.0.0-0.2.rc2
|
* Fri Jan 21 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 3:4.0.0-0.2.rc2
|
||||||
- autobuilt v4.0.0-rc2
|
- autobuilt v4.0.0-rc2
|
||||||
|
|
||||||
|
4
sources
4
sources
@ -1,3 +1 @@
|
|||||||
SHA512 (dnsname-18822f9.tar.gz) = de371722fbf18cd23b31485ee7ba36bb41d0d9a932d15e50872989c3ca1ff7246da63143c3725d81089fadda3821a54c18b22150d9d16005b07df6824f5f71f8
|
SHA512 (v4.0.0-rc3.tar.gz) = 4446509526e77aa1a317262c6d09c468a7753580077bb5cf28e065bfa7ba8b86e2f8ea620a92de94616bf48f2d0121a051363df327118d0fbc50a99f4ca6c814
|
||||||
SHA512 (gvisor-tap-vsock-4ee84d6.tar.gz) = 6b0e97f25f0c9ec0f018edcf9c1801daaeacc4d97d05cc2b453467e071c50693bb44d483bac34e64e0c9de71e78e47810a7c46d028553adee9fd6f593df8eb1a
|
|
||||||
SHA512 (v4.0.0-rc2.tar.gz) = 2960cf23f8b2335ca2cc68f3d86b370f25ecd1f98c9dc895645beebdc41793f7bb9ea7bce2e8a2485b9025f3645035d4a75becee696315140acc9edeff11feed
|
|
||||||
|
Loading…
Reference in New Issue
Block a user