diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-09-02 20:10:41 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-09-02 20:10:41 +0000 |
commit | 2102918122c1af0d0e0be9c3eee08e4df10989cb (patch) | |
tree | 19cf1493c1801ff8dab00f0bfc76d97965b8450f /dev-python/requests | |
parent | Stable for amd64, wrt bug #431892 (diff) | |
download | gentoo-2-2102918122c1af0d0e0be9c3eee08e4df10989cb.tar.gz gentoo-2-2102918122c1af0d0e0be9c3eee08e4df10989cb.tar.bz2 gentoo-2-2102918122c1af0d0e0be9c3eee08e4df10989cb.zip |
Version bump (bug #433487).
(Portage version: 2.2.0_alpha123-r1/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/requests')
-rw-r--r-- | dev-python/requests/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/requests/requests-0.13.9.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-python/requests/ChangeLog b/dev-python/requests/ChangeLog index 82131d538213..fa8f9bea4850 100644 --- a/dev-python/requests/ChangeLog +++ b/dev-python/requests/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/requests # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/requests/ChangeLog,v 1.17 2012/08/19 18:49:26 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/requests/ChangeLog,v 1.18 2012/09/02 20:10:41 radhermit Exp $ + +*requests-0.13.9 (02 Sep 2012) + + 02 Sep 2012; Tim Harder <radhermit@gentoo.org> +requests-0.13.9.ebuild: + Version bump (bug #433487). 19 Aug 2012; Johannes Huber <johu@gentoo.org> requests-0.13.1.ebuild: Stable for x86, wrt bug #431758 diff --git a/dev-python/requests/requests-0.13.9.ebuild b/dev-python/requests/requests-0.13.9.ebuild new file mode 100644 index 000000000000..7af43349ab17 --- /dev/null +++ b/dev-python/requests/requests-0.13.9.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/requests/requests-0.13.9.ebuild,v 1.1 2012/09/02 20:10:41 radhermit Exp $ + +EAPI="4" +PYTHON_DEPEND="*:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 2.5" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="HTTP library for human beings" +HOMEPAGE="http://python-requests.org/ http://pypi.python.org/pypi/requests" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND="dev-python/setuptools" + +DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES=1 + +src_prepare() { + # Different packages are installed depending on the python version. + # Need to remove stale egg-info data and build in separate directories. + rm -r requests.egg-info || die + + distutils_src_prepare +} + +src_test() { + echoit() { echo "$@"; "$@"; } + testing() { + echoit nosetests --verbosity=1 tests/*.py + } + python_execute_function testing +} |