diff options
author | Corentin Chary <iksaif@gentoo.org> | 2013-01-23 09:31:55 +0000 |
---|---|---|
committer | Corentin Chary <iksaif@gentoo.org> | 2013-01-23 09:31:55 +0000 |
commit | 9d7b2217d9cd231884dfa93973938a2a66edb0c3 (patch) | |
tree | 478ebbb96539a2f23f52e73afd054f3546091fec /dev-python/kombu/kombu-2.5.4-r1.ebuild | |
parent | Revision bump: EAPI 5, utilize autotools-utils eclass, add support for instal... (diff) | |
download | gentoo-2-9d7b2217d9cd231884dfa93973938a2a66edb0c3.tar.gz gentoo-2-9d7b2217d9cd231884dfa93973938a2a66edb0c3.tar.bz2 gentoo-2-9d7b2217d9cd231884dfa93973938a2a66edb0c3.zip |
Remove unittest2 dependency.
(Portage version: 2.1.11.38/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/kombu/kombu-2.5.4-r1.ebuild')
-rw-r--r-- | dev-python/kombu/kombu-2.5.4-r1.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/dev-python/kombu/kombu-2.5.4-r1.ebuild b/dev-python/kombu/kombu-2.5.4-r1.ebuild new file mode 100644 index 000000000000..e98d03990d4c --- /dev/null +++ b/dev-python/kombu/kombu-2.5.4-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/kombu-2.5.4-r1.ebuild,v 1.1 2013/01/23 09:31:55 iksaif Exp $ + +EAPI="4" + +PYTHON_TESTS_RESTRICTED_ABIS="3.* 2.7-pypy-*" +PYTHON_DEPEND="*:2.7" +RESTRICT_PYTHON_ABIS="2.[56]" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="AMQP Messaging Framework for Python" +HOMEPAGE="http://pypi.python.org/pypi/kombu https://github.com/celery/kombu" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="amqplib doc examples test" + +RDEPEND=">=dev-python/anyjson-0.3.3 + amqplib? ( >=dev-python/amqplib-1.0.2 ) + >=dev-python/py-amqp-1.0.6" +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/django + dev-python/beanstalkc + dev-python/couchdb-python ) + dev-python/setuptools" + +src_compile() { + distutils_src_compile + + local SPHINXBUILD + if use doc; then + if python2.7 -c "import django.conf" &> /dev/null; then + SPHINXBUILD="sphinx-build-2.7" + else + die "kombu docs failed installation" + fi + einfo "building docs for kombu with python2.7" + PYTHONPATH="${S}" emake -C docs html SPHINXBUILD="${SPHINXBUILD}" + fi +} + +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/${PF}/ + doins -r examples/ + fi + use doc && dohtml -r docs/.build/html/ +} |