mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
dev-python/pdm-pep517: New NIH build system, v0.10.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
1
dev-python/pdm-pep517/Manifest
Normal file
1
dev-python/pdm-pep517/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST pdm-pep517-0.10.0.gh.tar.gz 189457 BLAKE2B 5a51b62dbc828aec5bca6ada8c7ecb479dd7491f22251392198a3d8e183f2d3d86fd4264addd9a428c37a24041365f3eeecec0a33c3f1a39ea8a1a8e6827be91 SHA512 7eb76bdf3db99ec1cf76a467617ce15423eaa465800efa9ccb248efb3c3cb5644b8e6a9ce04d6181dc9f3b5287a167f62f25d5e3334929f3e947a62ca9633d01
|
||||
13
dev-python/pdm-pep517/metadata.xml
Normal file
13
dev-python/pdm-pep517/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>python@gentoo.org</email>
|
||||
<name>Python</name>
|
||||
</maintainer>
|
||||
<stabilize-allarches/>
|
||||
<upstream>
|
||||
<remote-id type="pypi">pdm-pep517</remote-id>
|
||||
<remote-id type="github">pdm-project/pdm-pep517</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
50
dev-python/pdm-pep517/pdm-pep517-0.10.0.ebuild
Normal file
50
dev-python/pdm-pep517/pdm-pep517-0.10.0.ebuild
Normal file
@@ -0,0 +1,50 @@
|
||||
# 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"
|
||||
|
||||
# setuptools are used to build C extensions
|
||||
RDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-vcs/git
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
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 EPYTEST_DESELECT=()
|
||||
if [[ ${EPYTHON} == pypy3 ]]; then
|
||||
EPYTEST_DESELECT+=(
|
||||
tests/test_wheel.py::test_override_tags_in_wheel_filename
|
||||
)
|
||||
fi
|
||||
epytest
|
||||
}
|
||||
Reference in New Issue
Block a user