[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2021-01-17 Thread Zac Medico
commit: 0a6f8cad8951ed1797669a704ff196643a161dad
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jan 18 00:35:25 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jan 18 01:11:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6f8cad

app-emulation/libpod: Remove old version 2.1.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 -
 app-emulation/libpod/libpod-2.1.0.ebuild | 154 ---
 2 files changed, 155 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 62494a75e86..41fac527191 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1 @@
-DIST podman-2.1.0.tar.gz 9444707 BLAKE2B 
62dacd316a8d6ae8aab0523338d818c69cf1228120e828a89301c9fdbb98082b85328c03c61f9f2a36c7a50105ce5fd025ad2b0e9ba2705c86b0d7e263fc92a6
 SHA512 
eb9b0cb184138af022e6d8e145fc6c4188c75c0695e0c6e62d54112a6b143424dd0caf9686f83637d08ff1fdbc24afca564c89f8cb4ab68b8f8d07345856398e
 DIST podman-2.2.1.tar.gz 9653842 BLAKE2B 
4e86903fc8fb51b9b1aa2b46704c1828b4ea11b738eccf198260c678b175e0a8699120e0280a2803f7898c9b28040a75d489ccd09ebd9c1f45d10a86e2a26c8f
 SHA512 
4c6eda9320daf18b5f0e892c0f3019a5658d983936c25a195bcb1fbc28c18a9a65e87043faddeb47e9f62c9b445efc2906a2b7ccedca877941fadb21b1b68367

diff --git a/app-emulation/libpod/libpod-2.1.0.ebuild 
b/app-emulation/libpod/libpod-2.1.0.ebuild
deleted file mode 100644
index 8335388f9f6..000
--- a/app-emulation/libpod/libpod-2.1.0.ebuild
+++ /dev/null
@@ -1,154 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="d8868746fd3f45b9bfd79e37bf2aa0c7103245fd"
-
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/podman/;
-MY_PN=podman
-MY_P=${MY_PN}-${PV}
-SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm64"
-IUSE="apparmor btrfs +fuse +rootless selinux"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   >=net-misc/cni-plugins-0.8.6
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}
-   fuse? ( sys-fs/fuse-overlayfs )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   local makefile_sed_args=(
-   -e '/^GIT_.*/d'
-   -e 's/$(GO) build/$(GO) build -v -work -x/'
-   -e 's/^\(install:.*\) install\.python$/\1/'
-   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
-   )
-
-   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
-
-   sed "${makefile_sed_args[@]}" -i Makefile || die
-
-   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
-   -i hack/get_release_info.sh || die
-}
-
-src_compile() {
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   # Avoid this error when generating pkg/varlink/iopodman.go:
-   # cannot find package "github.com/varlink/go/varlink/idl"
-   mkdir -p _output || die
-   ln -snf ../vendor _output/src || die
-   GO111MODULE=off GOPATH=${PWD}/_output go generate ./pkg/varlink/... || 
die
-   rm _output/src || die
-
-   export -n GOCACHE GOPATH XDG_CACHE_HOME
-   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-12-29 Thread Zac Medico
commit: 5419650583ebe138c55bfadeb1bf5518e62cdcc8
Author: pastalian  gmail  com>
AuthorDate: Tue Dec 29 17:18:16 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 18:03:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54196505

qapp-emulation/libpod: Add zsh and fish completion

Closes: https://github.com/gentoo/gentoo/pull/18869
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Takuya Wakazono  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-2.2.1.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/app-emulation/libpod/libpod-2.2.1.ebuild 
b/app-emulation/libpod/libpod-2.2.1.ebuild
index 8335388f9f6..fc16a6b258e 100644
--- a/app-emulation/libpod/libpod-2.2.1.ebuild
+++ b/app-emulation/libpod/libpod-2.2.1.ebuild
@@ -121,6 +121,12 @@ src_install() {
 
dobashcomp completions/bash/*
 
+   insinto /usr/share/zsh/site-functions
+   doins completions/zsh/*
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins completions/fish/*
+
keepdir /var/lib/containers
 }
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-12-28 Thread Zac Medico
commit: cbb066060d8024488fd94466f690adfe5f2d270b
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Dec 28 23:57:36 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Dec 29 00:02:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb06606

app-emulation/libpod: Bump to version 2.2.1

Closes: https://bugs.gentoo.org/762283
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.2.1.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 6afb95c4974..62494a75e86 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST podman-2.1.0.tar.gz 9444707 BLAKE2B 
62dacd316a8d6ae8aab0523338d818c69cf1228120e828a89301c9fdbb98082b85328c03c61f9f2a36c7a50105ce5fd025ad2b0e9ba2705c86b0d7e263fc92a6
 SHA512 
eb9b0cb184138af022e6d8e145fc6c4188c75c0695e0c6e62d54112a6b143424dd0caf9686f83637d08ff1fdbc24afca564c89f8cb4ab68b8f8d07345856398e
+DIST podman-2.2.1.tar.gz 9653842 BLAKE2B 
4e86903fc8fb51b9b1aa2b46704c1828b4ea11b738eccf198260c678b175e0a8699120e0280a2803f7898c9b28040a75d489ccd09ebd9c1f45d10a86e2a26c8f
 SHA512 
4c6eda9320daf18b5f0e892c0f3019a5658d983936c25a195bcb1fbc28c18a9a65e87043faddeb47e9f62c9b445efc2906a2b7ccedca877941fadb21b1b68367

diff --git a/app-emulation/libpod/libpod-2.2.1.ebuild 
b/app-emulation/libpod/libpod-2.2.1.ebuild
new file mode 100644
index 000..8335388f9f6
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.2.1.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="d8868746fd3f45b9bfd79e37bf2aa0c7103245fd"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   # Avoid this error when generating pkg/varlink/iopodman.go:
+   # cannot find package "github.com/varlink/go/varlink/idl"
+   mkdir -p _output || die
+   ln -snf ../vendor _output/src || die
+   GO111MODULE=off GOPATH=${PWD}/_output go generate ./pkg/varlink/... || 
die
+   rm _output/src || die
+
+   export -n GOCACHE GOPATH 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-09-23 Thread Zac Medico
commit: c9cf798651b74852c656c0d1c92fbb07ee9dd529
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Sep 23 16:11:49 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Sep 23 16:12:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9cf7986

app-emulation/libpod: Remove vulnerable versions

Bug: https://bugs.gentoo.org/744196
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   8 --
 app-emulation/libpod/libpod-1.8.2.ebuild | 141 
 app-emulation/libpod/libpod-1.9.3.ebuild | 142 
 app-emulation/libpod/libpod-2.0.0.ebuild | 150 --
 app-emulation/libpod/libpod-2.0.1.ebuild | 150 --
 app-emulation/libpod/libpod-2.0.2.ebuild | 154 ---
 app-emulation/libpod/libpod-2.0.3.ebuild | 154 ---
 app-emulation/libpod/libpod-2.0.4.ebuild | 154 ---
 app-emulation/libpod/libpod-2.0.5.ebuild | 154 ---
 9 files changed, 1207 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 2971bb6bf43..6afb95c4974 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,9 +1 @@
-DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
-DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03
-DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add39ec4ecd20b98f4879d287c481a525e01969c9b62f8b81e0be43eb864266f32f78af3f1a5ca92c4b1c4a9a16ce
 SHA512 
29f7e365dbd4ab6d20ee3e85939804f74dcfe95f65a6d030d1c10a36512c29d3934907cbb014047d659fd96ed3a2946570ef7922cd77cc729370ac099b4b58a2
-DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251ed0002e77919adfb9dbe0a3c7b14e40e204c5879273589673a573aa318a3d5b972c32236143e166cb96a7cc3c8
 SHA512 
e52d3eef3d698360a0196dca6338c319511b6685c0237bd4d24a3763eb5e46262946d7609d1f36798dec6eb63d4511efdc8b77fa22c06bd55b666505f4fe6730
-DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04131b039ba505f87240a1a2e4503a3dc14c037eeb41955ff7f949dc0978571ec63f011adb9e5a6efa1157b6bce
 SHA512 
5bcdca28021c8b36b5689e69c00232ca20404af0903ea632cea350ecf6b6eed091260f1b8fea8fe6d06caa7a475ba87ef4f3e86e83807ffdd187f9ccc41cb194
-DIST podman-2.0.3.tar.gz 9303421 BLAKE2B 
c0882c7fff60f33d1dc6752120a36ce35ce321c661ec29ae940f392b5ef9fb6176fea556a89ca9823b4981997d6e61545531d39d95b31d23602b0d3e1a78870a
 SHA512 
ee6d4f4735196fc07e03e9c1e99aa62650d9651bd5f24657398d42b3f2ebf59240a49fecfbf71a3d90636ea44c243cc4f7504c43d8f48e76ee504b3d10762240
-DIST podman-2.0.4.tar.gz 9305631 BLAKE2B 
a6a5760886d112b6cd69625137ec0aa9e368e8ff09f114123ff0b17ad2ef5b26b5eb645a5bbabc30a7cb900d7844587e0051969fefba9d5e8b5652a571857e09
 SHA512 
39313615b4c0befec3a073b7bf4a689208e39cb7bcba81f6d8982e188402c457cbe4835a128274761e55ab1272a780f9747caa07746fe62af7a568eebc96ad6a
-DIST podman-2.0.5.tar.gz 9338371 BLAKE2B 
8bf86ac438c2a7c250d77df46d315dfa9d3326097a332e32de08b4d9acfeae9ace0b1825f242cddaf6178fd34d4c7542e9c59c4ce462525371c081b60cf0e9a7
 SHA512 
efe1bdfd1fec61d470c748ac1cfff8ec4a64a47751becac2c35d85e61f1f1d511781f4fafb3463558bd5df347f3ee021c4f9ed00823b6cb5dd8963a2c2bc570b
 DIST podman-2.1.0.tar.gz 9444707 BLAKE2B 
62dacd316a8d6ae8aab0523338d818c69cf1228120e828a89301c9fdbb98082b85328c03c61f9f2a36c7a50105ce5fd025ad2b0e9ba2705c86b0d7e263fc92a6
 SHA512 
eb9b0cb184138af022e6d8e145fc6c4188c75c0695e0c6e62d54112a6b143424dd0caf9686f83637d08ff1fdbc24afca564c89f8cb4ab68b8f8d07345856398e

diff --git a/app-emulation/libpod/libpod-1.8.2.ebuild 
b/app-emulation/libpod/libpod-1.8.2.ebuild
deleted file mode 100644
index f409cd2a3e0..000
--- a/app-emulation/libpod/libpod-1.8.2.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="028e3317eb1494b9b2acba4a0a295df80fae66cc"
-
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs +rootless selinux"
-RESTRICT="test"

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-09-22 Thread Zac Medico
commit: 7ac56a337ac3e6c17ed58cfb9961de37e3da29ab
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Sep 23 05:38:54 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Sep 23 05:40:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ac56a33

app-emulation/libpod: Bump to version 2.1.0

Bug: https://bugs.gentoo.org/744196
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.1.0.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 93c86fe3f2a..2971bb6bf43 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -6,3 +6,4 @@ DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04
 DIST podman-2.0.3.tar.gz 9303421 BLAKE2B 
c0882c7fff60f33d1dc6752120a36ce35ce321c661ec29ae940f392b5ef9fb6176fea556a89ca9823b4981997d6e61545531d39d95b31d23602b0d3e1a78870a
 SHA512 
ee6d4f4735196fc07e03e9c1e99aa62650d9651bd5f24657398d42b3f2ebf59240a49fecfbf71a3d90636ea44c243cc4f7504c43d8f48e76ee504b3d10762240
 DIST podman-2.0.4.tar.gz 9305631 BLAKE2B 
a6a5760886d112b6cd69625137ec0aa9e368e8ff09f114123ff0b17ad2ef5b26b5eb645a5bbabc30a7cb900d7844587e0051969fefba9d5e8b5652a571857e09
 SHA512 
39313615b4c0befec3a073b7bf4a689208e39cb7bcba81f6d8982e188402c457cbe4835a128274761e55ab1272a780f9747caa07746fe62af7a568eebc96ad6a
 DIST podman-2.0.5.tar.gz 9338371 BLAKE2B 
8bf86ac438c2a7c250d77df46d315dfa9d3326097a332e32de08b4d9acfeae9ace0b1825f242cddaf6178fd34d4c7542e9c59c4ce462525371c081b60cf0e9a7
 SHA512 
efe1bdfd1fec61d470c748ac1cfff8ec4a64a47751becac2c35d85e61f1f1d511781f4fafb3463558bd5df347f3ee021c4f9ed00823b6cb5dd8963a2c2bc570b
+DIST podman-2.1.0.tar.gz 9444707 BLAKE2B 
62dacd316a8d6ae8aab0523338d818c69cf1228120e828a89301c9fdbb98082b85328c03c61f9f2a36c7a50105ce5fd025ad2b0e9ba2705c86b0d7e263fc92a6
 SHA512 
eb9b0cb184138af022e6d8e145fc6c4188c75c0695e0c6e62d54112a6b143424dd0caf9686f83637d08ff1fdbc24afca564c89f8cb4ab68b8f8d07345856398e

diff --git a/app-emulation/libpod/libpod-2.1.0.ebuild 
b/app-emulation/libpod/libpod-2.1.0.ebuild
new file mode 100644
index 000..8335388f9f6
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.1.0.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="d8868746fd3f45b9bfd79e37bf2aa0c7103245fd"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-08-29 Thread Zac Medico
commit: 88ea6439c00b87a2639a94f7245c3db6ee0bd0ff
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Aug 30 00:11:39 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Aug 30 00:12:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88ea6439

app-emulation/libpod: Bump to version 2.0.5

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.5.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 5dfdd29f220..93c86fe3f2a 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -5,3 +5,4 @@ DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251e
 DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04131b039ba505f87240a1a2e4503a3dc14c037eeb41955ff7f949dc0978571ec63f011adb9e5a6efa1157b6bce
 SHA512 
5bcdca28021c8b36b5689e69c00232ca20404af0903ea632cea350ecf6b6eed091260f1b8fea8fe6d06caa7a475ba87ef4f3e86e83807ffdd187f9ccc41cb194
 DIST podman-2.0.3.tar.gz 9303421 BLAKE2B 
c0882c7fff60f33d1dc6752120a36ce35ce321c661ec29ae940f392b5ef9fb6176fea556a89ca9823b4981997d6e61545531d39d95b31d23602b0d3e1a78870a
 SHA512 
ee6d4f4735196fc07e03e9c1e99aa62650d9651bd5f24657398d42b3f2ebf59240a49fecfbf71a3d90636ea44c243cc4f7504c43d8f48e76ee504b3d10762240
 DIST podman-2.0.4.tar.gz 9305631 BLAKE2B 
a6a5760886d112b6cd69625137ec0aa9e368e8ff09f114123ff0b17ad2ef5b26b5eb645a5bbabc30a7cb900d7844587e0051969fefba9d5e8b5652a571857e09
 SHA512 
39313615b4c0befec3a073b7bf4a689208e39cb7bcba81f6d8982e188402c457cbe4835a128274761e55ab1272a780f9747caa07746fe62af7a568eebc96ad6a
+DIST podman-2.0.5.tar.gz 9338371 BLAKE2B 
8bf86ac438c2a7c250d77df46d315dfa9d3326097a332e32de08b4d9acfeae9ace0b1825f242cddaf6178fd34d4c7542e9c59c4ce462525371c081b60cf0e9a7
 SHA512 
efe1bdfd1fec61d470c748ac1cfff8ec4a64a47751becac2c35d85e61f1f1d511781f4fafb3463558bd5df347f3ee021c4f9ed00823b6cb5dd8963a2c2bc570b

diff --git a/app-emulation/libpod/libpod-2.0.5.ebuild 
b/app-emulation/libpod/libpod-2.0.5.ebuild
new file mode 100644
index 000..ae5e98e013c
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.5.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="776abc52106ec7652ced6dbc0869020123ed393d"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+ 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-08-29 Thread Sam James
commit: c564d613f980f2ac35a2e0f625dbd2e4190ea623
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 29 22:44:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 29 22:44:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c564d613

app-emulation/libpod: arm64 keyworded (bug #739132)

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 app-emulation/libpod/libpod-2.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-2.0.4.ebuild 
b/app-emulation/libpod/libpod-2.0.4.ebuild
index a5572a93cf7..0454872e121 100644
--- a/app-emulation/libpod/libpod-2.0.4.ebuild
+++ b/app-emulation/libpod/libpod-2.0.4.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> ${MY_P}.t
 LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="apparmor btrfs +fuse +rootless selinux"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-07-31 Thread Zac Medico
commit: 74e279dcdf44dbd9879539b21be8d29a88d84fb5
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jul 31 21:01:06 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jul 31 21:06:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e279dc

app-emulation/libpod: Bump to version 2.0.4

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.4.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index c9852210213..5dfdd29f220 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -4,3 +4,4 @@ DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add3
 DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251ed0002e77919adfb9dbe0a3c7b14e40e204c5879273589673a573aa318a3d5b972c32236143e166cb96a7cc3c8
 SHA512 
e52d3eef3d698360a0196dca6338c319511b6685c0237bd4d24a3763eb5e46262946d7609d1f36798dec6eb63d4511efdc8b77fa22c06bd55b666505f4fe6730
 DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04131b039ba505f87240a1a2e4503a3dc14c037eeb41955ff7f949dc0978571ec63f011adb9e5a6efa1157b6bce
 SHA512 
5bcdca28021c8b36b5689e69c00232ca20404af0903ea632cea350ecf6b6eed091260f1b8fea8fe6d06caa7a475ba87ef4f3e86e83807ffdd187f9ccc41cb194
 DIST podman-2.0.3.tar.gz 9303421 BLAKE2B 
c0882c7fff60f33d1dc6752120a36ce35ce321c661ec29ae940f392b5ef9fb6176fea556a89ca9823b4981997d6e61545531d39d95b31d23602b0d3e1a78870a
 SHA512 
ee6d4f4735196fc07e03e9c1e99aa62650d9651bd5f24657398d42b3f2ebf59240a49fecfbf71a3d90636ea44c243cc4f7504c43d8f48e76ee504b3d10762240
+DIST podman-2.0.4.tar.gz 9305631 BLAKE2B 
a6a5760886d112b6cd69625137ec0aa9e368e8ff09f114123ff0b17ad2ef5b26b5eb645a5bbabc30a7cb900d7844587e0051969fefba9d5e8b5652a571857e09
 SHA512 
39313615b4c0befec3a073b7bf4a689208e39cb7bcba81f6d8982e188402c457cbe4835a128274761e55ab1272a780f9747caa07746fe62af7a568eebc96ad6a

diff --git a/app-emulation/libpod/libpod-2.0.4.ebuild 
b/app-emulation/libpod/libpod-2.0.4.ebuild
new file mode 100644
index 000..a5572a93cf7
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.4.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="cab27868766a3b01ac14ff46180af8644c41d1cd"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-07-23 Thread Zac Medico
commit: 1df79847a80633a19a69d8ac4f0b708898a98175
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul 23 18:22:00 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 23 18:22:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df79847

app-emulation/libpod: Bump to version 2.0.3

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.3.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 5d7596cfe28..c9852210213 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -3,3 +3,4 @@ DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18e
 DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add39ec4ecd20b98f4879d287c481a525e01969c9b62f8b81e0be43eb864266f32f78af3f1a5ca92c4b1c4a9a16ce
 SHA512 
29f7e365dbd4ab6d20ee3e85939804f74dcfe95f65a6d030d1c10a36512c29d3934907cbb014047d659fd96ed3a2946570ef7922cd77cc729370ac099b4b58a2
 DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251ed0002e77919adfb9dbe0a3c7b14e40e204c5879273589673a573aa318a3d5b972c32236143e166cb96a7cc3c8
 SHA512 
e52d3eef3d698360a0196dca6338c319511b6685c0237bd4d24a3763eb5e46262946d7609d1f36798dec6eb63d4511efdc8b77fa22c06bd55b666505f4fe6730
 DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04131b039ba505f87240a1a2e4503a3dc14c037eeb41955ff7f949dc0978571ec63f011adb9e5a6efa1157b6bce
 SHA512 
5bcdca28021c8b36b5689e69c00232ca20404af0903ea632cea350ecf6b6eed091260f1b8fea8fe6d06caa7a475ba87ef4f3e86e83807ffdd187f9ccc41cb194
+DIST podman-2.0.3.tar.gz 9303421 BLAKE2B 
c0882c7fff60f33d1dc6752120a36ce35ce321c661ec29ae940f392b5ef9fb6176fea556a89ca9823b4981997d6e61545531d39d95b31d23602b0d3e1a78870a
 SHA512 
ee6d4f4735196fc07e03e9c1e99aa62650d9651bd5f24657398d42b3f2ebf59240a49fecfbf71a3d90636ea44c243cc4f7504c43d8f48e76ee504b3d10762240

diff --git a/app-emulation/libpod/libpod-2.0.3.ebuild 
b/app-emulation/libpod/libpod-2.0.3.ebuild
new file mode 100644
index 000..055a6ae8459
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.3.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="2349723f89bdb3033d064f6278ca04da8b8ae42d"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-07-15 Thread Zac Medico
commit: ed07b053b30e6f72deabddcc66a59255410153aa
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul 16 00:44:18 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 16 00:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed07b053

app-emulation/libpod: Bump to version 2.0.2

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.2.ebuild | 154 +++
 2 files changed, 155 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 858844b0491..5d7596cfe28 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -2,3 +2,4 @@ DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecd
 DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03
 DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add39ec4ecd20b98f4879d287c481a525e01969c9b62f8b81e0be43eb864266f32f78af3f1a5ca92c4b1c4a9a16ce
 SHA512 
29f7e365dbd4ab6d20ee3e85939804f74dcfe95f65a6d030d1c10a36512c29d3934907cbb014047d659fd96ed3a2946570ef7922cd77cc729370ac099b4b58a2
 DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251ed0002e77919adfb9dbe0a3c7b14e40e204c5879273589673a573aa318a3d5b972c32236143e166cb96a7cc3c8
 SHA512 
e52d3eef3d698360a0196dca6338c319511b6685c0237bd4d24a3763eb5e46262946d7609d1f36798dec6eb63d4511efdc8b77fa22c06bd55b666505f4fe6730
+DIST podman-2.0.2.tar.gz 9192157 BLAKE2B 
b8635ea5b166082be03a041f74d6c7a5c8bed04131b039ba505f87240a1a2e4503a3dc14c037eeb41955ff7f949dc0978571ec63f011adb9e5a6efa1157b6bce
 SHA512 
5bcdca28021c8b36b5689e69c00232ca20404af0903ea632cea350ecf6b6eed091260f1b8fea8fe6d06caa7a475ba87ef4f3e86e83807ffdd187f9ccc41cb194

diff --git a/app-emulation/libpod/libpod-2.0.2.ebuild 
b/app-emulation/libpod/libpod-2.0.2.ebuild
new file mode 100644
index 000..ae24fd7a5df
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.2.ebuild
@@ -0,0 +1,154 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="201c9505b88f451ca877d29a73ed0f1836bb96c7"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/podman/;
+MY_PN=podman
+MY_P=${MY_PN}-${PV}
+SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+ 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-06-28 Thread Zac Medico
commit: 614d361bbcfd5d112a3d9bf5acb63747e0941f7a
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jun 28 20:42:17 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jun 28 20:53:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=614d361b

app-emulation/libpod: Bump to version 2.0.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.1.ebuild | 150 +++
 2 files changed, 151 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 2cf76f594e7..858844b0491 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,4 @@
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
 DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03
 DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add39ec4ecd20b98f4879d287c481a525e01969c9b62f8b81e0be43eb864266f32f78af3f1a5ca92c4b1c4a9a16ce
 SHA512 
29f7e365dbd4ab6d20ee3e85939804f74dcfe95f65a6d030d1c10a36512c29d3934907cbb014047d659fd96ed3a2946570ef7922cd77cc729370ac099b4b58a2
+DIST libpod-2.0.1.tar.gz 9136153 BLAKE2B 
4c60dc047ae7fd6a2918589a30f6dc94c13251ed0002e77919adfb9dbe0a3c7b14e40e204c5879273589673a573aa318a3d5b972c32236143e166cb96a7cc3c8
 SHA512 
e52d3eef3d698360a0196dca6338c319511b6685c0237bd4d24a3763eb5e46262946d7609d1f36798dec6eb63d4511efdc8b77fa22c06bd55b666505f4fe6730

diff --git a/app-emulation/libpod/libpod-2.0.1.ebuild 
b/app-emulation/libpod/libpod-2.0.1.ebuild
new file mode 100644
index 000..bfded9611d4
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.1.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="a11c4ead10177a66ef2810a0a92ea8ce2299da07"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-06-19 Thread Zac Medico
commit: 87bde5048a0ac70df204e669e603ff5ceabb
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Jun 20 03:26:01 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jun 20 03:26:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87bde504

app-emulation/libpod: Bump to version 2.0.0

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-2.0.0.ebuild | 150 +++
 2 files changed, 151 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 74e73b563a8..2cf76f594e7 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
 DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03
+DIST libpod-2.0.0.tar.gz 9126598 BLAKE2B 
3c2d18a921b88ef235b14f069e7571f83b1add39ec4ecd20b98f4879d287c481a525e01969c9b62f8b81e0be43eb864266f32f78af3f1a5ca92c4b1c4a9a16ce
 SHA512 
29f7e365dbd4ab6d20ee3e85939804f74dcfe95f65a6d030d1c10a36512c29d3934907cbb014047d659fd96ed3a2946570ef7922cd77cc729370ac099b4b58a2

diff --git a/app-emulation/libpod/libpod-2.0.0.ebuild 
b/app-emulation/libpod/libpod-2.0.0.ebuild
new file mode 100644
index 000..3e87211f35f
--- /dev/null
+++ b/app-emulation/libpod/libpod-2.0.0.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="5d44534fff6877b1cb15b760242279ae6293154c"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   >=net-misc/cni-plugins-0.8.6
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   # Avoid this error when generating pkg/varlink/iopodman.go:
+   # cannot find package "github.com/varlink/go/varlink/idl"
+   mkdir -p 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-06-09 Thread Zac Medico
commit: 96fe64160b4a937b29eb6a81103cc7b3c42baf9f
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun  9 22:56:21 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun  9 23:02:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96fe6416

app-emulation/libpod: Remove old version

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 -
 app-emulation/libpod/libpod-1.9.0.ebuild | 142 ---
 2 files changed, 143 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index f1f66469e8e..74e73b563a8 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,2 @@
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
-DIST libpod-1.9.0.tar.gz 8865279 BLAKE2B 
70b83f7c0482f0cbf94f235752b241aec61790d2ec01abed6ab3eb98c5de4a338e84e70c7d5fbcb239f33a7a209160c8c4868b3b86797ac8be58f08ddde5d35d
 SHA512 
ba7de72e03dc55896025b698465745873f3030547e19133b835e4f47c1cd1c0261f17845d50cbe7b824db2a9ed77def7883405637333e141f7abecada644b5be
 DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03

diff --git a/app-emulation/libpod/libpod-1.9.0.ebuild 
b/app-emulation/libpod/libpod-1.9.0.ebuild
deleted file mode 100644
index de6c7c91cbb..000
--- a/app-emulation/libpod/libpod-1.9.0.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="d985723506a29766ed21585ba8541033db6bd572"
-
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs +fuse +rootless selinux"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   net-misc/cni-plugins
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}
-   fuse? ( sys-fs/fuse-overlayfs )"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   local makefile_sed_args=(
-   -e '/^GIT_.*/d'
-   -e 's/$(GO) build/$(GO) build -v -work -x/'
-   -e 's/^\(install:.*\) install\.python$/\1/'
-   )
-
-   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
-
-   sed "${makefile_sed_args[@]}" -i Makefile || die
-
-   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
-   -i hack/get_release_info.sh || die
-}
-
-src_compile() {
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   export -n GOCACHE GOPATH XDG_CACHE_HOME
-   GOBIN="${S}/bin" \
-   emake all \
-   GIT_BRANCH=master \
-   GIT_BRANCH_CLEAN=master \
-   COMMIT_NO="${EGIT_COMMIT}" \
-   GIT_COMMIT="${EGIT_COMMIT}"
-}
-

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-06-09 Thread Zac Medico
commit: f63dc99612b4a0ee27c455566a1e24fb6fcdb037
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun  9 22:54:38 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun  9 23:01:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f63dc996

