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/buildah/
Date: Sat, 01 Aug 2020 21:10:43
Message-Id: 1596316232.a0abae16fc32d917fa93875172fdb38de6bec0bd.zmedico@gentoo
1 commit: a0abae16fc32d917fa93875172fdb38de6bec0bd
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 21:05:33 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 21:10:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0abae16
7
8 app-emulation/buildah: Bump to version 1.15.1
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-emulation/buildah/Manifest | 1 +
14 app-emulation/buildah/buildah-1.15.1.ebuild | 47 +++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/app-emulation/buildah/Manifest b/app-emulation/buildah/Manifest
18 index 06d83da3468..b63afc5af52 100644
19 --- a/app-emulation/buildah/Manifest
20 +++ b/app-emulation/buildah/Manifest
21 @@ -1,2 +1,3 @@
22 DIST buildah-1.14.10.tar.gz 10660400 BLAKE2B 5ee35cd90d652da8b30a01ae34aa73d68b2c531ac72017be87f6381717e1a59da6a9eccfcbab3b046a2a1a2b1c3e66e404ff6fab85a6d54a55320c6a6a405dca SHA512 5e9e1fd0f2c75b9846c1d457cfec3bf546b7e0683ea27607479c6ef5dacc8fd977ce57a885ef5ba14db0876ee47ffd8d3c54e349fe3375743a8bf70618c2c057
23 DIST buildah-1.14.8.tar.gz 10660799 BLAKE2B b32375900c3509b88ae37366f1d2e2b593d0705cabf74c305bf0838f8e22ef9805e37b6bbe1a054d9fc3e48fa5c086fd0524362d570742eec846fb4b079c74d5 SHA512 8cc64d8262ffe3727f4c32051f4f3456ab0b54f221ce6d144a301b732170eb487dc356f4e056c804ca9806172e60920239b62800a0aac2dc5de83cd656ea97f3
24 +DIST buildah-1.15.1.tar.gz 10344892 BLAKE2B e84f8d245536f8864f057f576d92c218420ac975fabfbdc8b6bf591c2ef43494d49fe9095320a07de450f2ea64d046aa4ad680f08be80210e0dce1ffa874a286 SHA512 61cbe91867dc664a9e76b367e0f99bf5c797c68dda7182ed43c6a6a5a72a0f0519e45db6b2746b26933d829834757cc93bdbd30c62ce6a947ee546dbc1f930be
25
26 diff --git a/app-emulation/buildah/buildah-1.15.1.ebuild b/app-emulation/buildah/buildah-1.15.1.ebuild
27 new file mode 100644
28 index 00000000000..dc0c95b6973
29 --- /dev/null
30 +++ b/app-emulation/buildah/buildah-1.15.1.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit bash-completion-r1 go-module
37 +
38 +KEYWORDS="~amd64"
39 +DESCRIPTION="A tool that facilitates building OCI images"
40 +HOMEPAGE="https://github.com/containers/buildah"
41 +LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
42 +SLOT="0"
43 +IUSE="selinux"
44 +EGIT_COMMIT="v${PV}"
45 +GIT_COMMIT=c967e88ef6
46 +SRC_URI="https://github.com/containers/buildah/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
47 +RDEPEND="app-crypt/gpgme:=
48 + app-emulation/skopeo
49 + dev-libs/libgpg-error:=
50 + dev-libs/libassuan:=
51 + sys-fs/lvm2:=
52 + sys-libs/libseccomp:=
53 + selinux? ( sys-libs/libselinux:= )"
54 +DEPEND="${RDEPEND}"
55 +RESTRICT+=" test"
56 +
57 +src_prepare() {
58 + default
59 + [[ -f selinux_tag.sh ]] || die
60 + use selinux || { echo -e "#!/bin/sh\ntrue" > \
61 + selinux_tag.sh || die; }
62 +}
63 +
64 +src_compile() {
65 + emake GIT_COMMIT=${GIT_COMMIT} all
66 +}
67 +
68 +src_install() {
69 + dodoc CHANGELOG.md CONTRIBUTING.md README.md install.md troubleshooting.md
70 + doman docs/*.1
71 + dodoc -r docs/tutorials
72 + dobin ${PN} imgtype
73 + dobashcomp contrib/completions/bash/buildah
74 +}
75 +
76 +src_test() {
77 + emake test-unit
78 +}