2014-04-08 13:20:57 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2013-05-30 13:02:03 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-10-08 14:34:48 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/biplist-0.8.ebuild,v 1.1 2014/10/08 09:12:50 idella4 Exp $
|
2013-05-30 13:02:03 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2014-10-08 14:34:48 +04:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
|
2014-04-08 13:20:57 +04:00
|
|
|
|
2013-05-30 13:02:03 +04:00
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="A binary plist parser/generator for Python"
|
|
|
|
HOMEPAGE="http://pypi.python.org/pypi/biplist/ https://github.com/wooster/biplist"
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="test"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
|
2014-04-08 13:20:57 +04:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
2013-05-30 13:02:03 +04:00
|
|
|
test? ( dev-python/nose[${PYTHON_USEDEP}]
|
2014-04-08 13:20:57 +04:00
|
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
|
|
${RDEPEND} )"
|
2013-05-30 13:02:03 +04:00
|
|
|
|
|
|
|
python_test() {
|
2014-10-08 14:34:48 +04:00
|
|
|
nosetests || die "Tests failed under ${EPYTHON}"
|
2013-05-30 13:02:03 +04:00
|
|
|
}
|