diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-11-25 22:39:15 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-11-25 22:39:15 +0000 |
commit | d934827bf44b7cfcf6711964418148fa60877668 (patch) | |
tree | 0625f358789b5e015e49db139cc1dbc9be00428f /dev-python/path-py | |
parent | 2e34d110f164bf74d55fced27fe0000201b3eec5 (diff) |
gentoo resync : 25.11.2020
Diffstat (limited to 'dev-python/path-py')
-rw-r--r-- | dev-python/path-py/Manifest | 3 | ||||
-rw-r--r-- | dev-python/path-py/files/path-py-12.0.2-py38.patch | 19 | ||||
-rw-r--r-- | dev-python/path-py/path-py-14.0.1.ebuild | 59 |
3 files changed, 0 insertions, 81 deletions
diff --git a/dev-python/path-py/Manifest b/dev-python/path-py/Manifest index 9f924ef9f449..52415e1d59bd 100644 --- a/dev-python/path-py/Manifest +++ b/dev-python/path-py/Manifest @@ -1,6 +1,3 @@ -AUX path-py-12.0.2-py38.patch 602 BLAKE2B 5a836612a8fb6e85595973eedcc39720cf59b5cd15c06c1520df4b3034c5719233734233f73360baee5366ac8417f677cbba3adaff5e8d01f71b5bdcd5abb5be SHA512 291f8b80012c29cb2ff2d1ad00d14b6b137a9803073df03298415f81ccb2a960f1d376dd49dc527b9a78167e06b4ce300983557b7475ca75abe1d62630cd9959 -DIST path-14.0.1.tar.gz 73830 BLAKE2B 7528f90708423802dbb177309b1a608bf8dd6b8b1563fcf3904a805830b1c53b76866ec8055bb8d4afda4adb88209b789aed90a33916e450748866479cad1889 SHA512 195abf3e70f3e82566653c8a1154047a8ab82b98eda09a2ae38ba8989e382fd3225fb5c772b827be54a3eafa696829afda2a0198d1bef7ee369e6dc40b0bf11c DIST path-15.0.0.tar.gz 73642 BLAKE2B 186b77b6571dd878a5b64b575289bb5ee549145ccd0c7b858f99c9e3772cf98f2cc7ff5da759e7fa660296abc49c053a388ad95466c51adccce2162c682c6566 SHA512 e41684c576b959e27258f60c0d8b69719c38a5a7a04d9646089aea91227781573368a08f01230dca831732ae687741d22caf52efd9a481378b8d4e77627fe3a5 -EBUILD path-py-14.0.1.ebuild 1416 BLAKE2B 855c9725a45b11734fd99bd03f5b2ecb20ca3a4aaac623380eb6121dd5302f5715b2c4e33d4136780d5b70a0d798597fb2a42d4320f7f39562ebb4eb508af5f9 SHA512 8395bb60da8df801e43581bdcd9a5b247f166e141032ee26e29714079becf7977f8f3ae713a6ff7092ec9d6980d521a6133c9c337f779e87a8313f93530ee037 EBUILD path-py-15.0.0.ebuild 1220 BLAKE2B 853fdab38de7c0b846b7ce1ac61b3f2dc04683e95db199b0b7c9268a5b870049e0e5f93db8c6683f657e1b69a0040f256105caf8329ef168e34f8a62a2372532 SHA512 d720de9a1124c4cfa3f2303826c260af674b88330c4b6ac11a14e46a680c724defed4592468608cc209f093ad1a5218bc771c7e2343feb3f5b5ea477eabed8f4 MISC metadata.xml 401 BLAKE2B 5a8d84aaf65dc91b75cd7222e333e75f9bd6654ce4f9d55c91a8d28b141c5fc982b8c8a6a0b3b4f1c04fcf05fa56b13725062233961f323383110ace44089da6 SHA512 415b7917fd35598bd39c03ec7ede5e0e13266927b73647a995abb62d56004039aacebaeade95be39a265ef3944c35f3c61145cdb2100e563d8125753547bb729 diff --git a/dev-python/path-py/files/path-py-12.0.2-py38.patch b/dev-python/path-py/files/path-py-12.0.2-py38.patch deleted file mode 100644 index 292b0454acc1..000000000000 --- a/dev-python/path-py/files/path-py-12.0.2-py38.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -ur path.py-12.0.2.orig/path/__init__.py path.py-12.0.2/path/__init__.py ---- path.py-12.0.2.orig/path/__init__.py 2019-11-20 17:17:03.644205243 -0800 -+++ path.py-12.0.2/path/__init__.py 2019-11-20 17:17:57.356875924 -0800 -@@ -72,7 +72,13 @@ - - __version__ = importlib_metadata.version('path.py') - except Exception: -- __version__ = 'unknown' -+ try: -+ import importlib.metadata -+ -+ __version__ = importlib.metadata.version('path.py') -+ -+ except Exception: -+ __version__ = 'unknown' - - - class TreeWalkWarning(Warning): -Only in path.py-12.0.2/path: .__init__.py.un~ diff --git a/dev-python/path-py/path-py-14.0.1.ebuild b/dev-python/path-py/path-py-14.0.1.ebuild deleted file mode 100644 index 13f0dc92d69e..000000000000 --- a/dev-python/path-py/path-py-14.0.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -MY_P="path-${PV}" - -DESCRIPTION="A module wrapper for os.path" -HOMEPAGE="https://pypi.org/project/path/ https://github.com/jaraco/path" -SRC_URI="mirror://pypi/p/path/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -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}] - !<dev-python/pytest-shutil-1.7.0-r1 - !<dev-python/pytest-virtualenv-1.7.0-r1" -BDEPEND=" - test? ( - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -PATCHES=( - "${FILESDIR}/path-py-12.0.2-py38.patch" -) - -distutils_enable_tests pytest - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -e "s/setup_requires = setuptools_scm/version = '${PV}'/" \ - -i setup.cfg || die - - # disable fancy test deps - sed -e 's: --flake8:: ; s: --black:: ; s: --cov:: ; s: --mypy::' \ - -i 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 -vv || die -} |