summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-06 10:51:07 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-06 14:39:12 +0100
commit9ed6bd5979ed3933aaca5c376bc1daddde12e67b (patch)
treee3827d3f35acec3a1f4d62a44d6ded6821b43885 /dev-python
parentdev-python/u-msgpack: Clean old up (diff)
downloadgentoo-9ed6bd5979ed3933aaca5c376bc1daddde12e67b.tar.gz
gentoo-9ed6bd5979ed3933aaca5c376bc1daddde12e67b.tar.bz2
gentoo-9ed6bd5979ed3933aaca5c376bc1daddde12e67b.zip
dev-python/uncompyle6: Clean old up
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/uncompyle6/Manifest1
-rw-r--r--dev-python/uncompyle6/uncompyle6-2.9.7.ebuild42
2 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/uncompyle6/Manifest b/dev-python/uncompyle6/Manifest
index 629273503639..6ee251a75605 100644
--- a/dev-python/uncompyle6/Manifest
+++ b/dev-python/uncompyle6/Manifest
@@ -1,2 +1 @@
DIST uncompyle6-2.10.1.tar.gz 831835 BLAKE2B dbde4d8414804d55871d846ad42f9a4859913ee057dcea5f6f19e8104e39d3274e13c86538f3364e6829d2ca9ecd16929143e266a828558e870d0f78d3cdff1b SHA512 5be7c33749f3a2a02494aceebeeb2cb79bf71c39784dbe4e96cf9a5c6f02af89874bc25ba911308f01414e4ae4d9ac445864505c629d41a2c6f8b2eae2197b2b
-DIST uncompyle6-2.9.7.tar.gz 876996 BLAKE2B eb78700eb24c7e306a0fb35cc96b207d583c1a9b8f693c4157fdd1581a0c458c979434573af9e981fca5b0454990613fa21b8bb34ede9d8d8f73d3699d01e352 SHA512 b528a9db569f0665f78a7eef94c91e0d0d31490cb5e60f9cd2fa286c48f378875db1b5fb68e6d593c009c1ab9b381aab06a07624795177d9d72924d73d257ccc
diff --git a/dev-python/uncompyle6/uncompyle6-2.9.7.ebuild b/dev-python/uncompyle6/uncompyle6-2.9.7.ebuild
deleted file mode 100644
index 264ff17e1ee6..000000000000
--- a/dev-python/uncompyle6/uncompyle6-2.9.7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Python cross-version byte-code deparser"
-HOMEPAGE="https://github.com/rocky/python-uncompyle6/ https://pypi.python.org/pypi/uncompyle6"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- >=dev-python/xdis-3.2.3
- <dev-python/xdis-3.3.0
- >=dev-python/spark-parser-1.5.1
- <dev-python/spark-parser-1.6.0"
-DEPEND="${RDEPEND}
- test? (
- >=dev-python/nose-1.0[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/hypothesis[${PYTHON_USEDEP}]
- )
-"
-
-python_prepare_all() {
- distutils-r1_python_prepare_all
-}
-
-# only run the recommended "make check" tests
-python_test() {
- distutils_install_for_testing
-
- PYTHONPATH="${S}/test:${BUILD_DIR}/lib" \
- emake check || die "Tests failed under ${EPYTHON}"
-}