mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-24 20:48:31 -07:00
38 lines
1011 B
Bash
38 lines
1011 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
|
|
inherit distutils-r1
|
|
|
|
MY_PN=tap.py
|
|
DESCRIPTION="Test Anything Protocol (TAP) tools"
|
|
HOMEPAGE="https://github.com/python-tap/tappy https://pypi.org/project/tap.py/"
|
|
SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc64 ~sparc ~x86 ~amd64-fbsd"
|
|
IUSE="test yaml"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
yaml? (
|
|
dev-python/more-itertools[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
)"
|
|
DEPEND="dev-python/Babel[${PYTHON_USEDEP}]
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
test? (
|
|
dev-python/more-itertools[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
virtual/python-unittest-mock[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
S=${WORKDIR}/${MY_PN}-${PV}
|
|
|
|
python_test() {
|
|
"${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
|
|
}
|