podman-4.4.1-10.el9

- build and add missing docker man pages
- Resolves: #2187187

Signed-off-by: Jindrich Novy <jnovy@redhat.com>
This commit is contained in:
Jindrich Novy 2023-04-18 11:23:40 +02:00
parent 343d25006b
commit ea811c6799

View File

@ -18,7 +18,7 @@ GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback $
Epoch: 2
Name: podman
Version: 4.4.1
Release: 9%{?dist}
Release: 10%{?dist}
Summary: Manage Pods, Containers and Container Images
License: ASL 2.0 and GPLv3+
URL: https://%{name}.io/
@ -226,6 +226,7 @@ export BUILDTAGS="remote $BUILDTAGS"
%gobuild -o bin/quadlet %{import_path}/cmd/quadlet
%{__make} docs
%{__make} docker-docs
# build dnsname plugin
unset LDFLAGS
@ -258,7 +259,11 @@ PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{build
install.man \
install.systemd \
install.completions \
install.docker
install.docker \
install.docker-docs
# remove unwanted man pages
rm -f %{buildroot}%{_mandir}/man5/docker*.5
# install test scripts, but not the internal helpers.t meta-test
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
@ -353,8 +358,9 @@ fi
%files docker
%{_bindir}/docker
%{_usr}/lib/tmpfiles.d/%{name}-docker.conf
%{_datadir}/user-tmpfiles.d/podman-docker.conf
%{_mandir}/man1/docker*.1*
%{_tmpfilesdir}/%{name}-docker.conf
%{_user_tmpfilesdir}/%{name}-docker.conf
%files remote
%license LICENSE
@ -384,6 +390,10 @@ fi
%{_libexecdir}/%{name}/gvproxy
%changelog
* Tue Apr 18 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.1-10
- build and add missing docker man pages
- Resolves: #2187187
* Fri Apr 14 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.1-9
- update to the latest content of https://github.com/containers/podman/tree/v4.4.1-rhel
(https://github.com/containers/podman/commit/fd0ea3b)