mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-02 11:38:07 -07:00
dev-python/pyramid: Fix deps, enable tests
Correct the package dependencies, and enable tests. The former includes: 1. putting dev-python/setuptools in RDEPEND since the package uses entry_points (pkg_resources), 2. adding dev-python/zope-deprecation to RDEPEND since the package states that as a runtime dependency, 3. removing nose & coverage from test dependencies since they are not used for testing upstream (it is extra dep for post-install testing but setup.py and the tests use plain unittest), 4. adding missing py2-conditional dependency on dev-python/zope-component for tests. Appropriately switch python_test() to use 'setup.py test'.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
@@ -6,8 +6,6 @@ PYTHON_COMPAT=( python{2_7,3_4} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
RESTRICT="test" # Can't package dependencies
|
||||
|
||||
DESCRIPTION="A small open source Python web framework"
|
||||
HOMEPAGE="http://www.pylonsproject.org/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
@@ -15,31 +13,26 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
LICENSE="repoze"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
#IUSE="test"
|
||||
# tests would pull in dev-python/zope-deprecation with its deps - not a good idea
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
dev-python/chameleon[${PYTHON_USEDEP}]
|
||||
dev-python/mako[${PYTHON_USEDEP}]
|
||||
dev-python/webob[${PYTHON_USEDEP}]
|
||||
dev-python/repoze-lru[${PYTHON_USEDEP}]
|
||||
dev-python/mako[${PYTHON_USEDEP}]
|
||||
dev-python/zope-deprecation[${PYTHON_USEDEP}]
|
||||
dev-python/zope-interface[${PYTHON_USEDEP}]
|
||||
dev-python/translationstring[${PYTHON_USEDEP}]
|
||||
dev-python/pastedeploy[${PYTHON_USEDEP}]
|
||||
dev-python/venusian[${PYTHON_USEDEP}]
|
||||
"
|
||||
dev-python/venusian[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
#test? ( dev-python/webtest[${PYTHON_USEDEP}]
|
||||
# dev-python/nose[${PYTHON_USEDEP}]
|
||||
# dev-python/coverage[${PYTHON_USEDEP}]
|
||||
# dev-python/virtualenv[${PYTHON_USEDEP}]
|
||||
# )
|
||||
#"
|
||||
test? ( dev-python/webtest[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep \
|
||||
'dev-python/zope-component[${PYTHON_USEDEP}]' \
|
||||
'python2*' pypy)
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests || die "Tests fail with ${EPYTHON}"
|
||||
esetup.py test
|
||||
}
|
||||
Reference in New Issue
Block a user