diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-09-04 19:49:42 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-09-24 10:01:15 +0300 |
commit | 77fdd0a410fd1427fa6229672145a9df39758091 (patch) | |
tree | 4080f1c18144388152fcdd7edd4bd5383d35702e /app-portage | |
parent | app-misc/figlet: remove live ebuild (diff) | |
download | gentoo-77fdd0a410fd1427fa6229672145a9df39758091.tar.gz gentoo-77fdd0a410fd1427fa6229672145a9df39758091.tar.bz2 gentoo-77fdd0a410fd1427fa6229672145a9df39758091.zip |
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@levelnine.at>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/pgo/pgo-9999.ebuild | 27 |
1 files changed, 0 insertions, 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 -} |