summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-03-28 21:54:59 +0100
committerMichał Górny <mgorny@gentoo.org>2020-03-28 22:10:58 +0100
commit12a21978151bac1a08ef892b5f2b42cf5ced252c (patch)
treeb0c4130ef155aafadf5494b0612ef1ebbaa244de /dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild
parentdev-python/pythondialog: Remove py2 versions (diff)
downloadgentoo-12a21978151bac1a08ef892b5f2b42cf5ced252c.tar.gz
gentoo-12a21978151bac1a08ef892b5f2b42cf5ced252c.tar.bz2
gentoo-12a21978151bac1a08ef892b5f2b42cf5ced252c.zip
dev-python/python-distutils-extra: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild')
-rw-r--r--dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild b/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild
deleted file mode 100644
index 35c8e55ac67c..000000000000
--- a/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
-HOMEPAGE="https://launchpad.net/python-distutils-extra"
-SRC_URI="https://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-DOCS=( doc/{FAQ,README,setup.cfg.example,setup.py.example} )
-
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
- # Disable broken tests.
- sed \
- -e "s/test_desktop/_&/" -e "s/test_po(/_&/" \
- -e "s/test_policykit/_&/" -e "s/test_requires_provides/_&/" \
- -i test/auto.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- # 5 tests fail with disabled byte-compilation (they rely on exact
- # output from python).
- local -x PYTHONDONTWRITEBYTECODE
- "${PYTHON}" test/auto.py || die "Tests fail with ${EPYTHON}"
-}