diff options
author | 2014-05-12 15:45:15 +0000 | |
---|---|---|
committer | 2014-05-12 15:45:15 +0000 | |
commit | 36e78a90fbe86db7043cbb80ad1d49e4445b050e (patch) | |
tree | c07d094eed9b785550af0605f91a9740744b8e6a /dev-python | |
parent | Security bump - bug #509954 (diff) | |
download | gentoo-2-36e78a90fbe86db7043cbb80ad1d49e4445b050e.tar.gz gentoo-2-36e78a90fbe86db7043cbb80ad1d49e4445b050e.tar.bz2 gentoo-2-36e78a90fbe86db7043cbb80ad1d49e4445b050e.zip |
drop py2.6 pypy2_0 add py3.4 support
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/passlib/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/passlib/passlib-1.6.2.ebuild | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/dev-python/passlib/ChangeLog b/dev-python/passlib/ChangeLog index cd76d6b2e699..843767b38128 100644 --- a/dev-python/passlib/ChangeLog +++ b/dev-python/passlib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/passlib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.9 2014/03/31 20:29:28 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.10 2014/05/12 15:45:15 idella4 Exp $ + + 12 May 2014; Ian Delaney <idella4@gentoo.org> passlib-1.6.2.ebuild: + drop py2.6 pypy2_0 add py3.4 support 31 Mar 2014; Michał Górny <mgorny@gentoo.org> passlib-1.6.1-r1.ebuild, passlib-1.6.2.ebuild: diff --git a/dev-python/passlib/passlib-1.6.2.ebuild b/dev-python/passlib/passlib-1.6.2.ebuild index f2ab7defec67..662ff17dfff8 100644 --- a/dev-python/passlib/passlib-1.6.2.ebuild +++ b/dev-python/passlib/passlib-1.6.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.2.ebuild,v 1.2 2014/03/31 20:29:28 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.2.ebuild,v 1.3 2014/05/12 15:45:14 idella4 Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 ) +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) inherit distutils-r1 @@ -25,11 +25,13 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] python_test() { # https://code.google.com/p/passlib/issues/detail?id=50 - nosetests -w "${BUILD_DIR}"/lib \ - -e test_90_django_reference -e test_91_django_generation \ - -e test_77_fuzz_input -e test_config \ - -e test_registry.py \ - || die "Tests fail with ${EPYTHON}" + # py3 on testing choaks on the suite + if ! python_is_python3; then + nosetests -w "${BUILD_DIR}"/lib \ + -e test_90_django_reference -e test_91_django_generation \ + -e test_77_fuzz_input -e test_config \ + -e test_registry.py || die "Tests fail with ${EPYTHON}" + fi } python_install_all() { |