commit:     4b2fa0b78acea9c3eb0591b9cc87a59e10fdda69
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 27 21:13:12 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 22:42:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2fa0b7

app-containers/earthly: drop old 0.8.11

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-containers/earthly/Manifest              |  2 -
 app-containers/earthly/earthly-0.8.11.ebuild | 77 ----------------------------
 2 files changed, 79 deletions(-)

diff --git a/app-containers/earthly/Manifest b/app-containers/earthly/Manifest
index 44633e74dbdf..b0276f55d494 100644
--- a/app-containers/earthly/Manifest
+++ b/app-containers/earthly/Manifest
@@ -1,5 +1,3 @@
-DIST earthly-0.8.11-deps.tar.zst 180367967 BLAKE2B 
3d321cc6177d4e113662b1ed99b190dd2b344c6295a22d21b278e3a6620c1669eea3572ad6f1300335e23e752b8b029808411604bfef5cdd53c0e353cac7cc31
 SHA512 
b238ffd6996f17ce1f4e87ae3e4705d84cab1161143f06074cedd9bbf89a2feecbace3efe5b4a827471388ff80eb265febc4c59ee2acca9ebf02a8a301974702
-DIST earthly-0.8.11.tar.gz 8089764 BLAKE2B 
2d110482b2643498e0fd8ee03dba5a2d58d9a8d3ceea9507582184e3fe59ae9851fec1fbd16c636b23d2e7044a8375fc6fc3692431f637a043e71c2c2bab572f
 SHA512 
fd92f6a86efd8576c1c75367f4b6e211c04615aaf5504f86192f85b751c628801439c22925797e0b2b775fa02b555b200a728085818e1d49d09f98847e5a99c0
 DIST earthly-0.8.12-deps.tar.xz 163755972 BLAKE2B 
6d5e7e2d157b54818bebca7cc0b57be23be4581660bae8002bb90983cc9478d9d05ebea3dd102123ced6c1f1a8b94f93ca0868c040defa1fb5f0137f901b1c50
 SHA512 
bcfc4eecfceefcf5677f145475406fe4fef9d3a70c177ea657f2f0eec7227c752fcc01b129c001fbb8d9fa6ba934a6425b0fb0957b6812d2f751e7d3b99dd0a2
 DIST earthly-0.8.12.tar.gz 8090651 BLAKE2B 
ce916a50b23bc5567b4174ad88a5a52b9c728b4ee215239f46680fe5574f0cabe353d5a336e395f7eec42c86a726bb0d0da4b5204dcc9654c76a8a8cd3366fb4
 SHA512 
7cc62cc3af6aef039f8059e04564a181dd9b497cb51f15b6a49f2aad4a975147aa30d9109eb1c33cfc74a6f354eae77904d5c0e15e63172cb7ee20874b9bc05e
 DIST earthly-0.8.13-deps.tar.xz 163750220 BLAKE2B 
995ed748f99b7d4c4ca90cdd1964c295270963e55462bfa3bdd830209a90303d67c91fed66e7d52984993ef58b1d060e140694fdc8931ca2181dd88701d8f6dd
 SHA512 
ab3ee4fef9a87dab9009ffd4e31d00a256c8ad88096c8573a5a2fb782079392415752024821240da60549d260c9dcfe3d6f1457fb3fbc8cc8a1f2602bb875aee

diff --git a/app-containers/earthly/earthly-0.8.11.ebuild 
b/app-containers/earthly/earthly-0.8.11.ebuild
deleted file mode 100644
index 19f49e622218..000000000000
--- a/app-containers/earthly/earthly-0.8.11.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Git commit SHA is needed at runtime by earthly to pull and bootstrap images.
-if [[ "${PV}" == "0.8.11" ]] ; then
-       COMMIT_SHA="5caed354538447b7de4d85b59827709da23b6e49"
-else
-       die 'Could not detect "COMMIT_SHA", please update the ebuild.'
-fi
-
-inherit go-module unpacker
-
-DESCRIPTION="Build automation tool that executes in containers"
-HOMEPAGE="https://earthly.dev/
-       https://github.com/earthly/earthly/";
-SRC_URI="
-       https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz
-               -> ${P}.tar.gz
-       https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.zst
-"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-       || (
-               app-containers/docker
-               app-containers/podman
-       )
-"
-
-DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
-
-src_unpack() {
-       unpacker "${P}-deps.tar.zst"
-
-       go-module_src_unpack
-}
-
-src_compile() {
-       local -r 
go_tags="dfrunmount,dfrunsecurity,dfsecrets,dfssh,dfrunnetwork,dfheredoc,forceposix"
-       local -r go_ldflags="
-               -X main.DefaultBuildkitdImage=docker.io/earthly/buildkitd:v${PV}
-               -X main.GitSha=${COMMIT_SHA}
-               -X main.Version=v${PV}
-       "
-       local -a -r go_buildargs=(
-               -tags "${go_tags}"
-               -ldflags "${go_ldflags}"
-               -o ./bin/
-       )
-       ego build "${go_buildargs[@]}" ./cmd/...
-}
-
-src_install() {
-       exeinto /usr/bin
-       doexe bin/earthly
-       newexe bin/debugger earthly-debugger
-
-       einstalldocs
-}
-
-pkg_postinst() {
-       if has_version "app-containers/podman" ; then
-               ewarn "Podman is supported but not recommended."
-               ewarn "If issues arise, then please try running earthly with 
docker."
-       fi
-
-       if has_version "app-containers/podman[rootless]" ; then
-               ewarn "Running podman in rootless mode is not supported because"
-               ewarn "earthly/dind and earthly/buildkit require privileged 
access."
-               ewarn "For more info see: 
https://docs.earthly.dev/docs/guides/podman/";
-       fi
-}

Reply via email to