Files
guru/dev-python/gssapi/gssapi-1.6.11.ebuild
Andrew Ammerlaan 6d5d75a0a3 */*: variables renamed in new docs.eclass
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2020-12-06 11:45:49 +01:00

44 lines
885 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
DOCS_BUILDER="sphinx"
DOCS_DEPEND="
>=dev-python/recommonmark-0.4.0
>dev-python/sphinx_rtd_theme-0.2.5
"
inherit distutils-r1 docs
DESCRIPTION="A Python interface to RFC 2743/2744 (plus common extensions)"
HOMEPAGE="
https://github.com/pythongssapi/python-gssapi
https://pypi.org/project/gssapi
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
#help wanted
RESTRICT="test"
RDEPEND=""
DEPEND="
${RDEPEND}
dev-python/cython[${PYTHON_USEDEP}]
test? (
dev-python/decorator[${PYTHON_USEDEP}]
dev-python/k5test[${PYTHON_USEDEP}]
dev-python/parameterized[${PYTHON_USEDEP}]
)
"
distutils_enable_tests nose
python_test() {
distutils_install_for_testing
nosetests -v || die
}