From e18829371a9017bc788f31c98537195476d7e111 Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Mon, 10 Apr 2023 10:28:23 +0200 Subject: [PATCH] dev-python/pdm: add 2.5.1 Signed-off-by: Florian Albrechtskirchinger --- dev-python/pdm/Manifest | 1 + .../pdm/files/pdm-2.5.1-build-backend.patch | 12 +++ dev-python/pdm/pdm-2.5.1.ebuild | 74 +++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 dev-python/pdm/files/pdm-2.5.1-build-backend.patch create mode 100644 dev-python/pdm/pdm-2.5.1.ebuild diff --git a/dev-python/pdm/Manifest b/dev-python/pdm/Manifest index 1e98cd1572..86ab50f522 100644 --- a/dev-python/pdm/Manifest +++ b/dev-python/pdm/Manifest @@ -1 +1,2 @@ DIST pdm-2.4.9.tar.gz 2883026 BLAKE2B f9b481562d257f54f67d768cb40d6371f97a38880cc4f30e2a8615bdc75baf050301df97ed95c66c2553919d36cac5111b7d8c0efad362e97925fc8064a876fb SHA512 1a8952c99e408c7a37d3f3f1e3655cfbe8674e323a21501cdfe7740580ddb8b854b69c9bec46d091027fe16a310929f58e43c26d28e10a5d0f3a81c356edd1fe +DIST pdm-2.5.1.tar.gz 3050818 BLAKE2B bd450e7e1cde0820180910f1ff8a021db1dbf490af3b83cdf56d81ba2082544439257ce51db9b78dd9e5d00f9c17289e4a7d844873220acd631972bd7bf0ee9c SHA512 f91aeda2eb888624e028e041592b981ceff935553623bef770af15e06f57db44c5a0aa12eab07dc6404c6374e03793ea1e82532175cb6b396962cc4b590d132d diff --git a/dev-python/pdm/files/pdm-2.5.1-build-backend.patch b/dev-python/pdm/files/pdm-2.5.1-build-backend.patch new file mode 100644 index 0000000000..9e446af964 --- /dev/null +++ b/dev-python/pdm/files/pdm-2.5.1-build-backend.patch @@ -0,0 +1,12 @@ +--- pdm-2.5.1/pyproject.toml.orig 2023-04-10 08:40:02.362534459 +0200 ++++ pdm-2.5.1/pyproject.toml 2023-04-10 08:41:01.454905769 +0200 +@@ -199,7 +199,5 @@ + ] + + [build-system] +-requires = [ +- "pdm-backend", +-] +-build-backend = "pdm.backend" ++requires = ["pdm-pep517>=1.0"] ++build-backend = "pdm.pep517.api" diff --git a/dev-python/pdm/pdm-2.5.1.ebuild b/dev-python/pdm/pdm-2.5.1.ebuild new file mode 100644 index 0000000000..4862a6f008 --- /dev/null +++ b/dev-python/pdm/pdm-2.5.1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=pdm +PYTHON_COMPAT=( python3_{10..11} ) + +inherit bash-completion-r1 distutils-r1 pypi + +DESCRIPTION="Modern Python package and dependency manager supporting latest PEP standards" +HOMEPAGE=" + https://github.com/pdm-project/pdm/ + https://pypi.org/project/pdm/ +" + +LICENSE="MIT" +KEYWORDS="~amd64" +SLOT="0" + +RDEPEND=" + dev-python/blinker[${PYTHON_USEDEP}] + dev-python/certifi[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/platformdirs[${PYTHON_USEDEP}] + dev-python/rich[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + dev-python/pyproject-hooks[${PYTHON_USEDEP}] + dev-python/requests-toolbelt[${PYTHON_USEDEP}] + >=dev-python/unearth-0.9.0[${PYTHON_USEDEP}] + dev-python/findpython[${PYTHON_USEDEP}] + dev-python/tomlkit[${PYTHON_USEDEP}] + dev-python/shellingham[${PYTHON_USEDEP}] + dev-python/python-dotenv[${PYTHON_USEDEP}] + dev-python/resolvelib[${PYTHON_USEDEP}] + dev-python/installer[${PYTHON_USEDEP}] + dev-python/cachecontrol[${PYTHON_USEDEP}] + + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.10) +" +BDEPEND=" + ${RDEPEND} + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/pdm-2.5.1-build-backend.patch" +) + +distutils_enable_tests pytest + +python_compile_all() { + PDM_CHECK_UPDATE=0 "${EPYTHON}" -m pdm completion bash > completion.bash || die + PDM_CHECK_UPDATE=0 "${EPYTHON}" -m pdm completion zsh > completion.zsh || die +} + +python_test() { + epytest -m "not network" +} + +python_install_all() { + distutils-r1_python_install_all + + newbashcomp completion.bash pdm + + insinto /usr/share/zsh/site-functions + newins completion.zsh _pdm +}