Gentoo Archives: gentoo-commits

From: "Corentin Chary (iksaif)" <iksaif@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/kombu: kombu-2.2.0.ebuild ChangeLog
Date: Fri, 29 Jun 2012 15:46:00
Message-Id: 20120629154550.759A42004B@flycatcher.gentoo.org
1 iksaif 12/06/29 15:45:50
2
3 Modified: ChangeLog
4 Added: kombu-2.2.0.ebuild
5 Log:
6 Bump to 2.2.0. Closes #422723. Patch from Ian Delaney.
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/kombu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 30 May 2012 06:37:19 -0000 1.1
24 +++ ChangeLog 29 Jun 2012 15:45:50 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/kombu
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v 1.1 2012/05/30 06:37:19 iksaif Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/ChangeLog,v 1.2 2012/06/29 15:45:50 iksaif Exp $
30 +
31 +*kombu-2.2.0 (29 Jun 2012)
32 +
33 + 29 Jun 2012; Corentin Chary <iksaif@g.o> +kombu-2.2.0.ebuild:
34 + Bump to 2.2.0. Closes #422723. Patch from Ian Delaney.
35
36 *kombu-2.1.8 (30 May 2012)
37
38
39
40
41 1.1 dev-python/kombu/kombu-2.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/kombu-2.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kombu/kombu-2.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kombu-2.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/kombu/kombu-2.2.0.ebuild,v 1.1 2012/06/29 15:45:50 iksaif Exp $
51
52 EAPI="4"
53
54 PYTHON_DEPEND="*:2.5"
55 RESTRICT_PYTHON_ABIS="2.4"
56 SUPPORT_PYTHON_ABIS="1"
57 DISTUTILS_SRC_TEST="nosetests"
58
59 inherit distutils eutils
60
61 DESCRIPTION="AMQP Messaging Framework for Python"
62 HOMEPAGE="https://github.com/ask/kombu"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc examples test"
69
70 RDEPEND=">=dev-python/anyjson-0.3.1
71 >=dev-python/amqplib-1.0"
72 DEPEND="${RDEPEND}
73 test? ( dev-python/nose-cover3
74 dev-python/mock
75 dev-python/simplejson
76 dev-python/anyjson
77 dev-python/redis-py
78 dev-python/pymongo )
79 doc? ( dev-python/sphinx
80 dev-python/beanstalkc
81 dev-python/couchdb-python )
82 dev-python/setuptools"
83
84 src_prepare() {
85 if use test; then
86 epatch "${FILESDIR}/${PN}-2.1.1-add-assertIsInstance-with-unittest.patch"
87 fi
88 }
89
90 src_compile() {
91 distutils_src_compile
92 use doc && emake -C docs html
93 }
94
95 src_test() {
96 testing() {
97 nosetests --py3where build-${PYTHON_ABI}/lib/kombu/tests
98 }
99 python_execute_function testing
100 }
101
102 src_install() {
103 distutils_src_install
104 if use examples; then
105 docompress -x usr/share/doc/${P}/examples/
106 insinto usr/share/doc/${P}/
107 doins -r examples/
108 fi
109 use doc && dohtml -r docs/.build/html/
110 }