app-emulation/libpod: Require latest cni-plugins

Solves errors like this:

ERRO[0014] Error adding network: failed to create bridge "cni-podman0": could 
not add "cni-podman0": operation not supported

See: https://github.com/containernetworking/cni/issues/770
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.8.2.ebuild | 2 +-
 app-emulation/libpod/libpod-1.9.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/libpod/libpod-1.8.2.ebuild 
b/app-emulation/libpod/libpod-1.8.2.ebuild
index c44a3f792ce..f409cd2a3e0 100644
--- a/app-emulation/libpod/libpod-1.8.2.ebuild
+++ b/app-emulation/libpod/libpod-1.8.2.ebuild
@@ -23,7 +23,7 @@ COMMON_DEPEND="
|| ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
-   net-misc/cni-plugins
+   >=net-misc/cni-plugins-0.8.6
sys-fs/lvm2
sys-libs/libseccomp:=
 

diff --git a/app-emulation/libpod/libpod-1.9.3.ebuild 
b/app-emulation/libpod/libpod-1.9.3.ebuild
index 14807bcc355..4a3ce8c2baa 100644
--- a/app-emulation/libpod/libpod-1.9.3.ebuild
+++ b/app-emulation/libpod/libpod-1.9.3.ebuild
@@ -23,7 +23,7 @@ COMMON_DEPEND="
|| ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
-   net-misc/cni-plugins
+   >=net-misc/cni-plugins-0.8.6
sys-fs/lvm2
sys-libs/libseccomp:=
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-05-25 Thread Zac Medico
commit: 7eb078e546b1c76a13c6f3b195afb6f7eabd5102
Author: Bruce Guenter  untroubled  org>
AuthorDate: Mon May 25 22:06:37 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon May 25 22:48:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eb078e5

