commit:     d9956a32b148bc68f843bbb62685c5eb752f82f3
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat May  7 16:21:51 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat May  7 16:22:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9956a32

app-containers/skopeo: add 1.8.0

Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-containers/skopeo/Manifest            |  1 +
 app-containers/skopeo/skopeo-1.8.0.ebuild | 52 +++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/app-containers/skopeo/Manifest b/app-containers/skopeo/Manifest
index 1d517d2f9311..031ef59dd127 100644
--- a/app-containers/skopeo/Manifest
+++ b/app-containers/skopeo/Manifest
@@ -1,2 +1,3 @@
 DIST skopeo-1.5.1.tar.gz 5636533 BLAKE2B 
7f0e86cdee5c3250ec1280d7e71554ac2f8ad96ababe0e81dfabc00e8c128a13fc0c9c561b7a9be389d7386e9f664b95118bd2122612b9c2e8844db49769c03c
 SHA512 
3f8c730eaa739bf2a29b82d3b04aa4eee1c09f957b61964fc8c48e59d1537bcb87b5bdf9c18fa48f9d36cf2b7ede3a1448918a20b5a3167f6ce09881a6cd3dde
 DIST skopeo-1.7.0.tar.gz 6542347 BLAKE2B 
990ad594df9483ad114debeb2882ed3976306d69983ae3d91d807e2654583e7a6599ddf50152df9a937c1c64c1e5a8abb6ed83433036e7efd4ef7e911f99c191
 SHA512 
7d17f98e86677150fb2ddba9edae18d8b1ac8f06fba575268e6ba54c60f7b371b5e5a9eab1a4fe19da6c7e85eb79c1eef169ad2a39eff979130ee8d141bd8d6b
+DIST skopeo-1.8.0.tar.gz 6577667 BLAKE2B 
21565736a13d2fcce2576fcc1ff522e81b74aff6c18058f4c994e4f0fc12efa38706ba4c07bbe35abd7e339d9080783f766b68325b01cba90c3cd82f19470aec
 SHA512 
697242244e533b597f481005754301efed8581018cdc297e071fa24347301ddf6111d1f1d3ccc6e87e3e5a9ea606e9c6b40c47bf69d2df6b44336fb260f546de

diff --git a/app-containers/skopeo/skopeo-1.8.0.ebuild 
b/app-containers/skopeo/skopeo-1.8.0.ebuild
new file mode 100644
index 000000000000..c3dcc4973b2a
--- /dev/null
+++ b/app-containers/skopeo/skopeo-1.8.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+COMMIT=37727a45f96ac208785b606f7772d609bf50dbc4
+inherit go-module bash-completion-r1
+
+DESCRIPTION="Command line utility foroperations on container images and image 
repositories"
+HOMEPAGE="https://github.com/containers/skopeo";
+SRC_URI="https://github.com/containers/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="btrfs"
+
+COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:=
+       >=dev-libs/libassuan-2.4.3:=
+       dev-libs/libgpg-error:=
+       btrfs? ( >=sys-fs/btrfs-progs-4.0.1 )
+       >=sys-fs/lvm2-2.02.145:="
+DEPEND="${COMMON_DEPEND}
+       dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+RESTRICT+=" test"
+
+src_compile() {
+       local BUILDTAGS
+       BUILDTAGS="containers_image_ostree_stub $(usex btrfs "" 
exclude_graphdriver_btrfs)"
+       set -- go build -mod=vendor -ldflags "-X main.gitCommit=${COMMIT}" \
+               -gcflags "${GOGCFLAGS}" -tags "${BUILDTAGS}" \
+               -o skopeo ./cmd/skopeo
+       echo "$@"
+       "$@" || die
+       cd docs || die
+       for f in *.1.md; do
+               go-md2man -in ${f} -out ${f%%.md} || die
+       done
+}
+
+src_install() {
+       dobin skopeo
+       doman docs/*.1
+       dobashcomp completions/bash/skopeo
+       insinto /etc/containers
+       newins default-policy.json policy.json
+       insinto /etc/containers/registries.d
+       doins default.yaml
+       keepdir /var/lib/atomic/sigstore
+       einstalldocs
+}

Reply via email to