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: Sat, 20 Jul 2024 09:01:04 +0000 (UTC) [thread overview]
Message-ID: <1721465573.03cf2359e92e25d020e34e20f9ea959abb1a830d.mgorny@gentoo> (raw)
commit: 03cf2359e92e25d020e34e20f9ea959abb1a830d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 08:52:53 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 08:52:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03cf2359
dev-python/pdm-backend: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pdm-backend/Manifest | 1 -
dev-python/pdm-backend/pdm-backend-2.3.1.ebuild | 75 -------------------------
2 files changed, 76 deletions(-)
diff --git a/dev-python/pdm-backend/Manifest b/dev-python/pdm-backend/Manifest
index a88fa7271b3f..85c9ebe87320 100644
--- a/dev-python/pdm-backend/Manifest
+++ b/dev-python/pdm-backend/Manifest
@@ -1,3 +1,2 @@
-DIST pdm-backend-2.3.1.gh.tar.gz 136710 BLAKE2B 72293989700a429bfddb1d865b14f0467d56e024d69976264909d1c5113be67fd6892f3821803b6e86d73653f54a62b15ccb02f3dc16a190f6ccd0ca5e0650b5 SHA512 6a1a4d45a95b08f0a06f54635224c6faabc000384f489eb1e462d7dfffdd9899a3040a0fb708d193b3da541e2704b30921185728a178517fa55ecf3314f9903d
DIST pdm-backend-2.3.2.gh.tar.gz 136819 BLAKE2B 15f1375a646337f25fa37b94cd88d257849dbaa79cc2153ca608c4bc35d8e243f7d2a63ddcac87d435bea2fa5200b2d254544720d959566584526c8f182f9152 SHA512 acbf3be68dba894152b0257dbb99ba21e120e5dd48c5989fe5047a6c0073c58f829cb52f8537f32b096838202f0a29f2c38cab43d5c284d1b610811c9f2c25a3
DIST pdm-backend-2.3.3.gh.tar.gz 136942 BLAKE2B 14f2584f22f1c4e08f687c77621269ae1e5acfe4babb1ab427c10d65ff07841b8175479f867870b9a5745db76444ca140a7da497a94c831ca6d0ea1e67b4e88f SHA512 382ad95e2811f1142fee66065f96ede1a646c3e2b9fbfafc6afb17442d3aeccfbf1ff6260952986a025791d3d56a2c4b730decb3cb65e893c25a710e16cbcfc8
diff --git a/dev-python/pdm-backend/pdm-backend-2.3.1.ebuild b/dev-python/pdm-backend/pdm-backend-2.3.1.ebuild
deleted file mode 100644
index cdd2b6fbda8a..000000000000
--- a/dev-python/pdm-backend/pdm-backend-2.3.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{10..13} 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="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
-
-# see src/pdm/backend/_vendor/vendor.txt
-RDEPEND="
- >=dev-python/editables-0.5[${PYTHON_USEDEP}]
- >=dev-python/packaging-24.0[${PYTHON_USEDEP}]
- >=dev-python/pyproject-metadata-0.8.0[${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
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -k "not [hg"
-}
next reply other threads:[~2024-07-20 9:01 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-20 9:01 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-09 12:01 [gentoo-commits] repo/gentoo:master commit in: dev-python/pdm-backend/ 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 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-10-08 17:48 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=1721465573.03cf2359e92e25d020e34e20f9ea959abb1a830d.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