app-emulation/libpod: Bump version to 1.9.3

Closes: https://github.com/gentoo/gentoo/pull/15970
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bruce Guenter  untroubled.org>
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.9.3.ebuild | 142 +++
 2 files changed, 143 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index c8593e08407..f1f66469e8e 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
 DIST libpod-1.9.0.tar.gz 8865279 BLAKE2B 
70b83f7c0482f0cbf94f235752b241aec61790d2ec01abed6ab3eb98c5de4a338e84e70c7d5fbcb239f33a7a209160c8c4868b3b86797ac8be58f08ddde5d35d
 SHA512 
ba7de72e03dc55896025b698465745873f3030547e19133b835e4f47c1cd1c0261f17845d50cbe7b824db2a9ed77def7883405637333e141f7abecada644b5be
+DIST libpod-1.9.3.tar.gz 8869143 BLAKE2B 
52c049c3a9c96729f32c1b7a9fc4b182614d18edd12ee1d5b19730a870b694f5c4489577bbf547cf86baf51b6fadfdf1a1513ff784a4c549f5b737549187f3a3
 SHA512 
d85cdf49b740f47a341b7717a4bc22ff326d22234e224bd572a3d879b75eaa33139bebdc293c2e7bc41a9902289d89380b9b56975a0826172324e9a54f8f5e03

diff --git a/app-emulation/libpod/libpod-1.9.3.ebuild 
b/app-emulation/libpod/libpod-1.9.3.ebuild
new file mode 100644
index 000..14807bcc355
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.9.3.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="5d44534fff6877b1cb15b760242279ae6293154c"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   net-misc/cni-plugins
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE GOPATH XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-04-19 Thread Zac Medico
commit: a0c6deb01e007307cba63a3dc3e307976608732f
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr 19 22:49:34 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Apr 19 22:53:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0c6deb0

app-emulation/libpod: Bump to version 1.9.0

 #717394 add fuse? ( sys-fs/fuse-overlayfs ) dependency

Closes: https://bugs.gentoo.org/717394
Reported-by: Lukas Hrazky  email.cz>
Closes: https://bugs.gentoo.org/717756
Reported-by: Dennis Schridde  gmx.net>
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.9.0.ebuild | 142 +++
 app-emulation/libpod/metadata.xml|   4 +
 3 files changed, 147 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index a3ff0453b37..a91cb8e3dff 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -3,3 +3,4 @@ DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8
 DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe
 DIST libpod-1.8.0.tar.gz 8992983 BLAKE2B 
a3b12dbfbdb0fe01ef8791de2c938cbf21c01ac0b36314d2a170c593d22eea08d912f8547861b239bb982db6acc9d2426adb97ffda4603739321cff0fb9ff1d8
 SHA512 
8e46633742e7dda1b9f6b641051009485331a3a95fcc8ff4c59c46a66f86ce1b79c832c5775d825aa54b885edaf533be2f864257137277a5265509026d0a8b87
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
+DIST libpod-1.9.0.tar.gz 8865279 BLAKE2B 
70b83f7c0482f0cbf94f235752b241aec61790d2ec01abed6ab3eb98c5de4a338e84e70c7d5fbcb239f33a7a209160c8c4868b3b86797ac8be58f08ddde5d35d
 SHA512 
ba7de72e03dc55896025b698465745873f3030547e19133b835e4f47c1cd1c0261f17845d50cbe7b824db2a9ed77def7883405637333e141f7abecada644b5be

diff --git a/app-emulation/libpod/libpod-1.9.0.ebuild 
b/app-emulation/libpod/libpod-1.9.0.ebuild
new file mode 100644
index 000..de6c7c91cbb
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.9.0.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="d985723506a29766ed21585ba8541033db6bd572"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +fuse +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   net-misc/cni-plugins
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}
+   fuse? ( sys-fs/fuse-overlayfs )"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   )
+
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-04-19 Thread Zac Medico
commit: 0a9e844fb6616eaba1a5edfc0d6a1f82419e84d5
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr 19 22:56:02 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Apr 19 22:56:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9e844f

