diff options
-rw-r--r-- | dev-python/boto/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/boto/boto-2.35.1.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/dev-python/boto/ChangeLog b/dev-python/boto/ChangeLog index c49717b02895..bd342a7adb52 100644 --- a/dev-python/boto/ChangeLog +++ b/dev-python/boto/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/boto # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.101 2015/01/10 06:00:55 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.102 2015/01/10 06:17:48 radhermit Exp $ + + 10 Jan 2015; Tim Harder <radhermit@gentoo.org> boto-2.35.1.ebuild: + Add python3_3 and python3_4 to PYTHON_COMPAT and update test functionality. *boto-2.35.1 (10 Jan 2015) diff --git a/dev-python/boto/boto-2.35.1.ebuild b/dev-python/boto/boto-2.35.1.ebuild index 61c32ee4e392..6cbaf565bb06 100644 --- a/dev-python/boto/boto-2.35.1.ebuild +++ b/dev-python/boto/boto-2.35.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.35.1.ebuild,v 1.1 2015/01/10 06:00:55 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.35.1.ebuild,v 1.2 2015/01/10 06:17:48 radhermit Exp $ EAPI="5" -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 @@ -14,12 +14,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="test" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" # requires Amazon Web Services keys to pass some tests RESTRICT="test" python_test() { - esetup.py test + "${PYTHON}" tests/test.py -v || die "Tests fail with ${EPYTHON}" } |