diff --git a/dev-python/vcver/Manifest b/dev-python/vcver/Manifest new file mode 100644 index 0000000..7c1aba6 --- /dev/null +++ b/dev-python/vcver/Manifest @@ -0,0 +1 @@ +DIST vcver-0.2.11.tar.gz 13311 BLAKE2B 14c3ecc10cb9bbe08924762b080abb6bc498a8ffeaf383c12858c2f20dcbfcf356ad54e91917b3c1f38b205e3640c132b5a4f07e65e8622b1590abab98508bc1 SHA512 aca598b8410217eb7e53079d143f88cb5b6b59bd90c8697cb36a7b3ef2ea93597a880f9b0134999c47267e49d15b8edcc832513ea3a1adf156b2828fa29997a7 diff --git a/dev-python/vcver/metadata.xml b/dev-python/vcver/metadata.xml new file mode 100644 index 0000000..24bcd6f --- /dev/null +++ b/dev-python/vcver/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + vcver + + yusuke@tsutsumi.io + Yusuke Tsutsumi + + + diff --git a/dev-python/vcver/vcver-0.2.11.ebuild b/dev-python/vcver/vcver-0.2.11.ebuild new file mode 100644 index 0000000..5a1cdfe --- /dev/null +++ b/dev-python/vcver/vcver-0.2.11.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="provide package versions with version control data." +HOMEPAGE="https://github.com/toumorokoshi/vcver-python https://pypi.org/project/vcver/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +BDEPEND="dev-python/packaging[${PYTHON_USEDEP}]" +RDEPEND="" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}