summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-04-08 20:43:35 +0200
committerMichał Górny <mgorny@gentoo.org>2023-04-08 20:45:17 +0200
commit107687026690a138363ab05a528d10d3e2f42df6 (patch)
tree4525478843ef3b2c5a41654d2330c820c254276a /app-portage/gentoopm
parentapp-portage/eix: Remove old (diff)
downloadgentoo-107687026690a138363ab05a528d10d3e2f42df6.tar.gz
gentoo-107687026690a138363ab05a528d10d3e2f42df6.tar.bz2
gentoo-107687026690a138363ab05a528d10d3e2f42df6.zip
app-portage/gentoopm: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage/gentoopm')
-rw-r--r--app-portage/gentoopm/Manifest1
-rw-r--r--app-portage/gentoopm/gentoopm-0.4.ebuild38
2 files changed, 0 insertions, 39 deletions
diff --git a/app-portage/gentoopm/Manifest b/app-portage/gentoopm/Manifest
index 7f0b5ceebd3c..109f2f94f3cb 100644
--- a/app-portage/gentoopm/Manifest
+++ b/app-portage/gentoopm/Manifest
@@ -1,2 +1 @@
-DIST gentoopm-0.4.tar.gz 39123 BLAKE2B c8ea81e2d1aa09d3aa838ccb2a1d221e29ba6cf20c5539435a36da058733ee6814864f11a5a96742b371c6d0f2e1ffa269edf197cd30cf4bc7d517f9fa6623cc SHA512 7af0d4d8b3562b009d8897b70b8621d2004e22a16006ec84144544174724757b39e09cbde98ee876adc166947a58e4afa85f752c66d4dbb03ff1d3a52074720f
DIST gentoopm-0.5.0.gh.tar.gz 36710 BLAKE2B 12819b645154fd9ea68cd2b4f605c8ea3fcbec5005754acfd0e96081527c66a04d37ab73c8c967f5989abf97f155263c98ccb3ce6e0bc1fe9d9e5dbbc639c902 SHA512 b5ff3f79c54028b8d1442414353e4872fb0249c75ce9dedff9c907bd1307841996c254b502d18f32469d938a62add2acdd77080c693069a4b01afecca382a67e
diff --git a/app-portage/gentoopm/gentoopm-0.4.ebuild b/app-portage/gentoopm/gentoopm-0.4.ebuild
deleted file mode 100644
index aafcbb89d307..000000000000
--- a/app-portage/gentoopm/gentoopm-0.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A common interface to Gentoo package managers"
-HOMEPAGE="https://github.com/projg2/gentoopm/"
-SRC_URI="
- https://github.com/projg2/gentoopm/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~mips ~ppc64 ~sparc x86 ~x64-macos"
-
-RDEPEND="
- || (
- >=sys-apps/pkgcore-0.9.4[${PYTHON_USEDEP}]
- >=sys-apps/portage-2.1.10.3[${PYTHON_USEDEP}] )"
-PDEPEND="app-eselect/eselect-package-manager"
-
-distutils_enable_tests pytest
-
-python_test() {
- if has_version ">=sys-apps/pkgcore-0.9.4[${PYTHON_USEDEP}]"; then
- einfo "Testing against pkgcore ..."
- PACKAGE_MANAGER=pkgcore epytest
- fi
- if has_version ">=sys-apps/portage-2.1.10.3[${PYTHON_USEDEP}]"; then
- einfo "Testing against portage ..."
- PACKAGE_MANAGER=portage epytest
- fi
-}