2015-03-07 22:23:18 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2013-05-30 13:02:03 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
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"
|
2015-08-24 15:08:46 +03:00
|
|
|
HOMEPAGE="https://pypi.python.org/pypi/biplist/ https://github.com/wooster/biplist"
|
2013-05-30 13:02:03 +04:00
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
2015-03-09 22:56:36 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2013-05-30 13:02:03 +04:00
|
|
|
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
|
|
|
}
|