Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/skopeo/
Date: Sun, 09 Feb 2020 01:59:05
Message-Id: 1581213464.18a9c2e82132bf50d9603a012e2889a759651691.zmedico@gentoo
1 commit: 18a9c2e82132bf50d9603a012e2889a759651691
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 9 01:57:44 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 01:57:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a9c2e8
7
8 app-emulation/skopeo: Bump to version 0.1.41
9
10 Package-Manager: Portage-2.3.88, Repoman-2.3.20
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-emulation/skopeo/Manifest | 1 +
14 app-emulation/skopeo/skopeo-0.1.41.ebuild | 52 +++++++++++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/app-emulation/skopeo/Manifest b/app-emulation/skopeo/Manifest
18 index 01fc9d0acf5..fe0c8471412 100644
19 --- a/app-emulation/skopeo/Manifest
20 +++ b/app-emulation/skopeo/Manifest
21 @@ -1,3 +1,4 @@
22 DIST containers-storage-1.14.0-vfs-user-xattrs.patch 14835 BLAKE2B 99c35933dcb25385ee83b80cf282c11c738d0e4d91216cc08a50522f6caa9bca5938299412908f16df404f99e80616a10b4c02c0ebc38240a987830ddaf15008 SHA512 62c7ed49728bd12b5706f59b0d4af3b18d90e8cfc2b06e681f84fe3f5d3e0cd5c0317147109c4e3ec4fec26f82c269af3c9813e47339ce102e4e97400b74627d
23 DIST skopeo-0.1.39.tar.gz 3850036 BLAKE2B e635be475f22cc25ab98e446424f4a6b0babe34f827a73f9c9c1533db782490e9af94e759ac78fbeeec1c0e1fa42eef9d09fb4e7ff1f4df654f65fe4c1a9f7b0 SHA512 c4aadc40f9d637c628cd96c204b3e9bc3a928c145521bed2e5046508fc936ff99442dda8b4a4cdd85c4d04e64a9ccee5ea8d563c6ebf4e6020d50d96b921716c
24 DIST skopeo-0.1.40.tar.gz 3907911 BLAKE2B 0a9ebcc9662036b1595149f0d19a46c0565b115d37b22c6410041eef3e6755b20561439596f1033dd6ce2c78a4948e358b2518003729873d5ab8ce9a7bec082c SHA512 161edb8afa961e48e314cf70a4fcebd971a45a50fc11eab6ec751ba4eb05a8be011d16b83c4ed1fa9d6336846da5f518da006d4476ee4e29a160c629820773d3
25 +DIST skopeo-0.1.41.tar.gz 4692408 BLAKE2B d5e99be0cb478065f1478beda355abc11c8f13ad8446251048502da1b1af38d407ec46d284e59d2018af5d1ca6a953ad6156a306e9bc1acbdb22b447fe17a59f SHA512 924af178eb9621395cfffcf51aa072886dc8c20746bce1599a503df8c54794e34184a1fc6fd9582b889c7c8efecf8cf192797bc8e208b90c71cca31bb970d8e9
26
27 diff --git a/app-emulation/skopeo/skopeo-0.1.41.ebuild b/app-emulation/skopeo/skopeo-0.1.41.ebuild
28 new file mode 100644
29 index 00000000000..cc09b12134e
30 --- /dev/null
31 +++ b/app-emulation/skopeo/skopeo-0.1.41.ebuild
32 @@ -0,0 +1,52 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +COMMIT=7d080ca
38 +inherit go-module bash-completion-r1
39 +
40 +DESCRIPTION="Command line utility foroperations on container images and image repositories"
41 +HOMEPAGE="https://github.com/containers/skopeo"
42 +SRC_URI="https://github.com/containers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:=
50 + >=dev-libs/libassuan-2.4.3:=
51 + dev-libs/libgpg-error:=
52 + >=sys-fs/btrfs-progs-4.0.1
53 + >=sys-fs/lvm2-2.02.145:="
54 +DEPEND="${COMMON_DEPEND}
55 + dev-go/go-md2man"
56 +RDEPEND="${COMMON_DEPEND}"
57 +
58 +RESTRICT="test"
59 +
60 +src_compile() {
61 + local BUILDTAGS="containers_image_ostree_stub"
62 + set -- env -u GOCACHE -u XDG_CACHE_HOME \
63 + go build -mod=vendor -ldflags "-X main.gitCommit=${COMMIT}" \
64 + -gcflags "${GOGCFLAGS}" -tags "${BUILDTAGS}" \
65 + -o skopeo ./cmd/skopeo
66 + echo "$@"
67 + "$@" || die
68 + cd docs || die
69 + for f in *.1.md; do
70 + go-md2man -in ${f} -out ${f%%.md} || die
71 + done
72 +}
73 +
74 +src_install() {
75 + dobin skopeo
76 + doman docs/*.1
77 + dobashcomp completions/bash/skopeo
78 + insinto /etc/containers
79 + newins default-policy.json policy.json
80 + insinto /etc/containers/registries.d
81 + doins default.yaml
82 + keepdir /var/lib/atomic/sigstore
83 + einstalldocs
84 +}