diff options
author | 2013-02-12 01:15:31 +0000 | |
---|---|---|
committer | 2013-02-12 01:15:31 +0000 | |
commit | b2152d3a212fb6ed4bf30529f71319f3494c7e27 (patch) | |
tree | 51f8396556f19e0d8f879b18243e900dfef49a4d /dev-python/asciitable/asciitable-0.8.0-r1.ebuild | |
parent | Migrate to distutils-r1. (diff) | |
download | gentoo-2-b2152d3a212fb6ed4bf30529f71319f3494c7e27.tar.gz gentoo-2-b2152d3a212fb6ed4bf30529f71319f3494c7e27.tar.bz2 gentoo-2-b2152d3a212fb6ed4bf30529f71319f3494c7e27.zip |
Migrate to distutils-r1.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Diffstat (limited to 'dev-python/asciitable/asciitable-0.8.0-r1.ebuild')
-rw-r--r-- | dev-python/asciitable/asciitable-0.8.0-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/asciitable/asciitable-0.8.0-r1.ebuild b/dev-python/asciitable/asciitable-0.8.0-r1.ebuild new file mode 100644 index 000000000000..ecb61d851b85 --- /dev/null +++ b/dev-python/asciitable/asciitable-0.8.0-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/asciitable/asciitable-0.8.0-r1.ebuild,v 1.1 2013/02/12 01:15:31 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} ) + +inherit distutils-r1 + +DESCRIPTION="An extensible ASCII table reader" +HOMEPAGE="http://pypi.python.org/pypi/asciitable http://cxc.harvard.edu/contrib/asciitable" +SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests || die "Tests fail with ${EPYTHON}" +} |