Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/amqplib: ChangeLog amqplib-1.0.2.ebuild
Date: Fri, 02 Mar 2012 22:15:28
Message-Id: 20120302221519.5B4132004C@flycatcher.gentoo.org
1 neurogeek 12/03/02 22:15:19
2
3 Modified: ChangeLog amqplib-1.0.2.ebuild
4 Log:
5 Added Python3 support and some patches to the tests
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 dev-python/amqplib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/amqplib/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 25 Dec 2011 14:54:35 -0000 1.2
23 +++ ChangeLog 2 Mar 2012 22:15:19 -0000 1.3
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/amqplib
26 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/amqplib/ChangeLog,v 1.2 2011/12/25 14:54:35 patrick Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/amqplib/ChangeLog,v 1.3 2012/03/02 22:15:19 neurogeek Exp $
30 +
31 + 02 Mar 2012; Jesus Rivero <neurogeek@g.o> amqplib-1.0.2.ebuild,
32 + +files/amqplib-1.0.2-unicode_tests_py3.patch:
33 + Added Python3 support and some patches to the tests
34
35 *amqplib-1.0.2 (25 Dec 2011)
36
37
38
39
40 1.2 dev-python/amqplib/amqplib-1.0.2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild?r1=1.1&r2=1.2
45
46 Index: amqplib-1.0.2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- amqplib-1.0.2.ebuild 25 Dec 2011 14:54:35 -0000 1.1
53 +++ amqplib-1.0.2.ebuild 2 Mar 2012 22:15:19 -0000 1.2
54 @@ -1,9 +1,9 @@
55 -# Copyright 1999-2011 Gentoo Foundation
56 +# Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild,v 1.1 2011/12/25 14:54:35 patrick Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-python/amqplib/amqplib-1.0.2.ebuild,v 1.2 2012/03/02 22:15:19 neurogeek Exp $
60
61 EAPI="3"
62 -PYTHON_DEPEND="2"
63 +PYTHON_DEPEND="2 3"
64 SUPPORT_PYTHON_ABIS="1"
65
66 inherit distutils eutils
67 @@ -20,11 +20,10 @@
68 RDEPEND=""
69 DEPEND="${RDEPEND}"
70
71 -RESTRICT_PYTHON_ABIS="3.*"
72 -
73 src_prepare() {
74 if use test; then
75 epatch "${FILESDIR}/${PN}-0.6.1_disable_socket_tests.patch"
76 + epatch "${FILESDIR}/${P}-unicode_tests_py3.patch"
77 fi
78 }