summaryrefslogtreecommitdiff
path: root/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-27 12:49:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-27 12:49:26 +0000
commita2c276c844380a2ad46aaefe38e41f38ecb97fc0 (patch)
treee80d6d9ca09c1321dbf07062d377b2af7f0da2d3 /dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
parente227e016f37ff9300baa89324fbc8f408f4c042f (diff)
downloadbaldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.tar.gz
baldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.tar.xz
baldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.zip
Adding metadata
Diffstat (limited to 'dev-python/PyUtilib/PyUtilib-6.0.0.ebuild')
-rw-r--r--dev-python/PyUtilib/PyUtilib-6.0.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild b/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
deleted file mode 100644
index ac8d74bbaeb7..000000000000
--- a/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9,10,11} )
-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/six[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}/PyUtilib-6.0.0-tests.patch"
-)
-
-distutils_enable_tests unittest
-
-python_install_all() {
- distutils-r1_python_install_all
-
- find "${ED}" -name '*.pth' -delete || die
-}
-
-python_test() {
- distutils_install_for_testing --via-root
-
- local -x PYTHONPATH="${PWD}:${TEST_DIR}/lib" \
- COLUMNS=80
-
- if [[ ${EPYTHON} == python3.10 ]]; then
- # Fix for very small output change of expected output in new version
- sed -e 's/optional arguments/options/' -i \
- "${BUILD_DIR}/../doc/workflow/examples/"*.txt \
- pyutilib/misc/tests/test_config.py || die
- fi
-
- eunittest
-}