From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pdm-pep517/
Date: Fri, 11 Feb 2022 21:18:43 +0000 (UTC) [thread overview]
Message-ID: <1644614316.a11a382726fe9a635cf695ac8a46eacbe6b3c3ad.mgorny@gentoo> (raw)
commit: a11a382726fe9a635cf695ac8a46eacbe6b3c3ad
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:57:27 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 21:18:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11a3827
dev-python/pdm-pep517: Bump to 0.11.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pdm-pep517/Manifest | 1 +
dev-python/pdm-pep517/pdm-pep517-0.11.2.ebuild | 57 ++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/dev-python/pdm-pep517/Manifest b/dev-python/pdm-pep517/Manifest
index 964e7d4e69c5..7737873b0235 100644
--- a/dev-python/pdm-pep517/Manifest
+++ b/dev-python/pdm-pep517/Manifest
@@ -2,3 +2,4 @@ DIST pdm-pep517-0.10.0.gh.tar.gz 189457 BLAKE2B 5a51b62dbc828aec5bca6ada8c7ecb47
DIST pdm-pep517-0.10.1.gh.tar.gz 189525 BLAKE2B 10d80fee2ac45fd68c61baf9a8ee7365da19a5daa085fdecd3164b3271cf0c0ee8ad110b1f96a33a4eecdceace72c2d4ee1ce789331c208eb4a67e3b4e3fe56a SHA512 acdf36eeb2baf90c1c80b676901ac06946fbb32f2a5c2bfbdfd85d0889ae22a0851dede4f5898d109d20583504b311cbec6903deadfb77e3f1dd7ff6a1098e04
DIST pdm-pep517-0.10.2.gh.tar.gz 189817 BLAKE2B 47e773ac38197d898c50821d272c155d6749952bcce1492416291c02fa370965ca438e68268a56b8366b18f8a786883c9101e4dc325c9d4741f6cc509862d823 SHA512 6cdbd2cd96a784317356f4c5c52697279b720de03e7059c287872725baa10333b2f352e9a1c5ace727907bd6179cd879fcb4f6770eae1dd23294bf1b60cc233b
DIST pdm-pep517-0.11.0.gh.tar.gz 211783 BLAKE2B 10a112a29ce8cef047d5dea79169fbc590a953e201da5fb3cde631dfc0b0a4ebdbe6e82e28971773db4b913d6b6ab468eb611564f59137beb3df4bd961decbc1 SHA512 71a12512660f85af2a50133f67cb0dc15a2d848d6500fe7dbc9e63ea0e7b916cb00a6c392abc8eb7383db81b1f46b53779a0befbeee4d6831d2586d65be1676c
+DIST pdm-pep517-0.11.2.gh.tar.gz 211796 BLAKE2B d1f6ea59a4a8d1188bc19c857d3fd9cb93bbb27e905bce5eb40454a1062c2086233a282119e4b8eee4264a885f58317ce7e1e9c78d588f9612240e220bc4fc07 SHA512 36b75526da84541a21672755ecb9b6ddede46d062e4db60b9b89acaa4febb59c4b0378f402095b678c9f902acce39e4649bbf2539ff6a8f9b3a33e284f84fb16
diff --git a/dev-python/pdm-pep517/pdm-pep517-0.11.2.ebuild b/dev-python/pdm-pep517/pdm-pep517-0.11.2.ebuild
new file mode 100644
index 000000000000..ca2e2aa9749f
--- /dev/null
+++ b/dev-python/pdm-pep517/pdm-pep517-0.11.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A PEP 517 backend for PDM that supports PEP 621 metadata"
+HOMEPAGE="
+ https://pypi.org/project/pdm-pep517/
+ https://github.com/pdm-project/pdm-pep517/
+"
+SRC_URI="
+ https://github.com/pdm-project/pdm-pep517/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/cerberus-1.3.4[${PYTHON_USEDEP}]
+ >=dev-python/packaging-21.0[${PYTHON_USEDEP}]
+ >=dev-python/tomli-2[${PYTHON_USEDEP}]
+ dev-python/tomli-w[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ ${RDEPEND}
+ test? (
+ dev-vcs/git
+ )
+"
+# setuptools are used to build C extensions
+RDEPEND+="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ rm -r pdm/pep517/_vendor || die
+ find -name '*.py' -exec sed \
+ -e 's:from pdm\.pep517\._vendor\.:from :' \
+ -e 's:from pdm\.pep517\._vendor ::' \
+ -i {} + || die
+ distutils-r1_src_prepare
+}
+
+src_test() {
+ git config --global user.email "test@example.com" || die
+ git config --global user.name "Test User" || die
+ distutils-r1_src_test
+}
next reply other threads:[~2022-02-11 21:18 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-11 21:18 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-12-06 17:57 [gentoo-commits] repo/gentoo:master commit in: dev-python/pdm-pep517/ Ionen Wolkens
2023-11-30 15:59 Ionen Wolkens
2023-06-12 6:01 Arthur Zamarin
2023-06-11 19:34 Arthur Zamarin
2023-06-11 19:21 Arthur Zamarin
2023-06-11 19:08 Arthur Zamarin
2023-06-11 19:06 Arthur Zamarin
2023-06-11 18:58 Arthur Zamarin
2023-06-11 18:57 Arthur Zamarin
2023-05-30 16:28 Michał Górny
2023-05-16 5:24 Michał Górny
2023-05-15 20:24 Arthur Zamarin
2023-04-13 6:32 Michał Górny
2023-04-13 5:45 Sam James
2023-04-13 3:52 Sam James
2023-04-13 2:57 Sam James
2023-04-12 4:49 Michał Górny
2023-04-12 4:24 Sam James
2023-04-12 2:36 Sam James
2023-04-11 19:17 WANG Xuerui
2023-03-23 16:36 Michał Górny
2023-02-25 6:06 Michał Górny
2023-02-24 21:13 Sam James
2023-02-10 6:52 Michał Górny
2023-02-10 6:52 Michał Górny
2023-02-08 6:27 Michał Górny
2023-01-31 11:55 Michał Górny
2023-01-31 11:55 Michał Górny
2023-01-31 11:22 Michał Górny
2023-01-31 0:11 Patrick McLean
2023-01-30 6:59 Michał Górny
2022-12-25 17:33 Michał Górny
2022-11-25 20:36 Arthur Zamarin
2022-11-25 19:11 Sam James
2022-11-25 5:14 Michał Górny
2022-11-05 17:11 Agostino Sarubbo
2022-10-24 5:14 Michał Górny
2022-10-17 19:47 Sam James
2022-10-07 7:03 Michał Górny
2022-10-05 5:53 Arthur Zamarin
2022-09-07 5:03 Michał Górny
2022-09-06 21:12 Sam James
2022-08-07 8:11 Michał Górny
2022-07-30 2:33 Sam James
2022-07-29 10:12 Arthur Zamarin
2022-07-10 11:25 Michał Górny
2022-07-10 11:25 Michał Górny
2022-07-03 19:14 Arthur Zamarin
2022-06-25 17:01 Arthur Zamarin
2022-06-24 20:45 Jakov Smolić
2022-06-16 8:06 Michał Górny
2022-06-08 19:40 Michał Górny
2022-05-17 6:54 Michał Górny
2022-05-16 13:24 Michał Górny
2022-05-02 19:17 Arthur Zamarin
2022-04-11 16:07 Michał Górny
2022-04-02 9:46 Michał Górny
2022-04-01 12:27 Michał Górny
2022-03-15 16:12 Michał Górny
2022-02-09 9:39 Michał Górny
2022-01-28 8:54 Michał Górny
2022-01-26 21:27 Jakov Smolić
2022-01-26 5:25 Michał Górny
2022-01-24 22:14 Michał Górny
2022-01-16 17:53 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1644614316.a11a382726fe9a635cf695ac8a46eacbe6b3c3ad.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox