diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-08-05 09:25:18 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-08-05 09:25:18 +0000 |
commit | 8f9ffa1682e5aabc0c9e5109312ee884344bd5e9 (patch) | |
tree | bb1a2c0755236f4993ea0579133952d5ff88e3a8 /dev-python | |
parent | Drop old; use subslots (diff) | |
download | gentoo-2-8f9ffa1682e5aabc0c9e5109312ee884344bd5e9.tar.gz gentoo-2-8f9ffa1682e5aabc0c9e5109312ee884344bd5e9.tar.bz2 gentoo-2-8f9ffa1682e5aabc0c9e5109312ee884344bd5e9.zip |
bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/hgdistver/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/hgdistver/hgdistver-0.25.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-python/hgdistver/ChangeLog b/dev-python/hgdistver/ChangeLog index 3fccaaa5ba6c..f294393b6748 100644 --- a/dev-python/hgdistver/ChangeLog +++ b/dev-python/hgdistver/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/hgdistver # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/hgdistver/ChangeLog,v 1.21 2015/06/07 19:29:18 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/hgdistver/ChangeLog,v 1.22 2015/08/05 09:25:18 idella4 Exp $ + +*hgdistver-0.25 (05 Aug 2015) + + 05 Aug 2015; Ian Delaney <idella4@gentoo.org> +hgdistver-0.25.ebuild: + bump 07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add bitbucket to remote-id in metadata.xml diff --git a/dev-python/hgdistver/hgdistver-0.25.ebuild b/dev-python/hgdistver/hgdistver-0.25.ebuild new file mode 100644 index 000000000000..121d44d18303 --- /dev/null +++ b/dev-python/hgdistver/hgdistver-0.25.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/hgdistver/hgdistver-0.25.ebuild,v 1.1 2015/08/05 09:25:18 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="utility lib to generate python package version infos from mercurial tags" +HOMEPAGE="http://bitbucket.org/RonnyPfannschmidt/hgdistver/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +RDEPEND="" + +python_test() { + py.test || die "Tests failed under ${EPYTHON}" +} |