2019-04-18 08:48:31 +03:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2017-05-27 14:40:08 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
2019-04-18 08:48:31 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy )
|
2017-05-27 14:40:08 +03:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="A binary plist parser/generator for Python"
|
2018-04-20 18:03:56 +03:00
|
|
|
HOMEPAGE="https://pypi.org/project/biplist/ https://github.com/wooster/biplist"
|
2017-05-27 14:40:08 +03:00
|
|
|
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}]"
|
|
|
|
DEPEND="
|
|
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
|
|
test? (
|
|
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
|
|
${RDEPEND}
|
|
|
|
)"
|
|
|
|
|
|
|
|
python_test() {
|
|
|
|
# This failure still occurs, after 18 momths
|
|
|
|
# https://github.com/wooster/biplist/issues/8
|
|
|
|
nosetests || die "Tests failed under ${EPYTHON}"
|
|
|
|
}
|