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/
Date: Thu, 01 Dec 2022 07:09:26
Message-Id: 1669878549.357c08c7882099f11c5b78f3faa14b8dbe3d5d9b.mgorny@gentoo
1 commit: 357c08c7882099f11c5b78f3faa14b8dbe3d5d9b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 06:03:47 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 07:09:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=357c08c7
7
8 dev-python/path: Bump to 16.6.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/path/Manifest | 1 +
13 dev-python/path/path-16.6.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/path/Manifest b/dev-python/path/Manifest
17 index 5b3e7e0653d5..e8d0b73d9c50 100644
18 --- a/dev-python/path/Manifest
19 +++ b/dev-python/path/Manifest
20 @@ -1 +1,2 @@
21 DIST path-16.5.0.gh.tar.gz 44286 BLAKE2B 1d96b0003c562044c1c2ba5eba7a525d5503bd9a58ec1f9611d74e9d52581f646447d3d754809b49b4418c18de9fbfd5de34077fe9edb1c4b3d3fd49f9c2af19 SHA512 0b9b306b2b5cce1e51d65a7555e54770e19a3d4796dbaf2d617bbe8282c771e3d7975112e443462e9b43bafc533d6dc61bedb8608b0d93cc0d1febec995d1780
22 +DIST path-16.6.0.gh.tar.gz 45238 BLAKE2B f1fa3a23ba19f623ca276496c1fa7351ea02858710f2dddbf5f4d96cf2c9f8fc3325c74a56f1b4dec809e28e927f2c8adab913eed9d8893016e0fd3d0b3a662d SHA512 4d7772b7eb7017bee78f95f30f6286b14750d6d8edbf5f58617ede12bd664f1b893921b89bb64f797e1d2eb7e67e361d8f1e01618fee26d64a5b879a3854aead
23
24 diff --git a/dev-python/path/path-16.6.0.ebuild b/dev-python/path/path-16.6.0.ebuild
25 new file mode 100644
26 index 000000000000..ecd7e2ae4fa3
27 --- /dev/null
28 +++ b/dev-python/path/path-16.6.0.ebuild
29 @@ -0,0 +1,42 @@
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 +DESCRIPTION="A module wrapper for os.path"
41 +HOMEPAGE="
42 + https://github.com/jaraco/path/
43 + https://pypi.org/project/path/
44 +"
45 +SRC_URI="
46 + https://github.com/jaraco/path/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +SLOT="0"
51 +LICENSE="MIT"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
53 +
54 +RDEPEND="
55 + dev-python/appdirs[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
59 + test? (
60 + dev-python/packaging[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +EPYTEST_DESELECT=(
67 + # unreliable, not really meaningful for end users
68 + test_path.py::TestPerformance
69 +)
70 +
71 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}