Accepting request 639414 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/639414 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=25
This commit is contained in:
parent
eeae9e0491
commit
81acd94024
8
_service
8
_service
@ -4,8 +4,8 @@
|
||||
<param name="url">https://github.com/containers/libpod.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">podman</param>
|
||||
<param name="versionformat">0.8.5</param>
|
||||
<param name="revision">v0.8.5</param>
|
||||
<param name="versionformat">0.9.3.1</param>
|
||||
<param name="revision">v0.9.3.1</param>
|
||||
</service>
|
||||
|
||||
<service name="set_version" mode="disabled">
|
||||
@ -13,11 +13,11 @@
|
||||
</service>
|
||||
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="url">https://github.com/kubernetes-incubator/cri-o.git</param>
|
||||
<param name="url">https://github.com/kubernetes-sigs/cri-o.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">conmon</param>
|
||||
<param name="versionformat">git.%H</param>
|
||||
<param name="revision">662dbb31b5d4f5ed54511a47cde7190c61c28677</param>
|
||||
<param name="revision">4cd5a7c60349be0678d9f1b0657683324c1a2726</param>
|
||||
</service>
|
||||
|
||||
<service name="recompress" mode="disabled">
|
||||
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64694fcb54f084bb8e5562ba1bf9c109e4b42d602e6be604111f0c6aef610fd3
|
||||
size 3826976
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3694c2555b87fc3b221827b007b025adb739cfb5217397e4b5cea403e74a5961
|
||||
size 3119196
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:69367eb55c52af37985ab97a6365007b2a8d39ac3b0f36518dfeec5bb664e456
|
||||
size 3237400
|
3
podman-0.9.3.1.tar.xz
Normal file
3
podman-0.9.3.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03baf8b21f688e6d30dc4810abe53ba555f7e458b686b196942d3b742ccb5427
|
||||
size 3254512
|
@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 1 05:51:48 UTC 2018 - Valentin Rothberg <vrothberg@suse.com>
|
||||
|
||||
- Update conmon to 4cd5a7c60349be0678d9f1b0657683324c1a2726 and fetch
|
||||
it from its new home https://github.com/kubernetes-sigs/cri-o.
|
||||
|
||||
- Changelog for v0.9.3.1 (2018-09-25)
|
||||
* Disable problematic SELinux code causing runc issues
|
||||
|
||||
- Changelog for v0.9.3 (2018-09-21)
|
||||
* Add --mount option for `create` & `run` command
|
||||
* Don't mount /dev/shm if the user told you --ipc=none
|
||||
* rootless: error out if there are not enough UIDs/GIDs available
|
||||
* Add new field to libpod to indicate whether or not to use labelling
|
||||
* Bind Mounts should be mounted read-only when in read-only mode
|
||||
* report when rootless
|
||||
* Don't crash if an image has no names
|
||||
|
||||
- Changelog for v0.9.2 (2018-09-14)
|
||||
* Don't mount /dev/* if user mounted /dev
|
||||
* rootless: do not raise an error if the entrypoint is specified
|
||||
* Add a way to disable port reservation
|
||||
* Do not set rlimits if we are rootless
|
||||
* Add --interval flag to podman wait
|
||||
* Add `podman rm --volumes` flag
|
||||
* Explicitly set default CNI network name in libpod.conf
|
||||
|
||||
- Changelog for v0.9.1.1 (2018-09-10)
|
||||
* Replace existing iptables handler with firewall code
|
||||
* Vendor CNI plugins firewall code
|
||||
* Fix displaying size on size calculation error
|
||||
|
||||
- Changelog for v0.9.1 (2018-09-07)
|
||||
* Fix pod sharing for utsmode
|
||||
* Respect user-added mounts over default spec mounts
|
||||
* use layer cache when building images
|
||||
* Start pod infra container when pod is created
|
||||
* Fix up libpod.conf man pages and referencese to it.
|
||||
* We should fail Podman with ExitCode 125 by default
|
||||
* Add CRI logs parsing to podman logs
|
||||
* rmi remove all not error when no images are present
|
||||
* rootless, create: support --pod
|
||||
* rootless, run: support --pod
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 3 06:04:26 UTC 2018 - Valentin Rothberg <vrothberg@suse.com>
|
||||
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
|
||||
%define project github.com/containers/libpod
|
||||
%define conmon_project github.com/kubernetes-incubator/cri-o
|
||||
%define conmon_commit 662dbb31b5d4f5ed54511a47cde7190c61c28677
|
||||
%define conmon_project github.com/kubernetes-sigs/cri-o
|
||||
%define conmon_commit 4cd5a7c60349be0678d9f1b0657683324c1a2726
|
||||
# Build with libostree-devel in Tumbleweed, Leap 15 and SLES 15
|
||||
%if 0%{?suse_version} >= 1500
|
||||
%define with_libostree 1
|
||||
%endif
|
||||
Name: podman
|
||||
Version: 0.8.5
|
||||
Version: 0.9.3.1
|
||||
Release: 0
|
||||
Summary: Debugging tool for pods and images
|
||||
License: Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user