diff options
-rw-r--r-- | dev-python/vcversioner/Manifest | 1 | ||||
-rw-r--r-- | dev-python/vcversioner/vcversioner-2.16.0.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/vcversioner/Manifest b/dev-python/vcversioner/Manifest index 58a1f0aa08f4..917b43a0f72e 100644 --- a/dev-python/vcversioner/Manifest +++ b/dev-python/vcversioner/Manifest @@ -1 +1,2 @@ DIST vcversioner-2.14.0.0.tar.gz 9015 SHA256 acd43686e92e6c8bbeb4f2eef54408567a7adea9692fa72d591eec5357c03b86 SHA512 0d474910f9d0f0dd0c0d0b824bcdf5da7bbb5d2b55691f18107bb0b8a237213a83d8f51f719d4761e1dae9db70e84ef8c264c388ec1995ed0a55a838575e377e WHIRLPOOL b146f1d008b635fc337c2256a7bb9bd0534ecd3a335c349a0518e36ee21e807de1b43ea52dd6a581fa4de64ad6cdb2dca53646051a93afe752a28d4a25bcbec8 +DIST vcversioner-2.16.0.0.tar.gz 9024 SHA256 dae60c17a479781f44a4010701833f1829140b1eeccd258762a74974aa06e19b SHA512 e4e34693aa813e57991eca01d20102bd2e939b536461e2e9e063ac0e3558580e57d7e8d5e08d010690b3c901c97e53f187f20b48520b333eb492ec33e85757d8 WHIRLPOOL 13dc98c065e95c445e230cd4a2f8c62af32342e8fb9bfb95c2fd17df07a4ee5673bd96b5c099bac40ef698dcd182b380f3a94d689826e5d0bc94859976beba2c diff --git a/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild b/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild new file mode 100644 index 000000000000..81ec51ed93b9 --- /dev/null +++ b/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Use version control tags to discover version numbers" +HOMEPAGE="https://github.com/habnabit/vcversioner https://pypi.python.org/pypi/vcversioner" +SRC_URI="mirror://pypi/v/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) + " + +# not included +RESTRICT=test + +python_test() { + py.test || die +} |