forked from pool/podman
Accepting request 726622 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/726622 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=47
This commit is contained in:
parent
bd79c63122
commit
bb438b3b6c
4
_service
4
_service
@ -4,8 +4,8 @@
|
|||||||
<param name="url">https://github.com/containers/libpod.git</param>
|
<param name="url">https://github.com/containers/libpod.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="filename">podman</param>
|
<param name="filename">podman</param>
|
||||||
<param name="versionformat">1.5.0</param>
|
<param name="versionformat">1.5.1</param>
|
||||||
<param name="revision">v1.5.0</param>
|
<param name="revision">v1.5.1</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service name="set_version" mode="disabled">
|
<service name="set_version" mode="disabled">
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2c0d388dd780fdcbf99cf75f2f75abc5f6664788989fd268c45f337e980fda34
|
|
||||||
size 4286344
|
|
3
podman-1.5.1.tar.xz
Normal file
3
podman-1.5.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:538a2907be47eda11e54bda4a830e1bd597af946bd44f4f2087035948dd0d659
|
||||||
|
size 4294764
|
@ -2,3 +2,4 @@ addFilter (".* W: explicit-lib-dependency libcontainers-common")
|
|||||||
addFilter (".* W: explicit-lib-dependency libcontainers-image")
|
addFilter (".* W: explicit-lib-dependency libcontainers-image")
|
||||||
addFilter (".* W: explicit-lib-dependency libcontainers-storage")
|
addFilter (".* W: explicit-lib-dependency libcontainers-storage")
|
||||||
addFilter (".* W: missing-call-to-setgroups-before-setuid")
|
addFilter (".* W: missing-call-to-setgroups-before-setuid")
|
||||||
|
addFilter (".* W: non-conffile-in-etc .*zsh_completion.d.*")
|
||||||
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 27 08:04:20 UTC 2019 - Marco Vedovati <mvedovati@suse.com>
|
||||||
|
|
||||||
|
- Update podman to v1.5.1
|
||||||
|
* Features
|
||||||
|
- The hostname of pods is now set to the pod's name
|
||||||
|
* Bugfixes
|
||||||
|
- Fixed a bug where podman run and podman create did not honor the --authfile
|
||||||
|
option (#3730)
|
||||||
|
- Fixed a bug where containers restored with podman container restore
|
||||||
|
--import would incorrectly duplicate the Conmon PID file of the original container
|
||||||
|
- Fixed a bug where podman build ignored the default OCI runtime configured
|
||||||
|
in libpod.conf
|
||||||
|
- Fixed a bug where podman run --rm (or force-removing any running container
|
||||||
|
with podman rm --force) were not retrieving the correct exit code (#3795)
|
||||||
|
- Fixed a bug where Podman would exit with an error if any configured hooks
|
||||||
|
directory was not present
|
||||||
|
- Fixed a bug where podman inspect and podman commit would not use the
|
||||||
|
correct CMD for containers run with podman play kube
|
||||||
|
- Fixed a bug created pods when using rootless Podman and CGroups V2 (#3801)
|
||||||
|
- Fixed a bug where the podman events command with the --since or --until
|
||||||
|
options could take a very long time to complete
|
||||||
|
* Misc
|
||||||
|
- Rootless Podman will now inherit OCI runtime configuration from the root
|
||||||
|
configuration (#3781)
|
||||||
|
- Podman now properly sets a user agent while contacting registries (#3788)
|
||||||
|
|
||||||
|
- Add zsh completion for podman commands
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 14 08:26:22 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
Wed Aug 14 08:26:22 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
%define with_libostree 1
|
%define with_libostree 1
|
||||||
%endif
|
%endif
|
||||||
Name: podman
|
Name: podman
|
||||||
Version: 1.5.0
|
Version: 1.5.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Daemon-less container engine for managing containers, pods and images
|
Summary: Daemon-less container engine for managing containers, pods and images
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -146,6 +146,7 @@ install -D -m 0644 cni/87-podman-bridge.conflist %{buildroot}/%{_sysconfdir}/cni
|
|||||||
install -D -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/containers/libpod.conf
|
install -D -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/containers/libpod.conf
|
||||||
install -D -m 0644 %{SOURCE2} %{buildroot}/%{_datadir}/containers/libpod.conf
|
install -D -m 0644 %{SOURCE2} %{buildroot}/%{_datadir}/containers/libpod.conf
|
||||||
install -D -m 0644 completions/bash/podman %{buildroot}/%{_datadir}/bash-completion/completions/podman
|
install -D -m 0644 completions/bash/podman %{buildroot}/%{_datadir}/bash-completion/completions/podman
|
||||||
|
install -D -m 0644 completions/zsh/_podman %{buildroot}%{_sysconfdir}/zsh_completion.d/_podman
|
||||||
|
|
||||||
# podman varlink
|
# podman varlink
|
||||||
install -D -m 0644 contrib/varlink/podman.conf %{buildroot}/%{_tmpfilesdir}/podman.conf
|
install -D -m 0644 contrib/varlink/podman.conf %{buildroot}/%{_tmpfilesdir}/podman.conf
|
||||||
@ -167,6 +168,7 @@ install -D -m 0644 contrib/varlink/io.podman.socket %{buildroot}%{_unitdir}/io.p
|
|||||||
%{_datadir}/containers/libpod.conf
|
%{_datadir}/containers/libpod.conf
|
||||||
# Completion
|
# Completion
|
||||||
%{_datadir}/bash-completion/completions/podman
|
%{_datadir}/bash-completion/completions/podman
|
||||||
|
%{_sysconfdir}/zsh_completion.d/_podman
|
||||||
# Varlink
|
# Varlink
|
||||||
%{_tmpfilesdir}/podman.conf
|
%{_tmpfilesdir}/podman.conf
|
||||||
%{_unitdir}/io.podman.service
|
%{_unitdir}/io.podman.service
|
||||||
|
Loading…
Reference in New Issue
Block a user