diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-11-13 09:59:08 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-11-13 09:59:08 +0000 |
commit | 13713162cda2708a4aa52dae5542eea5a28296bf (patch) | |
tree | 6afcd8834eb4720af31bcefb117747c8d48a2f75 /dev-python/kombu | |
parent | Bump (diff) | |
download | gentoo-2-13713162cda2708a4aa52dae5542eea5a28296bf.tar.gz gentoo-2-13713162cda2708a4aa52dae5542eea5a28296bf.tar.bz2 gentoo-2-13713162cda2708a4aa52dae5542eea5a28296bf.zip |
Bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/kombu')
-rw-r--r-- | dev-python/kombu/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/kombu/kombu-2.4.8.ebuild | 66 |
2 files changed, 72 insertions, 1 deletions
diff --git a/dev-python/kombu/ChangeLog b/dev-python/kombu/ChangeLog index 654d94a7b8b7..a11e1e051ef3 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.8 2012/09/28 10:04:10 iksaif Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v 1.9 2012/11/13 09:59:08 patrick Exp $ + +*kombu-2.4.8 (13 Nov 2012) + + 13 Nov 2012; Patrick Lauer <patrick@gentoo.org> +kombu-2.4.8.ebuild: + Bump *kombu-2.4.7 (28 Sep 2012) diff --git a/dev-python/kombu/kombu-2.4.8.ebuild b/dev-python/kombu/kombu-2.4.8.ebuild new file mode 100644 index 000000000000..71f28647ccdb --- /dev/null +++ b/dev-python/kombu/kombu-2.4.8.ebuild @@ -0,0 +1,66 @@ +# 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.8.ebuild,v 1.1 2012/11/13 09:59:08 patrick Exp $ + +EAPI="4" + +PYTHON_TESTS_RESTRICTED_ABIS="3.* 2.7-pypy-*" +PYTHON_DEPEND="*:2.7" +RESTRICT_PYTHON_ABIS="2.[4-6]" +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.2" +DEPEND="${RDEPEND} + test? ( dev-python/nose-cover3 + dev-python/mock + >=dev-python/unittest2-0.5.0 + 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/ +} |