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/pdm-pep517/
Date: Fri, 28 Jan 2022 08:54:18
Message-Id: 1643360043.65205eb7a8eadc2ae2d536ea45eb6090b31780fa.mgorny@gentoo
1 commit: 65205eb7a8eadc2ae2d536ea45eb6090b31780fa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 28 08:01:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 08:54:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65205eb7
7
8 dev-python/pdm-pep517: Bump to 0.10.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pdm-pep517/Manifest | 1 +
13 dev-python/pdm-pep517/pdm-pep517-0.10.2.ebuild | 55 ++++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/dev-python/pdm-pep517/Manifest b/dev-python/pdm-pep517/Manifest
17 index a2bfe9f63f76..e7b8b7d79369 100644
18 --- a/dev-python/pdm-pep517/Manifest
19 +++ b/dev-python/pdm-pep517/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pdm-pep517-0.10.0.gh.tar.gz 189457 BLAKE2B 5a51b62dbc828aec5bca6ada8c7ecb479dd7491f22251392198a3d8e183f2d3d86fd4264addd9a428c37a24041365f3eeecec0a33c3f1a39ea8a1a8e6827be91 SHA512 7eb76bdf3db99ec1cf76a467617ce15423eaa465800efa9ccb248efb3c3cb5644b8e6a9ce04d6181dc9f3b5287a167f62f25d5e3334929f3e947a62ca9633d01
22 DIST pdm-pep517-0.10.1.gh.tar.gz 189525 BLAKE2B 10d80fee2ac45fd68c61baf9a8ee7365da19a5daa085fdecd3164b3271cf0c0ee8ad110b1f96a33a4eecdceace72c2d4ee1ce789331c208eb4a67e3b4e3fe56a SHA512 acdf36eeb2baf90c1c80b676901ac06946fbb32f2a5c2bfbdfd85d0889ae22a0851dede4f5898d109d20583504b311cbec6903deadfb77e3f1dd7ff6a1098e04
23 +DIST pdm-pep517-0.10.2.gh.tar.gz 189817 BLAKE2B 47e773ac38197d898c50821d272c155d6749952bcce1492416291c02fa370965ca438e68268a56b8366b18f8a786883c9101e4dc325c9d4741f6cc509862d823 SHA512 6cdbd2cd96a784317356f4c5c52697279b720de03e7059c287872725baa10333b2f352e9a1c5ace727907bd6179cd879fcb4f6770eae1dd23294bf1b60cc233b
24
25 diff --git a/dev-python/pdm-pep517/pdm-pep517-0.10.2.ebuild b/dev-python/pdm-pep517/pdm-pep517-0.10.2.ebuild
26 new file mode 100644
27 index 000000000000..91fedb91351a
28 --- /dev/null
29 +++ b/dev-python/pdm-pep517/pdm-pep517-0.10.2.ebuild
30 @@ -0,0 +1,55 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=standalone
37 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A PEP 517 backend for PDM that supports PEP 621 metadata"
41 +HOMEPAGE="
42 + https://pypi.org/project/pdm-pep517/
43 + https://github.com/pdm-project/pdm-pep517/
44 +"
45 +SRC_URI="
46 + https://github.com/pdm-project/pdm-pep517/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +RDEPEND="
55 + >=dev-python/cerberus-1.3.4[${PYTHON_USEDEP}]
56 + >=dev-python/packaging-21.0[${PYTHON_USEDEP}]
57 + >=dev-python/toml-0.10.2[${PYTHON_USEDEP}]
58 +"
59 +BDEPEND="
60 + ${RDEPEND}
61 + test? (
62 + dev-vcs/git
63 + )
64 +"
65 +# setuptools are used to build C extensions
66 +RDEPEND+="
67 + dev-python/setuptools[${PYTHON_USEDEP}]
68 +"
69 +
70 +distutils_enable_tests pytest
71 +
72 +src_prepare() {
73 + rm -r pdm/pep517/_vendor || die
74 + find -name '*.py' -exec sed \
75 + -e 's:from pdm\.pep517\._vendor\.:from :' \
76 + -e 's:from pdm\.pep517\._vendor ::' \
77 + -i {} + || die
78 + distutils-r1_src_prepare
79 +}
80 +
81 +src_test() {
82 + git config --global user.email "test@×××××××.com" || die
83 + git config --global user.name "Test User" || die
84 + distutils-r1_src_test
85 +}