Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/path-py/
Date: Mon, 26 Sep 2022 11:22:03
Message-Id: 1664190337.646a38432e984e45c9805b99bf02f8b3afd76d84.mgorny@gentoo
1 commit: 646a38432e984e45c9805b99bf02f8b3afd76d84
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 10:44:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 11:05:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646a3843
7
8 dev-python/path-py: Bump to 16.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/path-py/Manifest | 1 +
13 dev-python/path-py/path-py-16.5.0.ebuild | 46 ++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-python/path-py/Manifest b/dev-python/path-py/Manifest
17 index 38cd6ccae0ad..956b5ef26485 100644
18 --- a/dev-python/path-py/Manifest
19 +++ b/dev-python/path-py/Manifest
20 @@ -1 +1,2 @@
21 DIST path-16.4.0.tar.gz 48289 BLAKE2B 5ae3272ecc92689c18ffc612b8b11923225dcface88fa47dc4f42b0dc960034fa6a3c856a9521ed83c9507616577efc3d1c0a5119b0c5605ea6f6b758cfe6d2b SHA512 bb78119f929fe3b160646b06db8911e737060695ae89c28bcce84835213dfbaa12a34300b540be6b51e9462c5b378b235e1e72536524750ec910255399c513d3
22 +DIST path-16.5.0.gh.tar.gz 44286 BLAKE2B 1d96b0003c562044c1c2ba5eba7a525d5503bd9a58ec1f9611d74e9d52581f646447d3d754809b49b4418c18de9fbfd5de34077fe9edb1c4b3d3fd49f9c2af19 SHA512 0b9b306b2b5cce1e51d65a7555e54770e19a3d4796dbaf2d617bbe8282c771e3d7975112e443462e9b43bafc533d6dc61bedb8608b0d93cc0d1febec995d1780
23
24 diff --git a/dev-python/path-py/path-py-16.5.0.ebuild b/dev-python/path-py/path-py-16.5.0.ebuild
25 new file mode 100644
26 index 000000000000..18b69066c471
27 --- /dev/null
28 +++ b/dev-python/path-py/path-py-16.5.0.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=${P/-py}
41 +DESCRIPTION="A module wrapper for os.path"
42 +HOMEPAGE="
43 + https://github.com/jaraco/path/
44 + https://pypi.org/project/path/
45 +"
46 +SRC_URI="
47 + https://github.com/jaraco/path/archive/v${PV}.tar.gz
48 + -> ${MY_P}.gh.tar.gz
49 +"
50 +S=${WORKDIR}/${MY_P}
51 +
52 +SLOT="0"
53 +LICENSE="MIT"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
55 +
56 +RDEPEND="
57 + dev-python/appdirs[${PYTHON_USEDEP}]
58 + !<dev-python/pytest-shutil-1.7.0-r1
59 + !<dev-python/pytest-virtualenv-1.7.0-r1
60 +"
61 +BDEPEND="
62 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
63 + test? (
64 + dev-python/packaging[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +distutils_enable_tests pytest
69 +
70 +EPYTEST_DESELECT=(
71 + # unreliable, not really meaningful for end users
72 + test_path.py::TestPerformance
73 +)
74 +
75 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}