From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pdm-backend/
Date: Sun, 8 Oct 2023 17:48:03 +0000 (UTC) [thread overview]
Message-ID: <1696787270.127104aebb2510ca7788d03cc9abfc3b7866bc82.mgorny@gentoo> (raw)
commit: 127104aebb2510ca7788d03cc9abfc3b7866bc82
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 8 16:55:52 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 8 17:47:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=127104ae
dev-python/pdm-backend: Bump to 2.1.7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pdm-backend/Manifest | 1 +
dev-python/pdm-backend/pdm-backend-2.1.7.ebuild | 68 +++++++++++++++++++++++++
2 files changed, 69 insertions(+)
diff --git a/dev-python/pdm-backend/Manifest b/dev-python/pdm-backend/Manifest
index 03c52353bffb..68dbd58ffe00 100644
--- a/dev-python/pdm-backend/Manifest
+++ b/dev-python/pdm-backend/Manifest
@@ -1,3 +1,4 @@
DIST pdm-backend-2.1.4.gh.tar.gz 134278 BLAKE2B 38e52761d54cab96727d5015e41de76cd6d7eb6dbd02829ed2ddeeb2e2d64d42a0eb6bb09e055362e1dd181d9e7781ed9f9abcb2f96de342cd5780e1f21a8708 SHA512 4833819f8828f5e2ff204ca18478704d8d66c977c747f9b550dc1ecfee57a8adbfcddaea6dded8d8ea0c0e0c7745e0704e12acae30d183cb27cf4c1fad331791
DIST pdm-backend-2.1.5.gh.tar.gz 134316 BLAKE2B 9337990b4ed009e506f0eee82e9f8d50fc281dbf917dc964daf75230a4c2b9cc5bf0748afe9aa7b5b6f9036249b87ec338b129136b2fd92619c12000e77a7663 SHA512 867c36a9381f4e6a2c81f2d987ce33953eaf78a43b4fa03df54f78b6c9cfe645a1ae4f3dd1a514e0d14208ad7fc75af954fa46be3c8b4b54c7ac7e16eead5aaf
DIST pdm-backend-2.1.6.gh.tar.gz 134376 BLAKE2B 338ac4cd18d932d65e1ef123b81761707e8d602e8d0f171e26d849535a42e7f79f1b2828f8bedb775674d7a530329aa2dc3c5fe2f9c7e9042fc5ac36da5a0360 SHA512 c0f6278451efb242f0e9585d8298f8f73a0944cd462bac31d0528edf96f51b53ee7efbc58486daf8fdbcac8430e8bf6bc7869e9e455796a87e58d265789eb0de
+DIST pdm-backend-2.1.7.gh.tar.gz 134479 BLAKE2B e559792b53310d6c159ed0cfae6fd9332bbdebfe0efaa9aae7e149b4800b7231e1561723b6aebb4cd722bc47c5a8c9f13180dfe96607a08a9a5c0fba530c9098 SHA512 d47b814b427799d8b2d106b4721c770fd703143cac5de819d74c47d4808f9130bd5835d5fafe41ab3bb17abfedeb770c8863a9cb9a7c8aba0ef9315f5308e6b3
diff --git a/dev-python/pdm-backend/pdm-backend-2.1.7.ebuild b/dev-python/pdm-backend/pdm-backend-2.1.7.ebuild
new file mode 100644
index 000000000000..2e31060b91df
--- /dev/null
+++ b/dev-python/pdm-backend/pdm-backend-2.1.7.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A PEP 517 backend for PDM that supports PEP 621 metadata"
+HOMEPAGE="
+ https://pypi.org/project/pdm-backend/
+ https://github.com/pdm-project/pdm-backend/
+"
+SRC_URI="
+ https://github.com/pdm-project/pdm-backend/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+ >=dev-python/packaging-22.0[${PYTHON_USEDEP}]
+ >=dev-python/pyproject-metadata-0.7.1[${PYTHON_USEDEP}]
+ >=dev-python/tomli-w-1.0.0[${PYTHON_USEDEP}]
+
+ $(python_gen_cond_dep '
+ >=dev-python/tomli-2.0.1[${PYTHON_USEDEP}]
+ ' 3.10)
+"
+BDEPEND="
+ ${RDEPEND}
+ test? (
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-vcs/git
+ )
+"
+# setuptools are used to build C extensions
+RDEPEND+="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ rm -r src/pdm/backend/_vendor || die
+ find -name '*.py' -exec sed \
+ -e 's:from pdm\.backend\._vendor\.:from :' \
+ -e 's:from pdm\.backend\._vendor ::' \
+ -e 's:import pdm\.backend\._vendor\.:import :' \
+ -i {} + || die
+ distutils-r1_src_prepare
+}
+
+src_compile() {
+ # this must not be set during src_test()
+ local -x PDM_BUILD_SCM_VERSION=${PV}
+ distutils-r1_src_compile
+}
+
+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:[~2023-10-08 17:48 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-08 17:48 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-16 14:14 [gentoo-commits] repo/gentoo:master commit in: dev-python/pdm-backend/ Michał Górny
2024-11-09 12:01 Michał Górny
2024-11-09 11:13 Sam James
2024-10-26 11:52 Michał Górny
2024-10-23 19:33 Arthur Zamarin
2024-10-10 18:25 Michał Górny
2024-09-28 13:35 Michał Górny
2024-09-28 13:11 Michał Górny
2024-09-22 3:02 Michał Górny
2024-09-21 7:41 Michał Górny
2024-08-03 6:37 Michał Górny
2024-08-03 6:24 Michał Górny
2024-07-20 9:01 Michał Górny
2024-07-20 7:39 Arthur Zamarin
2024-07-16 5:30 Michał Górny
2024-07-06 6:35 Michał Górny
2024-07-06 6:26 Sam James
2024-07-05 18:41 Arthur Zamarin
2024-07-05 16:29 Arthur Zamarin
2024-06-19 4:36 Michał Górny
2024-06-13 10:31 Michał Górny
2024-06-13 5:18 Sam James
2024-06-13 4:54 Sam James
2024-06-12 18:19 Michał Górny
2024-06-12 10:33 Arthur Zamarin
2024-06-12 8:42 Jakov Smolić
2024-06-12 7:05 Arthur Zamarin
2024-06-12 6:51 Sam James
2024-06-12 6:50 Arthur Zamarin
2024-05-13 18:45 Michał Górny
2024-05-04 12:00 Sam James
2024-05-04 12:00 Sam James
2024-05-04 11:38 Sam James
2024-05-04 11:38 Sam James
2024-05-04 10:01 Arthur Zamarin
2024-05-04 7:55 Arthur Zamarin
2024-05-04 7:32 Arthur Zamarin
2024-05-01 11:48 Michał Górny
2024-05-01 4:06 Michał Górny
2024-04-18 5:34 Michał Górny
2024-04-15 12:19 Michał Górny
2024-01-13 10:04 Michał Górny
2024-01-13 9:38 Arthur Zamarin
2023-12-27 13:00 Michał Górny
2023-12-06 17:57 Ionen Wolkens
2023-11-24 21:53 Sam James
2023-11-16 17:17 Arthur Zamarin
2023-11-16 16:22 Sam James
2023-11-15 17:40 Sam James
2023-11-15 16:45 Arthur Zamarin
2023-11-15 16:34 Arthur Zamarin
2023-11-15 16:34 Arthur Zamarin
2023-11-15 15:55 Michał Górny
2023-08-30 3:15 Michał Górny
2023-08-09 3:09 Michał Górny
2023-07-24 11:32 Michał Górny
2023-07-19 11:10 Michał Górny
2023-07-13 5:28 Michał Górny
2023-07-12 4:04 Michał Górny
2023-06-27 3:54 Michał Górny
2023-06-26 4:51 Michał Górny
2023-06-23 6:17 Michał Górny
2023-06-08 10:21 Michał Górny
2023-06-03 6:48 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=1696787270.127104aebb2510ca7788d03cc9abfc3b7866bc82.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