app-emulation/libpod: Remove old versions

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   4 -
 app-emulation/libpod/libpod-1.6.4.ebuild | 141 ---
 app-emulation/libpod/libpod-1.7.0.ebuild | 136 -
 app-emulation/libpod/libpod-1.8.0.ebuild | 140 --
 4 files changed, 421 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index a91cb8e3dff..c8593e08407 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,6 +1,2 @@
-DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
-DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194
-DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe
-DIST libpod-1.8.0.tar.gz 8992983 BLAKE2B 
a3b12dbfbdb0fe01ef8791de2c938cbf21c01ac0b36314d2a170c593d22eea08d912f8547861b239bb982db6acc9d2426adb97ffda4603739321cff0fb9ff1d8
 SHA512 
8e46633742e7dda1b9f6b641051009485331a3a95fcc8ff4c59c46a66f86ce1b79c832c5775d825aa54b885edaf533be2f864257137277a5265509026d0a8b87
 DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366
 DIST libpod-1.9.0.tar.gz 8865279 BLAKE2B 
70b83f7c0482f0cbf94f235752b241aec61790d2ec01abed6ab3eb98c5de4a338e84e70c7d5fbcb239f33a7a209160c8c4868b3b86797ac8be58f08ddde5d35d
 SHA512 
ba7de72e03dc55896025b698465745873f3030547e19133b835e4f47c1cd1c0261f17845d50cbe7b824db2a9ed77def7883405637333e141f7abecada644b5be

diff --git a/app-emulation/libpod/libpod-1.6.4.ebuild 
b/app-emulation/libpod/libpod-1.6.4.ebuild
deleted file mode 100644
index c12fd7d1e1c..000
--- a/app-emulation/libpod/libpod-1.6.4.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="5cc92849f7fc9dd734ca2fd8f3ae8830b9a7eb26"
-
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-CONTAINERS_STORAGE_PATCH="containers-storage-1.14.0-vfs-user-xattrs.patch"
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   https://github.com/containers/storage/pull/466.patch -> 
${CONTAINERS_STORAGE_PATCH}"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs +rootless selinux"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
-   default
-   sed -e 's| \([ab]\)/| \1/vendor/github.com/containers/storage/|' < \
-   "${DISTDIR}/${CONTAINERS_STORAGE_PATCH}" > \
-   "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}" || die
-   eapply "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}"
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-
-   sed -e 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-04-05 Thread Zac Medico
commit: 3df896d7f88c8d3c97723ac9c022c26957098c4b
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr  5 19:39:38 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Apr  5 19:39:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df896d7

app-emulation/libpod: fix network-sandbox for go-1.13.9

Closes: https://bugs.gentoo.org/715980
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.8.2.ebuild 
b/app-emulation/libpod/libpod-1.8.2.ebuild
index e4ba0c46114..c44a3f792ce 100644
--- a/app-emulation/libpod/libpod-1.8.2.ebuild
+++ b/app-emulation/libpod/libpod-1.8.2.ebuild
@@ -48,7 +48,7 @@ src_prepare() {
-e 's/^\(install:.*\) install\.python$/\1/'
)
 
-   has_version -b '>=dev-lang/go-1.14' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
 
sed "${makefile_sed_args[@]}" -i Makefile || die
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-04-01 Thread Zac Medico
commit: 3570cf1696f95f5c3d1ee30822f6361657cd369d
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  2 00:45:51 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  2 00:48:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3570cf16

app-emulation/libpod: Bump to version 1.8.2

Closes: https://bugs.gentoo.org/715006
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.8.2.ebuild | 141 +++
 2 files changed, 142 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 504fd208dbf..a3ff0453b37 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -2,3 +2,4 @@ DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 
BLAKE2B 99c35933dcb25
 DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194
 DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe
 DIST libpod-1.8.0.tar.gz 8992983 BLAKE2B 
a3b12dbfbdb0fe01ef8791de2c938cbf21c01ac0b36314d2a170c593d22eea08d912f8547861b239bb982db6acc9d2426adb97ffda4603739321cff0fb9ff1d8
 SHA512 
8e46633742e7dda1b9f6b641051009485331a3a95fcc8ff4c59c46a66f86ce1b79c832c5775d825aa54b885edaf533be2f864257137277a5265509026d0a8b87
+DIST libpod-1.8.2.tar.gz 30065262 BLAKE2B 
1bf4ca9b9547a710f1882ac40aee0cf295fecdb9d43dc6fa3061ca9e19d15e6d671075627939167cdf100d30e8299e50bd51425226ff1994778782cf261b
 SHA512 
c6e1426f66299a21be66be033460c44830b422f8a3319f37bbe53030f6a2bf84b140a29f30b83f6b61199f1df373f81a6d73787d16423ad942fc8a9154c68366

diff --git a/app-emulation/libpod/libpod-1.8.2.ebuild 
b/app-emulation/libpod/libpod-1.8.2.ebuild
new file mode 100644
index 000..e4ba0c46114
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.8.2.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="028e3317eb1494b9b2acba4a0a295df80fae66cc"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   net-misc/cni-plugins
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   )
+
+   has_version -b '>=dev-lang/go-1.14' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-03-09 Thread Zac Medico
commit: c979fbf04b85ccf20759a45aec6fbba94afc827a
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Mar  9 22:18:21 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Mar  9 22:21:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c979fbf0

app-emulation/libpod: fix network-sandbox for go-1.14

