summaryrefslogtreecommitdiff
path: root/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-10-17 09:22:10 +0200
committerMichał Górny <mgorny@gentoo.org>2021-10-17 09:22:10 +0200
commit8bcc5907d4db1c74d70718e8289889eaf3a498a3 (patch)
tree4f50ffc0f229222f86ed5671db5f922a99362324 /dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
parentf1797c155a4a16a9a52e43e9b0e7aa4705a38137 (diff)
downloadgentoo-8bcc5907d4db1c74d70718e8289889eaf3a498a3.tar.gz
gentoo-8bcc5907d4db1c74d70718e8289889eaf3a498a3.tar.bz2
gentoo-8bcc5907d4db1c74d70718e8289889eaf3a498a3.zip
dev-python/PyUtilib: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/PyUtilib/PyUtilib-5.7.2.ebuild')
-rw-r--r--dev-python/PyUtilib/PyUtilib-5.7.2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
deleted file mode 100644
index e1418c3cb92e..000000000000
--- a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..10} )
-DISTUTILS_IN_SOURCE_BUILD=1
-
-inherit distutils-r1
-
-DESCRIPTION="A collection of Python utilities"
-HOMEPAGE="https://github.com/PyUtilib/pyutilib"
-SRC_URI="https://github.com/${PN}/${PN,,}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN,,}-${PV}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
- "${FILESDIR}/pyutilib-5.6.5-tests.patch"
-)
-
-python_prepare_all() {
- # remove some tests that are completely broken
- rm pyutilib/component/app/tests/test_simple.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- distutils_install_for_testing --via-root
-
- local -x PYTHONPATH="${PWD}:${TEST_DIR}/lib" \
- COLUMNS=80
-
- nosetests -v --with-xunit --xunit-file=TEST-pyutilib.xml pyutilib || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- find "${ED}" -name '*.pth' -delete || die
-}
-
-python_install() {
- distutils-r1_python_install
-}