podman-5.2.3-6.el9

- properly package podman-testing
- Resolves: RHEL-60927

Signed-off-by: Jindrich Novy <jnovy@redhat.com>
This commit is contained in:
Jindrich Novy 2024-10-08 09:59:59 +02:00
parent 549a44491e
commit a01288300e

View File

@ -14,7 +14,7 @@ GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback $
Epoch: 4
Name: podman
Version: 5.2.3
Release: 5%{?dist}
Release: 6%{?dist}
Summary: Manage Pods, Containers and Container Images
License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0
URL: https://%{name}.io/
@ -212,6 +212,9 @@ LDFLAGS="-X %{import_path}/libpod/define.buildInfo=$(date +%s)"
export BUILDTAGS="seccomp btrfs_noversion exclude_graphdriver_devicemapper exclude_graphdriver_btrfs $(hack/libdm_tag.sh) $(hack/selinux_tag.sh) $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)"
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
# build %%{name}-testing
%gobuild -o bin/podman-testing %{import_path}/cmd/podman-testing
# build %%{name}-remote
export BUILDTAGS="remote $BUILDTAGS"
%gobuild -o bin/%{name}-remote %{import_path}/cmd/%{name}
@ -243,7 +246,8 @@ PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{build
install.systemd \
install.completions \
install.docker \
install.docker-docs
install.docker-docs \
install.testing
sed -i 's;%{buildroot};;g' %{buildroot}%{_bindir}/docker
@ -362,9 +366,14 @@ fi
%files tests
%license LICENSE
%{_bindir}/%{name}-testing
%{_datadir}/%{name}/test
%changelog
* Tue Oct 08 2024 Jindrich Novy <jnovy@redhat.com> - 4:5.2.3-6
- properly package podman-testing
- Resolves: RHEL-60927
* Mon Oct 07 2024 Jindrich Novy <jnovy@redhat.com> - 4:5.2.3-5
- podman gating: test CNI, thanks to Ed Santiago
- Resolves: RHEL-60277