Closes: https://bugs.gentoo.org/711964
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.8.0.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/app-emulation/libpod/libpod-1.8.0.ebuild 
b/app-emulation/libpod/libpod-1.8.0.ebuild
index 502e3dde382..27fe79a5b91 100644
--- a/app-emulation/libpod/libpod-1.8.0.ebuild
+++ b/app-emulation/libpod/libpod-1.8.0.ebuild
@@ -41,11 +41,15 @@ src_prepare() {
 
# Disable installation of python modules here, since those are
# installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's:GO111MODULE=off:GO111MODULE=on:' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
+   local makefile_sed_args=(
+   -e '/^GIT_.*/d'
+   -e 's/$(GO) build/$(GO) build -v -work -x/'
+   -e 's/^\(install:.*\) install\.python$/\1/'
+   )
+
+   has_version -b '>=dev-lang/go-1.14' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
+
+   sed "${makefile_sed_args[@]}" -i Makefile || die
 
sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
-i hack/get_release_info.sh || die



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-02-07 Thread Zac Medico
commit: 83c3ceba0318835199a24426d8d80c3db2095f1d
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Feb  8 03:15:19 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Feb  8 03:17:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c3ceba

app-emulation/libpod: Bump to version 1.8.0

Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.8.0.ebuild | 136 +++
 2 files changed, 137 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index b0d47445155..504fd208dbf 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,4 @@
 DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
 DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194
 DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe
+DIST libpod-1.8.0.tar.gz 8992983 BLAKE2B 
a3b12dbfbdb0fe01ef8791de2c938cbf21c01ac0b36314d2a170c593d22eea08d912f8547861b239bb982db6acc9d2426adb97ffda4603739321cff0fb9ff1d8
 SHA512 
8e46633742e7dda1b9f6b641051009485331a3a95fcc8ff4c59c46a66f86ce1b79c832c5775d825aa54b885edaf533be2f864257137277a5265509026d0a8b87

diff --git a/app-emulation/libpod/libpod-1.8.0.ebuild 
b/app-emulation/libpod/libpod-1.8.0.ebuild
new file mode 100644
index 000..502e3dde382
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.8.0.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="2ced9094d4728dd09f60a177faa32339a8d0f721"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs +rootless selinux"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's:GO111MODULE=off:GO111MODULE=on:' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE GOPATH XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-01-19 Thread Zac Medico
commit: 7a127d340953ca60da74c0af0e5ba8cf6adcd4f3
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jan 19 21:20:32 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jan 19 21:22:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a127d34

app-emulation/libpod: Remove ostree from IUSE

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.6.4.ebuild | 5 ++---
 app-emulation/libpod/libpod-1.7.0.ebuild | 3 +--
 app-emulation/libpod/metadata.xml| 3 ---
 3 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/app-emulation/libpod/libpod-1.6.4.ebuild 
b/app-emulation/libpod/libpod-1.6.4.ebuild
index 45bd559b524..c12fd7d1e1c 100644
--- a/app-emulation/libpod/libpod-1.6.4.ebuild
+++ b/app-emulation/libpod/libpod-1.6.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,8 +16,7 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!ostree"
+IUSE="apparmor btrfs +rootless selinux"
 RESTRICT="test"
 
 COMMON_DEPEND="

diff --git a/app-emulation/libpod/libpod-1.7.0.ebuild 
b/app-emulation/libpod/libpod-1.7.0.ebuild
index 5ccc860cc39..329e1e7a720 100644
--- a/app-emulation/libpod/libpod-1.7.0.ebuild
+++ b/app-emulation/libpod/libpod-1.7.0.ebuild
@@ -14,8 +14,7 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!ostree"
+IUSE="apparmor btrfs +rootless selinux"
 RESTRICT="test"
 
 COMMON_DEPEND="

diff --git a/app-emulation/libpod/metadata.xml 
b/app-emulation/libpod/metadata.xml
index b488c7d9282..0ce2c6b92f8 100644
--- a/app-emulation/libpod/metadata.xml
+++ b/app-emulation/libpod/metadata.xml
@@ -19,9 +19,6 @@
Enables dependencies for the "btrfs" graph driver, 
including
necessary kernel flags.

-   
-   Enables dependencies for handling of OSTree images.
-   

Enables dependencies for running in rootless mode.




[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-01-19 Thread Zac Medico
commit: 475d21af3f3093b8ab24bef98fea99c5f4f35d2f
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jan 19 21:17:11 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jan 19 21:17:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=475d21af

app-emulation/libpod: Remove old version 1.6.3-r2

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest   |   1 -
 app-emulation/libpod/libpod-1.6.3-r2.ebuild | 142 
 2 files changed, 143 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index f5d984e4cde..b0d47445155 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,4 +1,3 @@
 DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
-DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd
 DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194
 DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe

diff --git a/app-emulation/libpod/libpod-1.6.3-r2.ebuild 
b/app-emulation/libpod/libpod-1.6.3-r2.ebuild
deleted file mode 100644
index 345becae929..000
--- a/app-emulation/libpod/libpod-1.6.3-r2.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="9d087f6a766259ba53b224944f1b7b778035c370"
-
-inherit bash-completion-r1 flag-o-matic go-module
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-CONTAINERS_STORAGE_PATCH="containers-storage-1.14.0-vfs-user-xattrs.patch"
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   https://github.com/containers/storage/pull/466.patch -> 
${CONTAINERS_STORAGE_PATCH}"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!ostree"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
-   default
-   sed -e 's| \([ab]\)/| \1/vendor/github.com/containers/storage/|' < \
-   "${DISTDIR}/${CONTAINERS_STORAGE_PATCH}" > \
-   "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}" || die
-   eapply "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}"
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-
-   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
-   -i hack/get_release_info.sh || die
-}
-
-src_compile() {
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2020-01-17 Thread Zac Medico
commit: b7f82d49fad6a5358f23704058d2f46ca03f382d
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Jan 18 00:54:54 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jan 18 00:57:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f82d49

app-emulation/libpod: Bump to version 1.7.0

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.7.0.ebuild | 137 +++
 2 files changed, 138 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 894472752c3..f5d984e4cde 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,4 @@
 DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
 DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd
 DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194
+DIST libpod-1.7.0.tar.gz 8679022 BLAKE2B 
8a8037b75deae9f94461ab697b2a7cf095254c68d8436655c37a40375e3dd1a2b621672643e430acc8a656fcd516fa5a542e7104d6cfdbee3d213aca6228d410
 SHA512 
986ec7123127d3ffb26cecc39a2ae3d8a6dd3d147327449fc4e9d17f6e6606bde278f13920d0aef59410262801251e7b4cfe099cb5caafe9773533e8476848fe

diff --git a/app-emulation/libpod/libpod-1.7.0.ebuild 
b/app-emulation/libpod/libpod-1.7.0.ebuild
new file mode 100644
index 000..5ccc860cc39
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.7.0.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="b7ce1157b00af09f4a09e39b377aa3abff46ee05"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!ostree"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's:GO111MODULE=off:GO111MODULE=on:' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE GOPATH XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+   emake all \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-12-13 Thread Zac Medico
commit: 560f9e7c8132849bb2a67465eee7cac5108703fa
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec 13 22:12:20 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec 13 22:26:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560f9e7c

app-emulation/libpod: Bump to version 1.6.4

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.6.4.ebuild | 142 +++
 2 files changed, 143 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 8ea0c53b586..894472752c3 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
 DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd
+DIST libpod-1.6.4.tar.gz 8340370 BLAKE2B 
f68f0e846a442aa0717d4918f24260560ee77c8abdecd5af3dec06ee95ab899d623b8797962ac416bf498f22643d45de5c6d86049eead9d5c93073957c3fd9bf
 SHA512 
69322551ab196cd3859e03988178c59a47df6f00ef0768a56e40d785f6b2130df03ff0ea76d101e21e748ea9260ede144d31f3ec21922ffd70eb2969a77d4194

diff --git a/app-emulation/libpod/libpod-1.6.4.ebuild 
b/app-emulation/libpod/libpod-1.6.4.ebuild
new file mode 100644
index 000..45bd559b524
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.6.4.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="5cc92849f7fc9dd734ca2fd8f3ae8830b9a7eb26"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+CONTAINERS_STORAGE_PATCH="containers-storage-1.14.0-vfs-user-xattrs.patch"
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   https://github.com/containers/storage/pull/466.patch -> 
${CONTAINERS_STORAGE_PATCH}"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!ostree"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+   sed -e 's| \([ab]\)/| \1/vendor/github.com/containers/storage/|' < \
+   "${DISTDIR}/${CONTAINERS_STORAGE_PATCH}" > \
+   "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}" || die
+   eapply "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}"
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE GOPATH XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+ 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-12-06 Thread Zac Medico
commit: acc573f267289b38d11a0423f88cd77bb9ce5b2e
Author: Michael Schmid  gmx  ch>
AuthorDate: Fri Dec  6 08:00:59 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 08:02:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc573f2

app-emulation/libpod: export -n GOPATH

Closes: https://bugs.gentoo.org/702138
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.6.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.6.3-r2.ebuild 
b/app-emulation/libpod/libpod-1.6.3-r2.ebuild
index f8dcfddf4eb..345becae929 100644
--- a/app-emulation/libpod/libpod-1.6.3-r2.ebuild
+++ b/app-emulation/libpod/libpod-1.6.3-r2.ebuild
@@ -83,7 +83,7 @@ src_compile() {
echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
fi
 
-   export -n GOCACHE XDG_CACHE_HOME
+   export -n GOCACHE GOPATH XDG_CACHE_HOME
GOBIN="${S}/bin" \
emake all \
GIT_BRANCH=master \



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-25 Thread Zac Medico
commit: 43305c9e8e3c9f4b2f86d053381a7b9ba5bd4d77
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Nov 26 04:25:06 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Nov 26 04:25:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43305c9e

app-emulation/libpod: add upstream VFS user xattrs patch

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest | 1 +
 .../libpod/{libpod-1.6.3-r1.ebuild => libpod-1.6.3-r2.ebuild} | 8 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 65cc6cd084c..8ea0c53b586 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
+DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 
99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008
 SHA512 
62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
 DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd

diff --git a/app-emulation/libpod/libpod-1.6.3-r1.ebuild 
b/app-emulation/libpod/libpod-1.6.3-r2.ebuild
similarity index 90%
rename from app-emulation/libpod/libpod-1.6.3-r1.ebuild
rename to app-emulation/libpod/libpod-1.6.3-r2.ebuild
index fbbde543c71..f8dcfddf4eb 100644
--- a/app-emulation/libpod/libpod-1.6.3-r1.ebuild
+++ b/app-emulation/libpod/libpod-1.6.3-r2.ebuild
@@ -9,7 +9,9 @@ inherit bash-completion-r1 flag-o-matic go-module
 
 DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
 HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+CONTAINERS_STORAGE_PATCH="containers-storage-1.14.0-vfs-user-xattrs.patch"
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   https://github.com/containers/storage/pull/466.patch -> 
${CONTAINERS_STORAGE_PATCH}"
 LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
@@ -39,6 +41,10 @@ RDEPEND="${COMMON_DEPEND}"
 
 src_prepare() {
default
+   sed -e 's| \([ab]\)/| \1/vendor/github.com/containers/storage/|' < \
+   "${DISTDIR}/${CONTAINERS_STORAGE_PATCH}" > \
+   "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}" || die
+   eapply "${WORKDIR}/${CONTAINERS_STORAGE_PATCH}"
 
# Disable installation of python modules here, since those are
# installed by separate ebuilds.



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-24 Thread Zac Medico
commit: 69fa809444d7ca0ecc63519e76790d2a321c9936
Author: Matthias Dahl  binary-island  eu>
AuthorDate: Sun Nov 24 08:07:28 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov 24 19:46:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69fa8094

app-emulation/libpod: Add missing seccomp.json and crun runtime dep

seccomp.json needs to be installed in /usr/share/containers and will
be used by libpod as well as buildah. Without it, some containers
will not work due to seccomp usage that is otherwise blocked.

Fedora has switched to crun as the default container runtime. At the
moment it is the only runtime that supports CGroup v2 which in-turn
greatly helps with rootless mode. Support crun as an alternative to
the runc dependency.

Closes: https://bugs.gentoo.org/692118
Closes: https://github.com/gentoo/gentoo/pull/13743
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Matthias Dahl  binary-island.eu>
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/{libpod-1.6.3.ebuild => libpod-1.6.3-r1.ebuild} | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.6.3.ebuild 
b/app-emulation/libpod/libpod-1.6.3-r1.ebuild
similarity index 97%
rename from app-emulation/libpod/libpod-1.6.3.ebuild
rename to app-emulation/libpod/libpod-1.6.3-r1.ebuild
index 029c6c1413f..fbbde543c71 100644
--- a/app-emulation/libpod/libpod-1.6.3.ebuild
+++ b/app-emulation/libpod/libpod-1.6.3-r1.ebuild
@@ -21,7 +21,7 @@ RESTRICT="test"
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-emulation/conmon-2.0.0
-   >=app-emulation/runc-1.0.0_rc6
+   || ( >=app-emulation/runc-1.0.0_rc6 app-emulation/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
sys-fs/lvm2
@@ -93,6 +93,9 @@ src_install() {
newins test/registries.conf registries.conf.example
newins test/policy.json policy.json.example
 
+   insinto /usr/share/containers
+   doins seccomp.json
+
newinitd "${FILESDIR}"/podman.initd podman
 
insinto /etc/logrotate.d



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-15 Thread Zac Medico
commit: b944e808839cdcd5ea25e1af3912bd52c671fe6e
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Nov 15 21:37:23 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Nov 15 21:37:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b944e808

app-emulation/libpod: Remove old version 1.5.1-r1

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest   |   1 -
 app-emulation/libpod/libpod-1.5.1-r1.ebuild | 142 
 2 files changed, 143 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index d80038301d2..65cc6cd084c 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1 @@
-DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
 DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd

diff --git a/app-emulation/libpod/libpod-1.5.1-r1.ebuild 
b/app-emulation/libpod/libpod-1.5.1-r1.ebuild
deleted file mode 100644
index f1061d08281..000
--- a/app-emulation/libpod/libpod-1.5.1-r1.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="00057929f5acfd98341964d85722383363376d52"
-EGO_PN="github.com/containers/${PN}"
-
-inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!selinux? ( !ostree )"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   >=app-emulation/runc-1.0.0_rc6
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   ostree? (
-   dev-libs/glib:=
-   dev-util/ostree:=
-   )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-}
-
-src_compile() {
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/ostree_tag.sh ]] || die
-   if use ostree; then
-   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   env -u GOCACHE -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
-   emake all \
-   GIT_BRANCH=master \
-   GIT_BRANCH_CLEAN=master \
-   COMMIT_NO="${EGIT_COMMIT}" \
-   GIT_COMMIT="${EGIT_COMMIT}"
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-
-   insinto /etc/containers
-   newins test/registries.conf registries.conf.example

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-10 Thread Zac Medico
commit: 3af85c99a2df7943f9476f5cd67d4c526b622fe2
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Nov  9 22:46:44 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Nov  9 22:51:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af85c99

app-emulation/libpod: fix get_release_info.sh VERSION

Bug: https://bugs.gentoo.org/697998
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.6.3.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-emulation/libpod/libpod-1.6.3.ebuild 
b/app-emulation/libpod/libpod-1.6.3.ebuild
index f2d8fa4c489..029c6c1413f 100644
--- a/app-emulation/libpod/libpod-1.6.3.ebuild
+++ b/app-emulation/libpod/libpod-1.6.3.ebuild
@@ -46,6 +46,9 @@ src_prepare() {
-e 's/$(GO) build/$(GO) build -v -work -x/' \
-e 's/^\(install:.*\) install\.python$/\1/' \
-i Makefile || die
+
+   sed -e 's|OUTPUT="${CIRRUS_TAG:.*|OUTPUT='v${PV}'|' \
+   -i hack/get_release_info.sh || die
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-10 Thread Zac Medico
commit: 22f1b3e471e5795bcc025494197e584c89443927
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Nov  9 22:36:40 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Nov  9 22:37:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22f1b3e4

app-emulation/libpod: Remove old version 1.6.2

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 -
 app-emulation/libpod/libpod-1.6.2.ebuild | 142 ---
 2 files changed, 143 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index e09b88df125..d80038301d2 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,2 @@
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
-DIST libpod-1.6.2.tar.gz 8270781 BLAKE2B 
5d86533ddc821f731292e126102a31d651956c275a22c5c4ab3c57b9351832a1d85d75be877343c60af47716f9d1776315b3bf41fb17037d02fee10cf88efba3
 SHA512 
68192dda019623e3f3af9f82f946be8efbaf3e2c54acf23f62af67ac1ca093dd4dba11d2a7c1c950b99060393ed7e945752c1eaa9eada0dfc30f3dcaac8e1c04
 DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd

diff --git a/app-emulation/libpod/libpod-1.6.2.ebuild 
b/app-emulation/libpod/libpod-1.6.2.ebuild
deleted file mode 100644
index 9c1a41555c1..000
--- a/app-emulation/libpod/libpod-1.6.2.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="f3ffda1e08f19e9a6a88484136b5eed76533f21a"
-EGO_PN="github.com/containers/${PN}"
-
-inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!selinux? ( !ostree )"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/conmon-2.0.0
-   >=app-emulation/runc-1.0.0_rc6
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   ostree? (
-   dev-libs/glib:=
-   dev-util/ostree:=
-   )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-}
-
-src_compile() {
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/ostree_tag.sh ]] || die
-   if use ostree; then
-   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   env -u GOCACHE -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
-   emake all \
-   GIT_BRANCH=master \
-   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-11-03 Thread Zac Medico
commit: bc2a6090600db70d91ddc6a52828a353c19ea333
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Nov  3 21:40:30 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 21:41:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2a6090

app-emulation/libpod: Bump to version 1.6.3

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.6.3.ebuild | 130 +++
 2 files changed, 131 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 24023149209..e09b88df125 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
 DIST libpod-1.6.2.tar.gz 8270781 BLAKE2B 
5d86533ddc821f731292e126102a31d651956c275a22c5c4ab3c57b9351832a1d85d75be877343c60af47716f9d1776315b3bf41fb17037d02fee10cf88efba3
 SHA512 
68192dda019623e3f3af9f82f946be8efbaf3e2c54acf23f62af67ac1ca093dd4dba11d2a7c1c950b99060393ed7e945752c1eaa9eada0dfc30f3dcaac8e1c04
+DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd

diff --git a/app-emulation/libpod/libpod-1.6.3.ebuild 
b/app-emulation/libpod/libpod-1.6.3.ebuild
new file mode 100644
index 000..f2d8fa4c489
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.6.3.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="9d087f6a766259ba53b224944f1b7b778035c370"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!ostree"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins test/policy.json policy.json.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/podman.logrotated" podman
+
+  

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-10-17 Thread Zac Medico
commit: dd5b2cef22827af1f16a3121401549fc5cccf60b
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 05:15:46 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 05:30:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5b2cef

app-emulation/libpod: Bump to version 1.6.2

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.6.2.ebuild | 142 +++
 2 files changed, 143 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index d81a0348f34..24023149209 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
+DIST libpod-1.6.2.tar.gz 8270781 BLAKE2B 
5d86533ddc821f731292e126102a31d651956c275a22c5c4ab3c57b9351832a1d85d75be877343c60af47716f9d1776315b3bf41fb17037d02fee10cf88efba3
 SHA512 
68192dda019623e3f3af9f82f946be8efbaf3e2c54acf23f62af67ac1ca093dd4dba11d2a7c1c950b99060393ed7e945752c1eaa9eada0dfc30f3dcaac8e1c04

diff --git a/app-emulation/libpod/libpod-1.6.2.ebuild 
b/app-emulation/libpod/libpod-1.6.2.ebuild
new file mode 100644
index 000..9c1a41555c1
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.6.2.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="f3ffda1e08f19e9a6a88484136b5eed76533f21a"
+EGO_PN="github.com/containers/${PN}"
+
+inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-09-18 Thread Zac Medico
commit: 46fb9aa6eab2a319a0e22f7cfa937102789ccb65
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Sep 19 03:27:31 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Sep 19 03:27:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46fb9aa6

app-emulation/libpod: Remove old versions

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest   |   3 -
 app-emulation/libpod/libpod-1.3.2-r1.ebuild | 139 
 app-emulation/libpod/libpod-1.4.0.ebuild| 139 
 app-emulation/libpod/libpod-1.4.4.ebuild| 139 
 4 files changed, 420 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index d2e1ff238eb..d81a0348f34 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,4 +1 @@
-DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b
-DIST libpod-1.4.0.tar.gz 6937356 BLAKE2B 
d8fa4920485be89c84adca8a15946bfbac01671ff5460cb0e519cddd208e28b2dae392bfff93cf0b344d7d887e000d4edf430c81bd8a903678e10578a459cf70
 SHA512 
711de3cf02c96316aaec3d62fb5eaf5d16c6689b4b84cfcc3a375ba5c0554d3a7d2f789eb8d330e38be37d8907427641c077038c9945ed0ca6cd19ec872a451c
-DIST libpod-1.4.4.tar.gz 8286321 BLAKE2B 
2f7d529d1780694e450d7ac63aef53ad2bbe27a9cdd939fe7b7d5c71020173639a6b7c20e3732cb2a8320e0f55ec906acab29fc3b1bdbec8a05add1baf688194
 SHA512 
18e9f2cbd308d1fd5cd9d4931530b7c8357784a1cfd84ceb106813e5bfbd404424c656dd82d74c04678e8d83c03d2ef44c16d3a866b6844a3ed0adc0e88dd8b0
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02

diff --git a/app-emulation/libpod/libpod-1.3.2-r1.ebuild 
b/app-emulation/libpod/libpod-1.3.2-r1.ebuild
deleted file mode 100644
index aa7383b1397..000
--- a/app-emulation/libpod/libpod-1.3.2-r1.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="14fdcd0dedaec2fa89ccb58840e297ecb98cc617"
-EGO_PN="github.com/containers/${PN}"
-
-inherit golang-vcs-snapshot systemd
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!selinux? ( !ostree )"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   app-emulation/conmon
-   >=app-emulation/runc-1.0.0_rc6
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   ostree? (
-   dev-libs/glib:=
-   dev-util/ostree:=
-   )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-}
-
-src_compile() {
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/ostree_tag.sh ]] || die
-   if use ostree; then
-   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-09-18 Thread Zac Medico
commit: b2cf1d1ff5f97d5ea9adcce8de3e4a8916476771
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Sep 19 03:35:45 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Sep 19 03:36:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cf1d1f

app-emulation/libpod: LICENSE: account for vendored software

Reported-by: Michał Górny  gentoo.org>
Bug: https://bugs.gentoo.org/694890
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.5.1-r1.ebuild 
b/app-emulation/libpod/libpod-1.5.1-r1.ebuild
index a3cd4c05962..f1061d08281 100644
--- a/app-emulation/libpod/libpod-1.5.1-r1.ebuild
+++ b/app-emulation/libpod/libpod-1.5.1-r1.ebuild
@@ -11,7 +11,7 @@ inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
 DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
 HOMEPAGE="https://github.com/containers/libpod/;
 SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="~amd64"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-09-06 Thread Zac Medico
commit: b85c1ce5fcfc64aaa3d89a342e907b879c69389e
Author: babykart  gmail  com>
AuthorDate: Sat Sep  7 00:29:40 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Sep  7 00:34:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b85c1ce5

app-emulation/libpod: Revbump to 1.5.1-r1 for bash completion

Closes: https://bugs.gentoo.org/693414
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/{libpod-1.5.1.ebuild => libpod-1.5.1-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.5.1.ebuild 
b/app-emulation/libpod/libpod-1.5.1-r1.ebuild
similarity index 97%
rename from app-emulation/libpod/libpod-1.5.1.ebuild
rename to app-emulation/libpod/libpod-1.5.1-r1.ebuild
index a51d046989d..a3cd4c05962 100644
--- a/app-emulation/libpod/libpod-1.5.1.ebuild
+++ b/app-emulation/libpod/libpod-1.5.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 EGIT_COMMIT="00057929f5acfd98341964d85722383363376d52"
 EGO_PN="github.com/containers/${PN}"
 
-inherit flag-o-matic golang-vcs-snapshot
+inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
 
 DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
 HOMEPAGE="https://github.com/containers/libpod/;
@@ -107,6 +107,8 @@ src_install() {
insinto /etc/logrotate.d
newins "${FILESDIR}/podman.logrotated" podman
 
+   dobashcomp completions/bash/*
+
keepdir /var/lib/containers
 }
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-08-21 Thread Zac Medico
commit: ebce88b77b6ed5f9f5562df7002ba0e50774ecb4
Author: Bruce Guenter  untroubled  org>
AuthorDate: Wed Aug 21 18:31:42 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Aug 21 19:45:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebce88b7

app-emulation/libpod: Bump to version 1.5.1

Closes: https://bugs.gentoo.org/692568
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.5.1.ebuild | 140 +++
 2 files changed, 141 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 6585db41526..d2e1ff238eb 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1,4 @@
 DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b
 DIST libpod-1.4.0.tar.gz 6937356 BLAKE2B 
d8fa4920485be89c84adca8a15946bfbac01671ff5460cb0e519cddd208e28b2dae392bfff93cf0b344d7d887e000d4edf430c81bd8a903678e10578a459cf70
 SHA512 
711de3cf02c96316aaec3d62fb5eaf5d16c6689b4b84cfcc3a375ba5c0554d3a7d2f789eb8d330e38be37d8907427641c077038c9945ed0ca6cd19ec872a451c
 DIST libpod-1.4.4.tar.gz 8286321 BLAKE2B 
2f7d529d1780694e450d7ac63aef53ad2bbe27a9cdd939fe7b7d5c71020173639a6b7c20e3732cb2a8320e0f55ec906acab29fc3b1bdbec8a05add1baf688194
 SHA512 
18e9f2cbd308d1fd5cd9d4931530b7c8357784a1cfd84ceb106813e5bfbd404424c656dd82d74c04678e8d83c03d2ef44c16d3a866b6844a3ed0adc0e88dd8b0
+DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02

diff --git a/app-emulation/libpod/libpod-1.5.1.ebuild 
b/app-emulation/libpod/libpod-1.5.1.ebuild
new file mode 100644
index 000..a51d046989d
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.5.1.ebuild
@@ -0,0 +1,140 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="00057929f5acfd98341964d85722383363376d52"
+EGO_PN="github.com/containers/${PN}"
+
+inherit flag-o-matic golang-vcs-snapshot
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-07-18 Thread Zac Medico
commit: 2dbf3134e2fa35d02b8f1bd11c2ab567598b8304
Author: Bruce Guenter  untroubled  org>
AuthorDate: Thu Jul 18 19:43:22 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 18 19:48:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbf3134

app-emulation/libpod: Bump to version 1.4.4

Closes: https://bugs.gentoo.org/690156
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.4.4.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index b687de3f0b3..6585db41526 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b
 DIST libpod-1.4.0.tar.gz 6937356 BLAKE2B 
d8fa4920485be89c84adca8a15946bfbac01671ff5460cb0e519cddd208e28b2dae392bfff93cf0b344d7d887e000d4edf430c81bd8a903678e10578a459cf70
 SHA512 
711de3cf02c96316aaec3d62fb5eaf5d16c6689b4b84cfcc3a375ba5c0554d3a7d2f789eb8d330e38be37d8907427641c077038c9945ed0ca6cd19ec872a451c
+DIST libpod-1.4.4.tar.gz 8286321 BLAKE2B 
2f7d529d1780694e450d7ac63aef53ad2bbe27a9cdd939fe7b7d5c71020173639a6b7c20e3732cb2a8320e0f55ec906acab29fc3b1bdbec8a05add1baf688194
 SHA512 
18e9f2cbd308d1fd5cd9d4931530b7c8357784a1cfd84ceb106813e5bfbd404424c656dd82d74c04678e8d83c03d2ef44c16d3a866b6844a3ed0adc0e88dd8b0

diff --git a/app-emulation/libpod/libpod-1.4.4.ebuild 
b/app-emulation/libpod/libpod-1.4.4.ebuild
new file mode 100644
index 000..8dfcea5cf94
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.4.4.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="b3f10c8be229bcc58c1673b0431285fd5fce1293"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   app-emulation/conmon
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-06-10 Thread Zac Medico
commit: db3d0d31c4fb34ff84ee4f2c5319c81f3e55d966
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 10 17:47:36 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 10 17:50:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3d0d31

app-emulation/libpod: Bump to version 1.4.0

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.4.0.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 5f41cc0145c..b687de3f0b3 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b
+DIST libpod-1.4.0.tar.gz 6937356 BLAKE2B 
d8fa4920485be89c84adca8a15946bfbac01671ff5460cb0e519cddd208e28b2dae392bfff93cf0b344d7d887e000d4edf430c81bd8a903678e10578a459cf70
 SHA512 
711de3cf02c96316aaec3d62fb5eaf5d16c6689b4b84cfcc3a375ba5c0554d3a7d2f789eb8d330e38be37d8907427641c077038c9945ed0ca6cd19ec872a451c

diff --git a/app-emulation/libpod/libpod-1.4.0.ebuild 
b/app-emulation/libpod/libpod-1.4.0.ebuild
new file mode 100644
index 000..13e252945a3
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.4.0.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="41365a8f6760349cac826a7c1d50ba2c4057ed50"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   app-emulation/conmon
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins test/policy.json policy.json.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   systemd_dounit 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-06-01 Thread Zac Medico
commit: 19201ef5b30d62978145ad5dc9c0f96eb812afa8
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Jun  1 06:15:00 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jun  1 06:15:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19201ef5

app-emulation/libpod: replace cri-o dep with conmon

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/{libpod-1.3.2.ebuild => libpod-1.3.2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libpod/libpod-1.3.2.ebuild 
b/app-emulation/libpod/libpod-1.3.2-r1.ebuild
similarity index 99%
rename from app-emulation/libpod/libpod-1.3.2.ebuild
rename to app-emulation/libpod/libpod-1.3.2-r1.ebuild
index 86ca7e8293a..aa7383b1397 100644
--- a/app-emulation/libpod/libpod-1.3.2.ebuild
+++ b/app-emulation/libpod/libpod-1.3.2-r1.ebuild
@@ -21,7 +21,7 @@ RESTRICT="test"
 
 COMMON_DEPEND="
app-crypt/gpgme:=
-   >=app-emulation/cri-o-1.13.0
+   app-emulation/conmon
>=app-emulation/runc-1.0.0_rc6
dev-libs/libassuan:=
dev-libs/libgpg-error:=



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-06-01 Thread Zac Medico
commit: bbc628ff2d2b878966df78fa0b4376b291e2cf32
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Jun  1 06:09:51 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jun  1 06:09:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc628ff

app-emulation/libpod: remove old versions

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   2 -
 app-emulation/libpod/libpod-1.1.2.ebuild | 139 ---
 app-emulation/libpod/libpod-1.2.0.ebuild | 139 ---
 3 files changed, 280 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 066e117c70a..5f41cc0145c 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1 @@
-DIST libpod-1.1.2.tar.gz 7878228 BLAKE2B 
8974949843c6f966d48715df320e47b814e442e374e1393dd5a116c6f7222e9ce29f480205f6a58e213e6cead58e5b4f31fd776865911b22e517607349654d35
 SHA512 
55456fe03da0873d3f6c67ced25dbe98f6a5a14c3da64ab2b4a9c6161c1d727ec8cdfe5414b534531e440e8c86f909449f4026d66898b909924aba1744ec0682
-DIST libpod-1.2.0.tar.gz 7978520 BLAKE2B 
c1be831553ced9795de266886890c36e89f2b6c2012cbe4f36fa49194c3a825abc097af879326e8e1ad7886ea188d60c42fe1dfa1ad46057c5928f3b5c4f7cd4
 SHA512 
16ae8fa8a6e9a15d17f7aebe0842bf41e289cbbe5ea8e997c26b2d3e984d669386022e7d1479ca31e8cab8990ae4e2dc1cf753f010bf9aeb03a34199b1146e89
 DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b

diff --git a/app-emulation/libpod/libpod-1.1.2.ebuild 
b/app-emulation/libpod/libpod-1.1.2.ebuild
deleted file mode 100644
index 0d80616d4c5..000
--- a/app-emulation/libpod/libpod-1.1.2.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="0ad9b6bf2aea4ba37e8c9738feabec61343ba175"
-EGO_PN="github.com/containers/${PN}"
-
-inherit golang-vcs-snapshot systemd
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree +rootless selinux"
-REQUIRED_USE="!selinux? ( !ostree )"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/cri-o-1.13.0
-   >=app-emulation/runc-1.0.0_rc6
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   ostree? (
-   dev-libs/glib:=
-   dev-util/ostree:=
-   )
-   rootless? ( app-emulation/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-}
-
-src_compile() {
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/ostree_tag.sh ]] || die
-   if use ostree; then
-   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
-   emake all \
-   GIT_BRANCH=master \
-   GIT_BRANCH_CLEAN=master \
-   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-05-28 Thread Zac Medico
commit: 44959e11f8d2650db7a0448ff22bad245c862016
Author: Zac Medico  gentoo  org>
AuthorDate: Tue May 28 23:44:23 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue May 28 23:47:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44959e11

app-emulation/libpod: version bump to 1.3.2

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.3.2.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index a653916cdbd..066e117c70a 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.1.2.tar.gz 7878228 BLAKE2B 
8974949843c6f966d48715df320e47b814e442e374e1393dd5a116c6f7222e9ce29f480205f6a58e213e6cead58e5b4f31fd776865911b22e517607349654d35
 SHA512 
55456fe03da0873d3f6c67ced25dbe98f6a5a14c3da64ab2b4a9c6161c1d727ec8cdfe5414b534531e440e8c86f909449f4026d66898b909924aba1744ec0682
 DIST libpod-1.2.0.tar.gz 7978520 BLAKE2B 
c1be831553ced9795de266886890c36e89f2b6c2012cbe4f36fa49194c3a825abc097af879326e8e1ad7886ea188d60c42fe1dfa1ad46057c5928f3b5c4f7cd4
 SHA512 
16ae8fa8a6e9a15d17f7aebe0842bf41e289cbbe5ea8e997c26b2d3e984d669386022e7d1479ca31e8cab8990ae4e2dc1cf753f010bf9aeb03a34199b1146e89
+DIST libpod-1.3.2.tar.gz 6901289 BLAKE2B 
5de0cf9f47f7e10866839ba01f3c3ed930ebdb716ce10ca4cb6f6b4d0e96088e10a069726125f2dc4af6febe08e6b2fc058fb8e8ecd7dd870612ecb98f29bba5
 SHA512 
fb959bf6af314baf3d01c53b513390b6d181adca3f9ff2ca747fabd53abdd45907e8a3f8189ff2d1bd70cff8e8bad690407cf278392a0831e6109669a1c1b12b

diff --git a/app-emulation/libpod/libpod-1.3.2.ebuild 
b/app-emulation/libpod/libpod-1.3.2.ebuild
new file mode 100644
index 000..86ca7e8293a
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.3.2.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="14fdcd0dedaec2fa89ccb58840e297ecb98cc617"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-04-11 Thread Zac Medico
commit: 3dbc37a8acc6ff9ebeef53461f727c5bef2ba5bf
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr 11 22:52:19 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr 11 22:52:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dbc37a8

app-emulation/libpod: version bump to 1.2.0

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.2.0.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 78c20acb7e4..a653916cdbd 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST libpod-1.1.2.tar.gz 7878228 BLAKE2B 
8974949843c6f966d48715df320e47b814e442e374e1393dd5a116c6f7222e9ce29f480205f6a58e213e6cead58e5b4f31fd776865911b22e517607349654d35
 SHA512 
55456fe03da0873d3f6c67ced25dbe98f6a5a14c3da64ab2b4a9c6161c1d727ec8cdfe5414b534531e440e8c86f909449f4026d66898b909924aba1744ec0682
+DIST libpod-1.2.0.tar.gz 7978520 BLAKE2B 
c1be831553ced9795de266886890c36e89f2b6c2012cbe4f36fa49194c3a825abc097af879326e8e1ad7886ea188d60c42fe1dfa1ad46057c5928f3b5c4f7cd4
 SHA512 
16ae8fa8a6e9a15d17f7aebe0842bf41e289cbbe5ea8e997c26b2d3e984d669386022e7d1479ca31e8cab8990ae4e2dc1cf753f010bf9aeb03a34199b1146e89

diff --git a/app-emulation/libpod/libpod-1.2.0.ebuild 
b/app-emulation/libpod/libpod-1.2.0.ebuild
new file mode 100644
index 000..526d4b90cde
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.2.0.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="3bd528e583182b4249f3e6bbd8497a8831d89950"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins test/policy.json policy.json.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   systemd_dounit 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-04-11 Thread Zac Medico
commit: 3d67fa6776b4e150d6726b0508311a57e61df36f
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr 11 21:41:08 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr 11 21:42:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d67fa67

app-emulation/libpod: remove old versions

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest   |   2 -
 app-emulation/libpod/libpod-0.12.1.2.ebuild | 106 -
 app-emulation/libpod/libpod-1.0.1-r1.ebuild | 139 
 app-emulation/libpod/libpod-1.0.1.ebuild| 108 -
 4 files changed, 355 deletions(-)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index ce3196b69d4..78c20acb7e4 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,3 +1 @@
-DIST libpod-0.12.1.2.tar.gz 5987875 BLAKE2B 
11381c53e768c94bfadcb2013a028f64058b0001cd985ef289d1618163225cdf10bd608cff0cd6f7fc1c094497184fc6d0cedea32fde54f3581ebb51eb5eabdd
 SHA512 
9abb46d7880c4577d22b48aed01baeae29662dc3dbbdbc297f1eebe8324fb734d9bac6cd105dc93f7600753874c0fa581142d1b16f7490175cea80b8f62b34ce
-DIST libpod-1.0.1.tar.gz 6088749 BLAKE2B 
64e28c6c7b60e226cae6a302e6e26ca5c2659d3c61910cc6fd2bbceec20485d7f2106d32da0472bc18a08bd611a6f0bf851b5c46066b47613783768c53a4c034
 SHA512 
23515fa3934ba2ec174011362ab1b67c747a7bf3122e606677ed40eb18aad28f79da30d09b6e1d0b74384286ff600fd1441fa4b6424e8bf3e410e867b57d92ef
 DIST libpod-1.1.2.tar.gz 7878228 BLAKE2B 
8974949843c6f966d48715df320e47b814e442e374e1393dd5a116c6f7222e9ce29f480205f6a58e213e6cead58e5b4f31fd776865911b22e517607349654d35
 SHA512 
55456fe03da0873d3f6c67ced25dbe98f6a5a14c3da64ab2b4a9c6161c1d727ec8cdfe5414b534531e440e8c86f909449f4026d66898b909924aba1744ec0682

diff --git a/app-emulation/libpod/libpod-0.12.1.2.ebuild 
b/app-emulation/libpod/libpod-0.12.1.2.ebuild
deleted file mode 100644
index 80dbb5f4f19..000
--- a/app-emulation/libpod/libpod-0.12.1.2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_COMMIT="9551f6bb379d4af56dfb63ddf0f3682e40a6694e"
-EGO_PN="github.com/containers/${PN}"
-
-inherit golang-vcs-snapshot systemd
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/libpod/;
-SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64"
-IUSE="apparmor btrfs ostree selinux"
-REQUIRED_USE="!selinux? ( !ostree )"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-emulation/cri-o-1.13.0
-   app-emulation/runc
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   ostree? (
-   dev-libs/glib:=
-   dev-util/ostree:=
-   )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   sed -e '/^GIT_.*/d' \
-   -e 's/$(GO) build/$(GO) build -v -work -x/' \
-   -e 's/^\(install:.*\) install\.python$/\1/' \
-   -i Makefile || die
-}
-
-src_compile() {
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f hack/ostree_tag.sh ]] || die
-   if use ostree; then
-   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
-   fi
-
-   [[ -f hack/selinux_tag.sh ]] || die
-   if use selinux; then
-   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
-   fi
-
-   env -u LDFLAGS GOPATH="${WORKDIR}/${P}" GOBIN="${WORKDIR}/${P}/bin" \
-   emake all \
-   GIT_BRANCH=master \
-   GIT_BRANCH_CLEAN=master \
-   COMMIT_NO="${EGIT_COMMIT}" \
-  

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-03-13 Thread Zac Medico
commit: c369c88e9ba3e1c18740fa6d705b9a078d67c254
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Mar 13 16:49:11 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Mar 13 16:52:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c369c88e

app-emulation/libpod: version bump to 1.1.2

Reported-by: Dennis Schridde  gmx.net>
Closes: https://bugs.gentoo.org/680228
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.1.2.ebuild | 139 +++
 2 files changed, 140 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 75ea1c1bff5..ce3196b69d4 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-0.12.1.2.tar.gz 5987875 BLAKE2B 
11381c53e768c94bfadcb2013a028f64058b0001cd985ef289d1618163225cdf10bd608cff0cd6f7fc1c094497184fc6d0cedea32fde54f3581ebb51eb5eabdd
 SHA512 
9abb46d7880c4577d22b48aed01baeae29662dc3dbbdbc297f1eebe8324fb734d9bac6cd105dc93f7600753874c0fa581142d1b16f7490175cea80b8f62b34ce
 DIST libpod-1.0.1.tar.gz 6088749 BLAKE2B 
64e28c6c7b60e226cae6a302e6e26ca5c2659d3c61910cc6fd2bbceec20485d7f2106d32da0472bc18a08bd611a6f0bf851b5c46066b47613783768c53a4c034
 SHA512 
23515fa3934ba2ec174011362ab1b67c747a7bf3122e606677ed40eb18aad28f79da30d09b6e1d0b74384286ff600fd1441fa4b6424e8bf3e410e867b57d92ef
+DIST libpod-1.1.2.tar.gz 7878228 BLAKE2B 
8974949843c6f966d48715df320e47b814e442e374e1393dd5a116c6f7222e9ce29f480205f6a58e213e6cead58e5b4f31fd776865911b22e517607349654d35
 SHA512 
55456fe03da0873d3f6c67ced25dbe98f6a5a14c3da64ab2b4a9c6161c1d727ec8cdfe5414b534531e440e8c86f909449f4026d66898b909924aba1744ec0682

diff --git a/app-emulation/libpod/libpod-1.1.2.ebuild 
b/app-emulation/libpod/libpod-1.1.2.ebuild
new file mode 100644
index 000..0d80616d4c5
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.1.2.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="0ad9b6bf2aea4ba37e8c9738feabec61343ba175"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u LDFLAGS -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-02-19 Thread Zac Medico
commit: 08bd18e22f5f1c864831770293596d0dcef36594
Author: Gerhard Bräunlich  disroot  org>
AuthorDate: Tue Feb 19 17:06:22 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Feb 19 19:43:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08bd18e2

app-emulation/libpod: Add rootless useflag

Closes: https://github.com/gentoo/gentoo/pull/11107
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Gerhard Bräunlich  disroot.org>
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/libpod-1.0.1-r1.ebuild | 139 
 app-emulation/libpod/metadata.xml   |   3 +
 2 files changed, 142 insertions(+)

diff --git a/app-emulation/libpod/libpod-1.0.1-r1.ebuild 
b/app-emulation/libpod/libpod-1.0.1-r1.ebuild
new file mode 100644
index 000..a02406b1ca8
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.0.1-r1.ebuild
@@ -0,0 +1,139 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_COMMIT="2c74edd0ac6509d6e533cb4e012e3e3f9e03434d"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u LDFLAGS GOPATH="${WORKDIR}/${P}" GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins test/policy.json policy.json.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   systemd_dounit "${S}"/contrib/varlink/*.service 
"${S}"/contrib/varlink/*.socket
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/podman.logrotated" podman
+
+   keepdir /var/lib/containers
+}
+
+pkg_preinst() {
+   LIBPOD_ROOTLESS_UPGRADE=false
+   if use rootless; then
+   has_version 'app-emulation/libpod[rootless]' || 
LIBPOD_ROOTLESS_UPGRADE=true
+   fi
+}
+
+pkg_postinst() {
+   local want_newline=false
+   if [[ ! ( -e ${EROOT%/*}/etc/containers/policy.json && -e 
${EROOT%/*}/etc/containers/registries.conf ) ]]; then
+   elog "You need to create the following config files:"
+   elog "/etc/containers/registries.conf"
+   elog "/etc/containers/policy.json"
+  

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-02-16 Thread Zac Medico
commit: d799375d0c3bcab66723bdb820c39858ffac7ccc
Author: babykart  gmail  com>
AuthorDate: Sat Feb 16 20:42:00 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb 17 02:43:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d799375d

app-emulation/libpod: version bump to 1.0.1

Closes: https://bugs.gentoo.org/678178
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.0.1.ebuild | 108 +++
 2 files changed, 109 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 42810a9b0f0..75ea1c1bff5 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST libpod-0.12.1.2.tar.gz 5987875 BLAKE2B 
11381c53e768c94bfadcb2013a028f64058b0001cd985ef289d1618163225cdf10bd608cff0cd6f7fc1c094497184fc6d0cedea32fde54f3581ebb51eb5eabdd
 SHA512 
9abb46d7880c4577d22b48aed01baeae29662dc3dbbdbc297f1eebe8324fb734d9bac6cd105dc93f7600753874c0fa581142d1b16f7490175cea80b8f62b34ce
+DIST libpod-1.0.1.tar.gz 6088749 BLAKE2B 
64e28c6c7b60e226cae6a302e6e26ca5c2659d3c61910cc6fd2bbceec20485d7f2106d32da0472bc18a08bd611a6f0bf851b5c46066b47613783768c53a4c034
 SHA512 
23515fa3934ba2ec174011362ab1b67c747a7bf3122e606677ed40eb18aad28f79da30d09b6e1d0b74384286ff600fd1441fa4b6424e8bf3e410e867b57d92ef

diff --git a/app-emulation/libpod/libpod-1.0.1.ebuild 
b/app-emulation/libpod/libpod-1.0.1.ebuild
new file mode 100644
index 000..584d3ba095f
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.0.1.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_COMMIT="2c74edd0ac6509d6e533cb4e012e3e3f9e03434d"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   app-emulation/runc
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u LDFLAGS GOPATH="${WORKDIR}/${P}" GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   systemd_dounit "${S}"/contrib/varlink/*.service 
"${S}"/contrib/varlink/*.socket
+
+   insinto /etc/logrotate.d
+   newins 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/files/, app-emulation/libpod/

2019-01-07 Thread Zac Medico
commit: b07a3c32ff4434204fc1d325497ec166d9c3b0d5
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jan  7 20:09:01 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jan  7 20:10:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07a3c32

app-emulation/libpod: add init script a logrotate config

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/files/podman.initd  | 17 +
 app-emulation/libpod/files/podman.logrotated |  7 +++
 app-emulation/libpod/libpod-0.12.1.2.ebuild  |  7 +++
 3 files changed, 31 insertions(+)

diff --git a/app-emulation/libpod/files/podman.initd 
b/app-emulation/libpod/files/podman.initd
new file mode 100644
index 000..b590be16a1b
--- /dev/null
+++ b/app-emulation/libpod/files/podman.initd
@@ -0,0 +1,17 @@
+#!/sbin/openrc-run
+# Copyright 2015-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+description="Podman Remote API Service"
+LOG_PATH="/var/log/${RC_SVCNAME}"
+RUN_PATH="/run/${RC_SVCNAME}"
+pidfile="${RUN_PATH}/${RC_SVCNAME}.pid"
+command="/usr/bin/podman"
+command_args="--log-level debug varlink -t 0 unix:/run/podman/io.podman"
+command_background="true"
+start_stop_daemon_args="--stdout ${LOG_PATH}/${RC_SVCNAME}.log --stderr 
${LOG_PATH}/${RC_SVCNAME}.log"
+
+start() {
+   checkpath -d "${RUN_PATH}" "${LOG_PATH}"
+   default_start
+}

diff --git a/app-emulation/libpod/files/podman.logrotated 
b/app-emulation/libpod/files/podman.logrotated
new file mode 100644
index 000..b9d723451b0
--- /dev/null
+++ b/app-emulation/libpod/files/podman.logrotated
@@ -0,0 +1,7 @@
+/var/log/podman/podman.log {
+   missingok
+   size 5M
+   rotate 3
+   compress
+   copytruncate
+}

diff --git a/app-emulation/libpod/libpod-0.12.1.2.ebuild 
b/app-emulation/libpod/libpod-0.12.1.2.ebuild
index b3bc6469606..80dbb5f4f19 100644
--- a/app-emulation/libpod/libpod-0.12.1.2.ebuild
+++ b/app-emulation/libpod/libpod-0.12.1.2.ebuild
@@ -96,4 +96,11 @@ src_install() {
 
insinto /etc/containers
newins test/registries.conf registries.conf.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/podman.logrotated" podman
+
+   keepdir /var/lib/containers
 }



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libpod/

2019-01-07 Thread Zac Medico
commit: a6e124e16da79e0d6831151186e844bc9e750945
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun  4 08:25:43 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jan  7 10:16:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e124e1

app-emulation/libpod: new package

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest   |  1 +
 app-emulation/libpod/libpod-0.12.1.2.ebuild | 99 +
 app-emulation/libpod/metadata.xml   | 29 +
 3 files changed, 129 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
new file mode 100644
index 000..42810a9b0f0
--- /dev/null
+++ b/app-emulation/libpod/Manifest
@@ -0,0 +1 @@
+DIST libpod-0.12.1.2.tar.gz 5987875 BLAKE2B 
11381c53e768c94bfadcb2013a028f64058b0001cd985ef289d1618163225cdf10bd608cff0cd6f7fc1c094497184fc6d0cedea32fde54f3581ebb51eb5eabdd
 SHA512 
9abb46d7880c4577d22b48aed01baeae29662dc3dbbdbc297f1eebe8324fb734d9bac6cd105dc93f7600753874c0fa581142d1b16f7490175cea80b8f62b34ce

diff --git a/app-emulation/libpod/libpod-0.12.1.2.ebuild 
b/app-emulation/libpod/libpod-0.12.1.2.ebuild
new file mode 100644
index 000..b3bc6469606
--- /dev/null
+++ b/app-emulation/libpod/libpod-0.12.1.2.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_COMMIT="9551f6bb379d4af56dfb63ddf0f3682e40a6694e"
+EGO_PN="github.com/containers/${PN}"
+
+inherit golang-vcs-snapshot systemd
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/cri-o-1.13.0
+   app-emulation/runc
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u LDFLAGS GOPATH="${WORKDIR}/${P}" GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${D}${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+}

diff --git a/app-emulation/libpod/metadata.xml 
b/app-emulation/libpod/metadata.xml
new file mode 100644
index 000..1c5655b32d7
--- /dev/null
+++ b/app-emulation/libpod/metadata.xml
@@ -0,0 +1,29 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   libpod provides a library for applications looking to use the
+   Container Pod concept popularized by Kubernetes. libpod