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/httplib2: httplib2-0.7.2.ebuild ChangeLog
Date: Wed, 30 Nov 2011 15:56:41
Message-Id: 20111130155632.777312004B@flycatcher.gentoo.org
1 neurogeek 11/11/30 15:56:32
2
3 Modified: ChangeLog
4 Added: httplib2-0.7.2.ebuild
5 Log:
6 Version bump. Dropped support for Py3.
7
8 (Portage version: 2.2.0_alpha46/cvs/Linux i686)
9
10 Revision Changes Path
11 1.27 dev-python/httplib2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/httplib2/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 24 Sep 2011 13:38:21 -0000 1.26
24 +++ ChangeLog 30 Nov 2011 15:56:32 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/httplib2
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.26 2011/09/24 13:38:21 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.27 2011/11/30 15:56:32 neurogeek Exp $
30 +
31 +*httplib2-0.7.2 (30 Nov 2011)
32 +
33 + 30 Nov 2011; Jesus Rivero <neurogeek@g.o> +httplib2-0.7.2.ebuild:
34 + Version bump. Dropped support for Py3.
35
36 24 Sep 2011; Fabian Groffen <grobian@g.o> httplib2-0.7.1.ebuild:
37 Marked ~x64-macos
38
39
40
41 1.1 dev-python/httplib2/httplib2-0.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/httplib2/httplib2-0.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/httplib2/httplib2-0.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: httplib2-0.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/httplib2-0.7.2.ebuild,v 1.1 2011/11/30 15:56:32 neurogeek Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 DESCRIPTION="A comprehensive HTTP client library"
59 HOMEPAGE="http://code.google.com/p/httplib2/ http://pypi.python.org/pypi/httplib2"
60 SRC_URI="http://httplib2.googlecode.com/files/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
65 IUSE=""
66
67 DEPEND=""
68 RDEPEND=""
69
70 RESTRICT_PYTHON_ABIS="3.*"
71 #Restrict Python 3 support until upstream
72 #issue #189 is solved
73
74 src_test() {
75 testing() {
76 pushd "python$(python_get_version --major)" > /dev/null
77 "$(PYTHON)" httplib2test.py
78 popd > /dev/null
79 }
80 python_execute_function testing
81 }