mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
1
dev-python/versioningit/Manifest
Normal file
1
dev-python/versioningit/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST versioningit-1.1.1.tar.gz 678420 BLAKE2B 9829214f1f8bcea1733926667bac222c5cf34a03808f96b13389d78453da4613b4b6aeee79d0d756a70aae473496f44d4d191da65f50474d7c8222cae05153ea SHA512 4bcb4253198207d5dbb99358e823cd404f98fd9f265e0801c92a2f220241637cffa8bfc8184a1754b45353423e1bde1a5e5019876acce9536ad658289a638852
|
||||
13
dev-python/versioningit/metadata.xml
Normal file
13
dev-python/versioningit/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="github">jwodder/versioningit</remote-id>
|
||||
<remote-id type="pypi">versioningit</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
40
dev-python/versioningit/versioningit-1.1.1.ebuild
Normal file
40
dev-python/versioningit/versioningit-1.1.1.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user