public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/buildah/
Date: Sat,  1 Aug 2020 20:25:44 +0000 (UTC)	[thread overview]
Message-ID: <1596313537.1ffc00db7574a8dce54dc749b0599bcbdb7ed98f.zmedico@gentoo> (raw)

commit:     1ffc00db7574a8dce54dc749b0599bcbdb7ed98f
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  1 19:43:54 2020 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Aug  1 20:25:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffc00db

app-emulation/buildah: Bump to version 1.14.10

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

 app-emulation/buildah/Manifest               |  1 +
 app-emulation/buildah/buildah-1.14.10.ebuild | 47 ++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/app-emulation/buildah/Manifest b/app-emulation/buildah/Manifest
index 0dcb0f0f58d..5a1bf9c1e88 100644
--- a/app-emulation/buildah/Manifest
+++ b/app-emulation/buildah/Manifest
@@ -1,3 +1,4 @@
+DIST buildah-1.14.10.tar.gz 10660400 BLAKE2B 5ee35cd90d652da8b30a01ae34aa73d68b2c531ac72017be87f6381717e1a59da6a9eccfcbab3b046a2a1a2b1c3e66e404ff6fab85a6d54a55320c6a6a405dca SHA512 5e9e1fd0f2c75b9846c1d457cfec3bf546b7e0683ea27607479c6ef5dacc8fd977ce57a885ef5ba14db0876ee47ffd8d3c54e349fe3375743a8bf70618c2c057
 DIST buildah-1.14.5.tar.gz 11023227 BLAKE2B ebd6cecfc6fa4635ae662dddc722a350fd0b9c87c3d4d67f8010d5ea070270da4f4cd5759612b84d55ecd27b90904950b96471d75057bc6b7d45989312ebec8e SHA512 759d2ba26af43d6ff7ee891f88114a0cde6307439f7837343bfa6edba2473805f0f2e584264e8be01b9f0af07b1fd323243af5feeb9535ada4475ce53a980ff6
 DIST buildah-1.14.6.tar.gz 11104320 BLAKE2B fa618e095523e853454170504aa2747d29e8bec16282eb4bdcf9d8ddeccceeb7ad706d0d127dc621ef0840136737b328c31d9b6b2f9bd1b734beb6d24a15bea3 SHA512 869addbd41c115ca92eab30133c76cd0d449184e95f3b64fa57ad84f50834e6f6189bd1a7e4871aba270b96bf69192ff00da7f0e086439c811c5093342ac14d2
 DIST buildah-1.14.8.tar.gz 10660799 BLAKE2B b32375900c3509b88ae37366f1d2e2b593d0705cabf74c305bf0838f8e22ef9805e37b6bbe1a054d9fc3e48fa5c086fd0524362d570742eec846fb4b079c74d5 SHA512 8cc64d8262ffe3727f4c32051f4f3456ab0b54f221ce6d144a301b732170eb487dc356f4e056c804ca9806172e60920239b62800a0aac2dc5de83cd656ea97f3

