Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/httplib2: httplib2-0.5.0.ebuild ChangeLog httplib2-0.3.0.ebuild httplib2-0.4.0.ebuild
Date: Sat, 29 Aug 2009 16:56:17
Message-Id: E1MhW2v-00086X-MB@stork.gentoo.org
1 arfrever 09/08/29 22:05:17
2
3 Modified: ChangeLog
4 Added: httplib2-0.5.0.ebuild
5 Removed: httplib2-0.3.0.ebuild httplib2-0.4.0.ebuild
6 Log:
7 Version bump. Set SUPPORT_PYTHON_ABIS.
8 (Portage version: 14170-svn/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 dev-python/httplib2/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 21 May 2009 20:39:52 -0000 1.11
24 +++ ChangeLog 29 Aug 2009 22:05:17 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/httplib2
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.11 2009/05/21 20:39:52 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.12 2009/08/29 22:05:17 arfrever Exp $
30 +
31 +*httplib2-0.5.0 (29 Aug 2009)
32 +
33 + 29 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -httplib2-0.3.0.ebuild, -httplib2-0.4.0.ebuild, +httplib2-0.5.0.ebuild:
35 + Version bump. Set SUPPORT_PYTHON_ABIS.
36
37 21 May 2009; Brent Baude <ranger@g.o> httplib2-0.4.0-r1.ebuild:
38 stable ppc, bug 269398
39
40
41
42 1.1 dev-python/httplib2/httplib2-0.5.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/httplib2-0.5.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/httplib2/httplib2-0.5.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: httplib2-0.5.0.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.5.0.ebuild,v 1.1 2009/08/29 22:05:17 arfrever Exp $
52
53 EAPI="2"
54
55 NEED_PYTHON="2.3"
56 SUPPORT_PYTHON_ABIS="1"
57
58 inherit distutils
59
60 DESCRIPTION="A comprehensive HTTP client library with caching and authentication."
61 HOMEPAGE="http://code.google.com/p/httplib2/ http://pypi.python.org/pypi/httplib2"
62 SRC_URI="http://httplib2.googlecode.com/files/${P}.tar.gz
63 http://httplib2.googlecode.com/files/${PN}-python3-${PV}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE=""
69
70 DEPEND=""
71 RDEPEND=""
72
73 src_prepare() {
74 distutils_src_prepare
75 python_copy_sources
76
77 local dir
78 for dir in "${WORKDIR}/${P}-3"*; do
79 if [[ -d "${dir}" ]]; then
80 rm -fr "${dir}" || die
81 cp -lpr "${WORKDIR}/${PN}-python3-${PV}" "${dir}" || die
82 fi
83 done
84 }
85
86 src_compile() {
87 building() {
88 echo "$(PYTHON)" setup.py build
89 "$(PYTHON)" setup.py build
90 }
91 python_execute_function -s building
92 }
93
94 src_install() {
95 installation() {
96 "$(PYTHON)" setup.py install --root="${D}" --no-compile
97 }
98 python_execute_function -s installation
99
100 dodoc README
101 newdoc "${WORKDIR}/${PN}-python3-${PV}/README" README-python3
102 }