diff options
author | Corentin Chary <iksaif@gentoo.org> | 2012-08-31 21:02:39 +0000 |
---|---|---|
committer | Corentin Chary <iksaif@gentoo.org> | 2012-08-31 21:02:39 +0000 |
commit | 96366c6cccf5c6b1889a556c3fb4286e5dfe1747 (patch) | |
tree | ef006907303fa17bdb6d811617e86b0ea8aa0ff3 /dev-python/kombu | |
parent | Bump to 3.0.9. (diff) | |
download | gentoo-2-96366c6cccf5c6b1889a556c3fb4286e5dfe1747.tar.gz gentoo-2-96366c6cccf5c6b1889a556c3fb4286e5dfe1747.tar.bz2 gentoo-2-96366c6cccf5c6b1889a556c3fb4286e5dfe1747.zip |
Bump to 2.4.5.
(Portage version: 2.1.11.12/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/kombu')
-rw-r--r-- | dev-python/kombu/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/kombu/kombu-2.4.5.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/dev-python/kombu/ChangeLog b/dev-python/kombu/ChangeLog index f0e3d5e26db9..18587b90440b 100644 --- a/dev-python/kombu/ChangeLog +++ b/dev-python/kombu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/kombu # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v 1.6 2012/08/30 06:55:43 iksaif Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v 1.7 2012/08/31 21:02:39 iksaif Exp $ + +*kombu-2.4.5 (31 Aug 2012) + + 31 Aug 2012; Corentin Chary <iksaif@gentoo.org> +kombu-2.4.5.ebuild: + Bump to 2.4.5. *kombu-2.4.3 (30 Aug 2012) diff --git a/dev-python/kombu/kombu-2.4.5.ebuild b/dev-python/kombu/kombu-2.4.5.ebuild new file mode 100644 index 000000000000..5c70b8f41d7d --- /dev/null +++ b/dev-python/kombu/kombu-2.4.5.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/kombu-2.4.5.ebuild,v 1.1 2012/08/31 21:02:39 iksaif Exp $ + +EAPI="4" + +PYTHON_TESTS_RESTRICTED_ABIS="3.* 2.7-pypy-*" +PYTHON_DEPEND="*:2.5" +RESTRICT_PYTHON_ABIS="2.4" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils eutils + +DESCRIPTION="AMQP Messaging Framework for Python" +HOMEPAGE="http://pypi.python.org/pypi/kombu https://github.com/ask/kombu" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples test" + +RDEPEND=">=dev-python/anyjson-0.3.3 + >=dev-python/amqplib-1.0" +DEPEND="${RDEPEND} + test? ( dev-python/nose-cover3 + dev-python/mock + dev-python/simplejson + dev-python/anyjson + dev-python/redis-py + dev-python/pymongo + dev-python/msgpack ) + doc? ( dev-python/sphinx + dev-python/beanstalkc + dev-python/couchdb-python ) + dev-python/setuptools" + +src_prepare() { + if use test; then + epatch "${FILESDIR}/${PN}-2.1.1-add-assertIsInstance-with-unittest.patch" + fi +} + +src_compile() { + distutils_src_compile + use doc && emake -C docs html +} + +src_test() { + testing() { + nosetests --py3where build-${PYTHON_ABI}/lib/${PN}/tests + } + python_execute_function testing +} + +src_install() { + distutils_src_install + if use examples; then + docompress -x usr/share/doc/${P}/examples/ + insinto usr/share/doc/${P}/ + doins -r examples/ + fi + use doc && dohtml -r docs/.build/html/ +} |