commit: 77fdd0a410fd1427fa6229672145a9df39758091
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Sep 4 17:49:42 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 24 07:01:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fdd0a4
app-portage/pgo: remove live ebuild
Remove live ebuild since upstream wasn't updated for a couple of years.
I think it makes no sense to keep these ebuilds, especially when the
non-live ebuild is already at HEAD.
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-portage/pgo/pgo-9999.ebuild | 27 ---------------------------
1 file changed, 27 deletions(-)
diff --git a/app-portage/pgo/pgo-9999.ebuild b/app-portage/pgo/pgo-9999.ebuild
deleted file mode 100644
index e3a6873088bd..000000000000
--- a/app-portage/pgo/pgo-9999.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit go-module
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/arzano/pgo"
-else
- SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="A command line interface for packages.gentoo.org"
-HOMEPAGE="https://github.com/arzano/pgo"
-LICENSE="BSD-2"
-SLOT="0"
-
-src_compile() {
- env GOBIN="${S}/bin" go build -mod=vendor || die "compile failed"
-}
-
-src_install() {
- dobin pgo
-}