commit:     ec76436920f17dce2af4d7273483aec664af8d4a
Author:     Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Wed Jul 23 11:54:42 2025 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Jul 24 00:30:33 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec764369

app-containers/buildah: remove 1.39.4

Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
Closes: https://github.com/gentoo/gentoo/pull/43118
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-containers/buildah/Manifest              |   1 -
 app-containers/buildah/buildah-1.39.4.ebuild | 107 ---------------------------
 2 files changed, 108 deletions(-)

diff --git a/app-containers/buildah/Manifest b/app-containers/buildah/Manifest
index cf9070739271..f5593f73ce69 100644
--- a/app-containers/buildah/Manifest
+++ b/app-containers/buildah/Manifest
@@ -1,4 +1,3 @@
-DIST buildah-1.39.4.tar.gz 18657348 BLAKE2B 
470767805ea5d2140da092aaaf0d55a78d32d1bc1bb14f3a1e6da0a751f8618b29e7d01f25c745234cee734ef4299ad442ea42e1326e186cdd9e6834152c9571
 SHA512 
c721660f94010a0dc8b01502db565b486c53962ee1933e03dd2297cf5d30ac9edef6c92491f41c8c61bee946302e7a39ecff55b2ad3e34ed649222c9655262c2
 DIST buildah-1.40.0.tar.gz 12321438 BLAKE2B 
3d923ddd249fd93476a8e88b72b1989b4bead9b282657d372c2aa04da0d787ee8e807cb74bface8a165ae0282ead791eb3da20a73751b63e3cfe7ee6ab34bd94
 SHA512 
bb96d04a17ab5a77e5d984dca369e3890131044c505ae3b030d95ffd66378df22da33315a50c9e500e783345ded23ebacdfa0965002a18e1d929c5fa3ce39311
 DIST buildah-1.40.1.tar.gz 12329760 BLAKE2B 
dd5be8e27be8c37b211dd3009d8533f44d234ef6bc8f5405a258931b51f0b79a1b5dc456e3e0269ca9b4c4e981c226c97ff51876ae2f1836bc16c974838f5615
 SHA512 
6b37b6cc5fa3d7972800cfaef5919df8ee6c9220e8635850ee9d8356645b08afa4252d688f4316b3265e5f6aef6fa0647fb4f7602b7add292fc8b56a74c4fa1f
 DIST buildah-1.41.0.tar.gz 11971274 BLAKE2B 
af197271bf519f84d1e7d08cbaab6a4aef3d1bdc234eaf8127f33e1fdd0c3f66c09262bf1aef9776d8d3fdfd853ae23cccd4ae6fcd06b2f86b7769d82f71617a
 SHA512 
50be5c400a5063c12d5b97dc285d4969e50e88fa21de537f1c2317df36a1ccabf26ba70ece9e3e5c891e76ee8d85ab946029dc240de40ec88c86ad678e963823

diff --git a/app-containers/buildah/buildah-1.39.4.ebuild 
b/app-containers/buildah/buildah-1.39.4.ebuild
deleted file mode 100644
index 454cd9192f73..000000000000
--- a/app-containers/buildah/buildah-1.39.4.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module linux-info toolchain-funcs
-
-DESCRIPTION="A tool that facilitates building OCI images"
-HOMEPAGE="https://github.com/containers/buildah";
-
-# main pkg
-LICENSE="Apache-2.0"
-# deps
-LICENSE+=" BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-
-SLOT="0"
-IUSE="apparmor btrfs +seccomp systemd test"
-RESTRICT="test"
-DOCS=(
-       "CHANGELOG.md"
-       "troubleshooting.md"
-       "docs/tutorials"
-)
-
-if [[ ${PV} == 9999* ]]; then
-       inherit git-r3
-       EGIT_REPO_URI="https://github.com/containers/buildah.git";
-else
-       SRC_URI="https://github.com/containers/buildah/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-       KEYWORDS="~amd64 ~arm64"
-fi
-
-RDEPEND="
-       systemd? ( sys-apps/systemd )
-       btrfs? ( sys-fs/btrfs-progs )
-       seccomp? ( sys-libs/libseccomp:= )
-       apparmor? ( sys-libs/libapparmor:= )
-       >=app-containers/containers-common-0.58.0-r1
-       app-crypt/gpgme:=
-       dev-libs/libgpg-error:=
-       dev-libs/libassuan:=
-       sys-apps/shadow:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-go/go-md2man"
-
-pkg_pretend() {
-       local CONFIG_CHECK=""
-       use btrfs && CONFIG_CHECK+=" ~BTRFS_FS"
-       check_extra_config
-
-       linux_config_exists || ewarn "Cannot determine configuration of your 
kernel."
-}
-
-src_prepare() {
-       default
-
-       # ensure all  necessary files are there
-       local file
-       for file in docs/Makefile hack/libsubid_tag.sh hack/apparmor_tag.sh \
-               hack/systemd_tag.sh btrfs_installed_tag.sh btrfs_tag.sh; do
-               [[ -f "${file}" ]] || die
-       done
-
-       sed -i -e "s|/usr/local|/usr|g" Makefile docs/Makefile || die
-       echo -e '#!/usr/bin/env bash\necho libsubid' > hack/libsubid_tag.sh || 
die
-
-       cat <<-EOF > hack/apparmor_tag.sh || die
-       #!/usr/bin/env bash
-       $(usex apparmor 'echo apparmor' echo)
-       EOF
-
-       use seccomp || eapply "${FILESDIR}/${PN}-1.37.5-disable-seccomp.patch"
-
-       cat <<-EOF > hack/systemd_tag.sh || die
-       #!/usr/bin/env bash
-       $(usex systemd 'echo systemd' echo)
-       EOF
-
-       echo -e "#!/usr/bin/env bash\n echo" > btrfs_installed_tag.sh || die
-       cat <<-EOF > btrfs_tag.sh || die
-       #!/usr/bin/env bash
-       $(usex btrfs echo 'echo exclude_graphdriver_btrfs btrfs_noversion')
-       EOF
-
-       use test || eapply "${FILESDIR}/${PN}-1.38.0-disable-tests.patch"
-}
-
-src_compile() {
-       # For non-live versions, prevent git operations which causes sandbox 
violations
-       # https://github.com/gentoo/gentoo/pull/33531#issuecomment-1786107493
-       [[ ${PV} != 9999* ]] && export COMMIT_NO="" GIT_COMMIT=""
-
-       tc-export AS LD STRIP
-       export GOMD2MAN="$(command -v go-md2man)"
-       export SELINUXOPT=
-       default
-}
-
-src_test() {
-       emake test-unit
-}
-
-src_install() {
-       emake DESTDIR="${ED}" SELINUXOPT= install install.completions
-       einstalldocs
-}

Reply via email to