2015-03-07 22:23:18 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2013-03-22 21:41:39 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-03-09 22:56:36 +03:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/versiontools/versiontools-1.9.1-r1.ebuild,v 1.6 2015/03/09 00:01:52 pacho Exp $
|
2013-03-22 21:41:39 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2014-06-08 17:12:05 +04:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
|
2013-03-22 21:41:39 +04:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Smart replacement for plain tuple used in __version__"
|
|
|
|
HOMEPAGE="http://pypi.python.org/pypi/versiontools/ https://launchpad.net/versiontools"
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
2015-03-09 22:56:36 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2013-03-22 21:41:39 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND=""
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
|
2014-06-08 17:12:05 +04:00
|
|
|
python_prepare_all() {
|
|
|
|
# Expexted failure
|
|
|
|
sed -e s':test_cant_import:_&:' -i versiontools/tests.py || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
}
|
|
|
|
|
2013-03-22 21:41:39 +04:00
|
|
|
python_test() {
|
|
|
|
esetup.py test
|
|
|
|
}
|