dev-python/versioningit: new package, add 1.1.1

Closes: https://bugs.gentoo.org/842243
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2022-05-30 23:34:40 +01:00
parent 82c8c2be11
commit dc7c2104c1
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST versioningit-1.1.1.tar.gz 678420 BLAKE2B 9829214f1f8bcea1733926667bac222c5cf34a03808f96b13389d78453da4613b4b6aeee79d0d756a70aae473496f44d4d191da65f50474d7c8222cae05153ea SHA512 4bcb4253198207d5dbb99358e823cd404f98fd9f265e0801c92a2f220241637cffa8bfc8184a1754b45353423e1bde1a5e5019876acce9536ad658289a638852

View 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="github">jwodder/versioningit</remote-id>
<remote-id type="pypi">versioningit</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="versioningit is a setuptools plugin for versioning based on git tags"
HOMEPAGE="
https://pypi.org/project/versioningit/
https://github.com/jwodder/versioningit"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/packaging[${PYTHON_USEDEP}]"
BDEPEND="test? (
dev-python/pydantic[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
)"
EPYTEST_IGNORE=(
# Tries to do wheel/pip installs
test/test_end2end.py
)
distutils_enable_tests pytest
python_prepare_all() {
sed -i \
-e '/--cov/d' \
-e '/-cov-/d' \
tox.ini || die
distutils-r1_python_prepare_all
}