diff --git a/app-emulation/buildah/buildah-1.14.10.ebuild b/app-emulation/buildah/buildah-1.14.10.ebuild
new file mode 100644
index 00000000000..7439b8eff82
--- /dev/null
+++ b/app-emulation/buildah/buildah-1.14.10.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module
+
+KEYWORDS="~amd64"
+DESCRIPTION="A tool that facilitates building OCI images"
+HOMEPAGE="https://github.com/containers/buildah"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+IUSE="selinux"
+EGIT_COMMIT="v${PV}"
+GIT_COMMIT=42ef63f0
+SRC_URI="https://github.com/containers/buildah/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+RDEPEND="app-crypt/gpgme:=
+	app-emulation/skopeo
+	dev-libs/libgpg-error:=
+	dev-libs/libassuan:=
+	sys-fs/lvm2:=
+	sys-libs/libseccomp:=
+	selinux? ( sys-libs/libselinux:= )"
+DEPEND="${RDEPEND}"
+RESTRICT+=" test"
+
+src_prepare() {
+	default
+	[[ -f selinux_tag.sh ]] || die
+	use selinux || { echo -e "#!/bin/sh\ntrue" > \
+		selinux_tag.sh || die; }
+}
+
+src_compile() {
+	emake GIT_COMMIT=${GIT_COMMIT} all
+}
+
+src_install() {
+	dodoc CHANGELOG.md CONTRIBUTING.md README.md install.md troubleshooting.md
+	doman docs/*.1
+	dodoc -r docs/tutorials
+	dobin ${PN} imgtype
+	dobashcomp contrib/completions/bash/buildah
+}
+
+src_test() {
+	emake test-unit
+}


             reply	other threads:[~2020-08-01 20:26 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-01 20:25 Zac Medico [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-11-17  2:16 [gentoo-commits] repo/gentoo:master commit in: app-emulation/buildah/ Sam James
2021-11-14  8:38 Sam James
2021-10-13  4:57 Zac Medico
2021-06-14 17:41 Zac Medico
2021-06-11 19:28 William Hubbs
2021-05-26 20:04 William Hubbs
2021-04-26 23:46 Zac Medico
2021-04-26 23:46 Zac Medico
2021-02-25 21:22 Zac Medico
2021-02-25 21:17 Zac Medico
2020-09-12  6:08 Zac Medico
2020-08-29 23:04 Zac Medico
2020-08-29 23:04 Zac Medico
2020-08-29 22:45 Sam James
2020-08-01 21:10 Zac Medico
2020-08-01 20:25 Zac Medico
2020-04-16 20:18 William Hubbs
2020-04-03 16:20 William Hubbs
2020-04-02  0:23 Zac Medico
2020-04-02  0:23 Zac Medico
2020-03-26 15:54 William Hubbs
2020-03-20  4:13 Zac Medico
2020-03-05  5:27 Zac Medico
2020-02-08  3:29 Zac Medico
2020-01-15 20:33 Zac Medico
2019-12-13 22:00 Zac Medico
2019-12-13 21:52 Zac Medico
2019-11-26  4:18 Zac Medico
2019-11-26  3:29 Zac Medico
2019-11-16 10:10 Zac Medico
2019-11-15 21:27 Zac Medico
2019-10-18  4:59 Zac Medico
2019-10-18  4:45 Zac Medico
2019-09-19  3:17 Zac Medico
2019-09-19  3:17 Zac Medico
2019-09-13 17:08 Zac Medico
2019-09-12 20:42 Zac Medico
2019-09-05 18:01 Zac Medico
2019-08-08 19:45 Zac Medico
2019-08-08 19:42 Zac Medico
2019-08-02 19:32 Zac Medico
2019-07-21  5:19 Zac Medico
2019-07-21  5:02 Zac Medico
2019-06-16 21:25 Zac Medico
2019-06-16 21:17 Zac Medico
2019-06-16 21:07 Zac Medico
2019-06-04 16:53 Zac Medico
2019-06-04 16:46 Zac Medico
2019-06-04 16:43 Zac Medico
2019-05-09 17:06 Zac Medico
2019-04-17 17:30 Zac Medico
2019-04-17 17:27 Zac Medico
2019-03-13 16:32 Zac Medico
2019-02-22 19:05 Zac Medico
2019-02-22 18:29 Zac Medico
2019-02-02  9:25 Zac Medico
2018-11-28  3:57 Zac Medico
2018-11-04  4:49 Zac Medico
2018-08-29  2:05 Zac Medico
2018-08-07  1:08 Zac Medico
2018-08-07  1:08 Zac Medico
2018-07-24  3:57 Zac Medico
2018-06-28 19:20 Zac Medico
2018-06-19 20:50 Zac Medico
2018-06-18  4:53 Zac Medico
2018-06-18  4:43 Zac Medico
2018-05-15  7:07 Zac Medico
2018-05-15  3:05 Zac Medico

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1596313537.1ffc00db7574a8dce54dc749b0599bcbdb7ed98f.zmedico@gentoo \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox