Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/kombu: kombu-2.5.16.ebuild
Date: Fri, 24 Jul 2015 06:12:46
Message-Id: 20150724061240.30029C3@oystercatcher.gentoo.org
1 prometheanfire 15/07/24 06:12:40
2
3 Added: kombu-2.5.16.ebuild
4 Log:
5 (re)moving suds-jurko, it's taking over suds now
6
7 Revision Changes Path
8 1.1 dev-python/kombu/kombu-2.5.16.ebuild
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/kombu-2.5.16.ebuild?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/kombu-2.5.16.ebuild?rev=1.1&content-type=text/plain
12
13 Index: kombu-2.5.16.ebuild
14 ===================================================================
15 # Copyright 1999-2015 Gentoo Foundation
16 # Distributed under the terms of the GNU General Public License v2
17 # $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/kombu-2.5.16.ebuild,v 1.1 2015/07/24 06:12:40 prometheanfire Exp $
18
19 EAPI=5
20
21 PYTHON_COMPAT=( python{2_7,3_3} )
22
23 inherit distutils-r1
24
25 DESCRIPTION="AMQP Messaging Framework for Python"
26 HOMEPAGE="http://pypi.python.org/pypi/kombu https://github.com/celery/kombu"
27 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
28
29 LICENSE="BSD"
30 SLOT="0"
31 KEYWORDS="~amd64 ~x86"
32 IUSE="amqplib doc examples test"
33
34 RDEPEND=">=dev-python/anyjson-0.3.3[${PYTHON_USEDEP}]
35 >=dev-python/py-amqp-1.3.0[${PYTHON_USEDEP}]
36 <dev-python/py-amqp-2.0[${PYTHON_USEDEP}]
37 amqplib? ( >=dev-python/amqplib-1.0.2[${PYTHON_USEDEP}] )"
38 DEPEND="${RDEPEND}
39 doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
40 dev-python/django[${PYTHON_USEDEP}]
41 dev-python/beanstalkc[$(python_gen_usedep python2_7)]
42 dev-python/couchdb-python[$(python_gen_usedep python2_7)]
43 >=dev-python/sphinxcontrib-issuetracker-0.9[${PYTHON_USEDEP}] )
44 dev-python/setuptools[${PYTHON_USEDEP}]"
45
46 python_compile_all() {
47 if use doc; then
48 emake -C docs html || die "kombu docs failed installation"
49 fi
50 }
51
52 python_install_all() {
53 use examples && local EXAMPLES=( examples/. )
54 use doc && local HTML_DOCS=( docs/.build/html/. )
55 distutils-r1_python_install_all
56 }