summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-09-06 22:31:05 +0200
committerMichał Górny <mgorny@gentoo.org>2018-09-06 23:21:23 +0200
commit5ad1dac56424b64458a945c1e8f9ba5fd013dc1e (patch)
tree5fa4554d46a1b707e2b8434873491188d26d1159 /app-portage
parentapp-portage/eclass-manpages: Clean old up (diff)
downloadgentoo-5ad1dac56424b64458a945c1e8f9ba5fd013dc1e.tar.gz
gentoo-5ad1dac56424b64458a945c1e8f9ba5fd013dc1e.tar.bz2
gentoo-5ad1dac56424b64458a945c1e8f9ba5fd013dc1e.zip
app-portage/gentoopm: Clean old up
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/gentoopm/Manifest1
-rw-r--r--app-portage/gentoopm/gentoopm-0.2.9-r1.ebuild40
2 files changed, 0 insertions, 41 deletions
diff --git a/app-portage/gentoopm/Manifest b/app-portage/gentoopm/Manifest
index d41583f385cf..66a2e53b32e1 100644
--- a/app-portage/gentoopm/Manifest
+++ b/app-portage/gentoopm/Manifest
@@ -1,2 +1 @@
-DIST gentoopm-0.2.9.tar.bz2 24652 BLAKE2B 1046d4cc5dca19d2cc72e8d8d54cd0d2172164aa5594666c89a4dde9dbd994654d07982a2381fa09038b29ebb011bdd410f60ac3c340bdbf533bcfc29f4c4796 SHA512 e7d1daa811eb6c0877c2bec98b72bce61380802fe704f271a4df6383506d62ba661eb83ac9afd432627e2f10bf38840796768a565b80b6489563cfc54ed81ae7
DIST gentoopm-0.3.0.tar.gz 37614 BLAKE2B c848c08677c4ac5ab0fdc1499045ae418048ec35d4ef925d1fe09ab4b68ec90e4f6843511efc29184883f3b3582bd3de519212bea1997736378b01bdc13ebd14 SHA512 e2a82f37b9a42688b6dd7023accdbf537780069deb6ca6ec6d9e159baf774af17e2a405c9eb40105b73b165f1c8c2ccde3ed685e04a61c9cd6665d1677da61d3
diff --git a/app-portage/gentoopm/gentoopm-0.2.9-r1.ebuild b/app-portage/gentoopm/gentoopm-0.2.9-r1.ebuild
deleted file mode 100644
index 21be8599cc2d..000000000000
--- a/app-portage/gentoopm/gentoopm-0.2.9-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="A common interface to Gentoo package managers"
-HOMEPAGE="https://github.com/mgorny/gentoopm/"
-SRC_URI="https://github.com/mgorny/${PN}/releases/download/${P}/${P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~mips x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc"
-
-RDEPEND="|| (
- sys-apps/pkgcore
- >=sys-apps/portage-2.1.10.3[${PYTHON_USEDEP}]
- sys-apps/portage-mgorny[${PYTHON_USEDEP}]
- >=sys-apps/paludis-0.64.2[python-bindings] )"
-DEPEND="doc? ( dev-python/epydoc )"
-PDEPEND="app-eselect/eselect-package-manager"
-
-python_compile_all() {
- if use doc; then
- "${PYTHON}" setup.py doc || die
- fi
-}
-
-python_test() {
- "${PYTHON}" setup.py test || die
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( doc/* )
-
- distutils-r1_python_install_all
-}