diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-10-20 11:55:08 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-10-21 15:40:24 +0200 |
commit | 1d9b9911f6dbf239521cbceb3e951184c23c54e6 (patch) | |
tree | 97ce1a9d7e01eb414621e9b1f981926afbdd29a4 /dev-python/sqlalchemy | |
parent | dev-python/beautifulsoup: Add python3.5 support (diff) | |
download | gentoo-1d9b9911f6dbf239521cbceb3e951184c23c54e6.tar.gz gentoo-1d9b9911f6dbf239521cbceb3e951184c23c54e6.tar.bz2 gentoo-1d9b9911f6dbf239521cbceb3e951184c23c54e6.zip |
dev-python/sqlalchemy: Add python3.5 support
add missing die
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/sqlalchemy')
-rw-r--r-- | dev-python/sqlalchemy/sqlalchemy-1.0.8.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dev-python/sqlalchemy/sqlalchemy-1.0.8.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.0.8.ebuild index b3e3b5ef4e24..aaa990b83a3c 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.0.8.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.0.8.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) PYTHON_REQ_USE="sqlite?" inherit distutils-r1 flag-o-matic @@ -19,12 +20,13 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples +sqlite test" + REQUIRED_USE="test? ( sqlite )" RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - DEPEND="${RDEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy) )" S="${WORKDIR}/${MY_P}" @@ -47,9 +49,9 @@ python_test() { # Create copies of necessary files in BUILD_DIR. # https://bitbucket.org/zzzeek/sqlalchemy/issue/3144/ cp -pR examples sqla_nose.py setup.cfg test "${BUILD_DIR}" || die - pushd "${BUILD_DIR}" > /dev/null + pushd "${BUILD_DIR}" > /dev/null || die if [[ "${EPYTHON}" == "python3.2" ]]; then - 2to3 --no-diffs -w test + 2to3 --no-diffs -w test || die fi # Recently upstream elected to make the testsuite also pytest capable # "${PYTHON}" sqla_nose.py || die "Testsuite failed under ${EPYTHON}" @@ -59,7 +61,6 @@ python_test() { python_install_all() { use doc && HTML_DOCS=( doc/. ) - use examples && local EXAMPLES=( examples/. ) distutils-r1_python_install_all |