dev-python/pypiserver-1.3.1-r1: revbump, add py38, remove unneeded tox dep

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
This commit is contained in:
Patrick McLean
2019-12-04 15:17:40 -08:00
committed by Patrick McLean
parent b66d3d450d
commit 885771ca8d

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy{,3} )
PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
inherit distutils-r1
DESCRIPTION="Minimal PyPI server"
@@ -22,14 +22,10 @@ BDEPEND="${RDEPEND}
test? (
dev-python/passlib[${PYTHON_USEDEP}]
>=dev-python/pytest-2.3[${PYTHON_USEDEP}]
dev-python/tox[${PYTHON_USEDEP}]
dev-python/twine[${PYTHON_USEDEP}]
dev-python/webtest[${PYTHON_USEDEP}]
)"
# tests need access to pypi.org
#RESTRICT="test"
PATCHES=(
"${FILESDIR}/pypiserver-1.3.1-no-internet.patch"
)
@@ -37,3 +33,11 @@ PATCHES=(
DOCS=( README.rst )
distutils_enable_tests pytest
python_prepare_all() {
sed -r \
-e "s:[\"']tox[\"'](,|$)::" \
-i setup.py || die
distutils-r1_python_prepare_all
}