From 9bd69af0b2a4b2dec03f2dfb21e7bb6824ed045c Mon Sep 17 00:00:00 2001 From: Patrick McLean Date: Wed, 20 Nov 2019 17:29:47 -0800 Subject: [PATCH] dev-python/path-py: Version bump to 12.0.2, add py38 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Patrick McLean --- dev-python/path-py/Manifest | 1 + .../path-py/files/path-py-12.0.2-py38.patch | 19 +++++++ dev-python/path-py/path-py-12.0.2.ebuild | 49 +++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 dev-python/path-py/files/path-py-12.0.2-py38.patch create mode 100644 dev-python/path-py/path-py-12.0.2.ebuild diff --git a/dev-python/path-py/Manifest b/dev-python/path-py/Manifest index fba3f77025b9..4685c2430d12 100644 --- a/dev-python/path-py/Manifest +++ b/dev-python/path-py/Manifest @@ -1,3 +1,4 @@ DIST path.py-10.3.1.tar.gz 35871 BLAKE2B 94e45372ad39f9c5dfe4167f5d1fd58e1e501272ed2fa5ecd116f0fffc7b924c66cc436a83a296a167c08bb2f57f169b1ace7692c2ac1284fc9070918b409a3c SHA512 e8dc874521aee6cadc5e3d7a66ca6909010f2069b1e6ed0298a3dbd86466c971ca466b442bff90906cb891fa9f13190fd9b3bf4ae62442e9fe73909169c32c02 DIST path.py-11.0.1.tar.gz 38348 BLAKE2B 80bfc308c72f0e2867ce1811709e3d2ff63888be53814e026ee221c381387a581f8e0f8da05e5c1fade2e0d6b93ba930dc9b1f38117667239174a3acc85d76f0 SHA512 48bc8352af74e70e702e712f35f08a0bf05713b2de5f2eb617f8ef2f9138344cf74fab453aff6cbd38bd88f5c3612c39b3605e0d3899c2ab1c667662558a8651 +DIST path.py-12.0.2.tar.gz 44859 BLAKE2B c82bfd248e0e6eb21e3416c86f7a3a5fbfc5f5b327fe20da4084c53f22834013fc224bfbcf455690f53002c8f1c3e060aa0f04f3792e749dad62e51702cea348 SHA512 97971fa1e6bcdd4acf057ab4fe6cde2edb9d9d3d06dc049ea3779cae867221ae3e9d905daa1ec706f867473f738bb328b2795d3030244f8bd8ff7e8f0d5a6b2c DIST path.py-8.1.2.tar.gz 33437 BLAKE2B 0033b64e9d0f4c719414e5345989308a113c9e23f99fb46722ee7d7de85c7bb4b471f5416d646d943771cdd369ac2d8f23f925660d4212b18acf7b82daaa76c0 SHA512 639b6247d99bd7c88e7505f5f41a5896266f23c0517b470ea5c1ec90ca76e87f1971babee623bbd7bea57bbef5f7677a7163bc51bae78c3c54e978eaf7f122d1 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 new file mode 100644 index 000000000000..292b0454acc1 --- /dev/null +++ b/dev-python/path-py/files/path-py-12.0.2-py38.patch @@ -0,0 +1,19 @@ +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-12.0.2.ebuild b/dev-python/path-py/path-py-12.0.2.ebuild new file mode 100644 index 000000000000..ec861207b9a1 --- /dev/null +++ b/dev-python/path-py/path-py-12.0.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{5,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 ~sh ~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-12.0.2-py38.patch" +) + +S="${WORKDIR}/${MY_P}" + +distutils_enable_tests pytest + +python_prepare_all() { + sed -i "s:use_scm_version=True:version='${PV}':" setup.py || die + + # disable flake8 tests + sed -i -r 's: --flake8:: ; s: --black:: ; s: --cov::' \ + pytest.ini || die + + distutils-r1_python_prepare_all +} + +python_test() { + PYTHONPATH=. pytest -v || die +} -- 2.26.2