From cd43d388e2b58d05aeac5aaaba0922fa839f7b64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 17 May 2020 10:16:44 +0200 Subject: dev-python/path-py: Add missing rdep on backports-os MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/721688 Signed-off-by: Michał Górny --- dev-python/path-py/path-py-11.5.2-r1.ebuild | 57 +++++++++++++++++++++++++++++ dev-python/path-py/path-py-11.5.2.ebuild | 55 ---------------------------- 2 files changed, 57 insertions(+), 55 deletions(-) create mode 100644 dev-python/path-py/path-py-11.5.2-r1.ebuild delete mode 100644 dev-python/path-py/path-py-11.5.2.ebuild (limited to 'dev-python') diff --git a/dev-python/path-py/path-py-11.5.2-r1.ebuild b/dev-python/path-py/path-py-11.5.2-r1.ebuild new file mode 100644 index 000000000000..7cb4a906d9cc --- /dev/null +++ b/dev-python/path-py/path-py-11.5.2-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 ) + +inherit distutils-r1 + +MY_P="path.py-${PV}" + +DESCRIPTION="A module wrapper for os.path" +HOMEPAGE="https://pypi.org/project/path.py/ https://github.com/jaraco/path.py" +SRC_URI="mirror://pypi/p/path.py/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + $(python_gen_cond_dep 'dev-python/backports-os[${PYTHON_USEDEP}]' -2) + $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_{5,6,7} pypy3) + dev-python/appdirs[${PYTHON_USEDEP}]" +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +PATCHES=( + "${FILESDIR}/path-py-11.5.2-tests.patch" +) + +S="${WORKDIR}/${MY_P}" + +distutils_enable_tests pytest + +python_prepare_all() { + # avoid a setuptools_scm dependency + sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die + sed -r -i "s:setuptools_scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+)[[:space:]]*::" \ + setup.cfg || die + + # disable flake8 tests + sed -i -r 's: --flake8:: ; s: --black:: ; s: --cov::' \ + pytest.ini || die + + # fragile test for import time + sed -i -e 's:test_import_time:_&:' test_path.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + PYTHONPATH=. pytest -v || die +} diff --git a/dev-python/path-py/path-py-11.5.2.ebuild b/dev-python/path-py/path-py-11.5.2.ebuild deleted file mode 100644 index dd854041c4dd..000000000000 --- a/dev-python/path-py/path-py-11.5.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 ) - -inherit distutils-r1 - -MY_P="path.py-${PV}" - -DESCRIPTION="A module wrapper for os.path" -HOMEPAGE="https://pypi.org/project/path.py/ https://github.com/jaraco/path.py" -SRC_URI="mirror://pypi/p/path.py/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" - -RDEPEND="$(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_{5,6,7} pypy3) - dev-python/appdirs[${PYTHON_USEDEP}]" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -PATCHES=( - "${FILESDIR}/path-py-11.5.2-tests.patch" -) - -S="${WORKDIR}/${MY_P}" - -distutils_enable_tests pytest - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools_scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+)[[:space:]]*::" \ - setup.cfg || die - - # disable flake8 tests - sed -i -r 's: --flake8:: ; s: --black:: ; s: --cov::' \ - pytest.ini || die - - # fragile test for import time - sed -i -e 's:test_import_time:_&:' test_path.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - PYTHONPATH=. pytest -v || die -} -- cgit v1.2.3