Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/httplib2: ChangeLog httplib2-0.4.0-r1.ebuild
Date: Thu, 23 Apr 2009 09:10:42
Message-Id: E1Lwux5-0003dx-2L@stork.gentoo.org
1 patrick 09/04/23 09:10:39
2
3 Modified: ChangeLog
4 Added: httplib2-0.4.0-r1.ebuild
5 Log:
6 Py 2.6 deprecation fix. Thanks to djc for pointing it out, thanks to Benoit Chesneau for the patch. Fixes #267184
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-python/httplib2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 14 Apr 2009 09:45:48 -0000 1.8
23 +++ ChangeLog 23 Apr 2009 09:10:39 -0000 1.9
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-python/httplib2
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.8 2009/04/14 09:45:48 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.9 2009/04/23 09:10:39 patrick Exp $
29 +
30 +*httplib2-0.4.0-r1 (23 Apr 2009)
31 +
32 + 23 Apr 2009; Patrick Lauer <patrick@g.o>
33 + +files/compat-2.6-0.4.0.patch, +httplib2-0.4.0-r1.ebuild:
34 + Py 2.6 deprecation fix. Thanks to djc for pointing it out, thanks to
35 + Benoit Chesneau for the patch. Fixes #267184
36
37 14 Apr 2009; Raúl Porcel <armin76@g.o> httplib2-0.4.0.ebuild:
38 x86 stable wrt #264496
39
40
41
42 1.1 dev-python/httplib2/httplib2-0.4.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/httplib2-0.4.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/httplib2-0.4.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: httplib2-0.4.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/httplib2-0.4.0-r1.ebuild,v 1.1 2009/04/23 09:10:39 patrick Exp $
52
53 NEED_PYTHON=2.3
54
55 inherit distutils
56
57 DESCRIPTION="A comprehensive HTTP client library with caching and authentication."
58 HOMEPAGE="http://code.google.com/p/httplib2/"
59 SRC_URI="http://httplib2.googlecode.com/files/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 IUSE=""
66
67 src_unpack() {
68 distutils_src_unpack
69 epatch "${FILESDIR}"/compat-2.6-${PV}.patch
70 }