diff options
author | 2012-04-08 19:36:07 +0000 | |
---|---|---|
committer | 2012-04-08 19:36:07 +0000 | |
commit | 3bc6d517d654a336c4655dbfb41ee8af3e99cabc (patch) | |
tree | 1428e0c44596de3397e332fe88e5683eb0a510a4 /dev-python/boto | |
parent | Version bump, #411049 by Ian Delaney. (diff) | |
download | historical-3bc6d517d654a336c4655dbfb41ee8af3e99cabc.tar.gz historical-3bc6d517d654a336c4655dbfb41ee8af3e99cabc.tar.bz2 historical-3bc6d517d654a336c4655dbfb41ee8af3e99cabc.zip |
Version bump, #411037 by Ian Delaney.
Package-Manager: portage-2.2.0_alpha100/cvs/Linux x86_64
Diffstat (limited to 'dev-python/boto')
-rw-r--r-- | dev-python/boto/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/boto/boto-2.3.0.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/boto/ChangeLog b/dev-python/boto/ChangeLog index a98eb8e77cd1..fc5b3798013a 100644 --- a/dev-python/boto/ChangeLog +++ b/dev-python/boto/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/boto # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.41 2012/02/29 16:27:43 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.42 2012/04/08 19:36:07 floppym Exp $ + +*boto-2.3.0 (08 Apr 2012) + + 08 Apr 2012; Mike Gilbert <floppym@gentoo.org> +boto-2.3.0.ebuild: + Version bump, #411037 by Ian Delaney. *boto-2.2.2-r1 (29 Feb 2012) diff --git a/dev-python/boto/boto-2.3.0.ebuild b/dev-python/boto/boto-2.3.0.ebuild new file mode 100644 index 000000000000..091e8dcfeeb4 --- /dev/null +++ b/dev-python/boto/boto-2.3.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.3.0.ebuild,v 1.1 2012/04/08 19:36:07 floppym Exp $ + +EAPI="4" +PYTHON_DEPEND="2:2.5" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 3.*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils eutils + +DESCRIPTION="Amazon Web Services API" +HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto" +SRC_URI="mirror://github/boto/boto/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +DEPEND="dev-python/setuptools + test? ( dev-python/m2crypto )" +RDEPEND="dev-python/m2crypto" + +# Requires Amazon Web Services keys to pass some tests +RESTRICT="test" + +src_prepare() { + distutils_src_prepare + epatch "${FILESDIR}"/${PN}-2.2.2-no-install-tests.patch #404979 +} |