Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-ldap: python-ldap-9999.ebuild python-ldap-2.3.13.ebuild python-ldap-2.4.10.ebuild python-ldap-2.4.13.ebuild python-ldap-2.4.10-r1.ebuild python-ldap-2.4.12.ebuild ChangeLog
Date: Tue, 02 Jul 2013 14:51:27
Message-Id: 20130702145122.11EA52171C@flycatcher.gentoo.org
1 floppym 13/07/02 14:51:21
2
3 Modified: python-ldap-9999.ebuild python-ldap-2.3.13.ebuild
4 python-ldap-2.4.10.ebuild python-ldap-2.4.13.ebuild
5 python-ldap-2.4.10-r1.ebuild
6 python-ldap-2.4.12.ebuild ChangeLog
7 Log:
8 Unquote eprefix in sed call, bug 475072.
9
10 (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
11
12 Revision Changes Path
13 1.3 dev-python/python-ldap/python-ldap-9999.ebuild
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild?rev=1.3&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild?rev=1.3&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild?r1=1.2&r2=1.3
18
19 Index: python-ldap-9999.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild,v
22 retrieving revision 1.2
23 retrieving revision 1.3
24 diff -u -r1.2 -r1.3
25 --- python-ldap-9999.ebuild 27 Jun 2013 18:01:50 -0000 1.2
26 +++ python-ldap-9999.ebuild 2 Jul 2013 14:51:21 -0000 1.3
27 @@ -1,6 +1,6 @@
28 # Copyright 1999-2013 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild,v 1.2 2013/06/27 18:01:50 xmw Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-9999.ebuild,v 1.3 2013/07/02 14:51:21 floppym Exp $
32
33 EAPI=5
34
35 @@ -34,7 +34,7 @@
36
37 python_prepare_all() {
38 sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \
39 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
40 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
41 -i setup.cfg || die "error fixing setup.cfg"
42
43 local mylibs="ldap"
44
45
46
47 1.16 dev-python/python-ldap/python-ldap-2.3.13.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild?rev=1.16&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild?rev=1.16&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild?r1=1.15&r2=1.16
52
53 Index: python-ldap-2.3.13.ebuild
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild,v
56 retrieving revision 1.15
57 retrieving revision 1.16
58 diff -u -r1.15 -r1.16
59 --- python-ldap-2.3.13.ebuild 27 Jun 2013 14:29:10 -0000 1.15
60 +++ python-ldap-2.3.13.ebuild 2 Jul 2013 14:51:21 -0000 1.16
61 @@ -1,6 +1,6 @@
62 # Copyright 1999-2013 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild,v 1.15 2013/06/27 14:29:10 xmw Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild,v 1.16 2013/07/02 14:51:21 floppym Exp $
66
67 EAPI="3"
68 PYTHON_DEPEND="2"
69 @@ -34,10 +34,10 @@
70 src_prepare() {
71 local rpath=
72 # sloppy logic, maybe better check if compiler links with GNU-ld
73 - [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=\"${EPREFIX}\"/usr/$(get_libdir)/sasl2"
74 + [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=${EPREFIX}/usr/$(get_libdir)/sasl2"
75 # Note: we can't add /usr/lib and /usr/lib/sasl2 to library_dirs due to a bug in py2.4
76 sed -e "s:^library_dirs =.*:library_dirs =:" \
77 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
78 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
79 -e "s:\(extra_compile_args =\).*:\1\nextra_link_args = ${rpath}:" \
80 -i setup.cfg || die "error fixing setup.cfg"
81
82
83
84
85 1.11 dev-python/python-ldap/python-ldap-2.4.10.ebuild
86
87 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild?rev=1.11&view=markup
88 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild?rev=1.11&content-type=text/plain
89 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild?r1=1.10&r2=1.11
90
91 Index: python-ldap-2.4.10.ebuild
92 ===================================================================
93 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild,v
94 retrieving revision 1.10
95 retrieving revision 1.11
96 diff -u -r1.10 -r1.11
97 --- python-ldap-2.4.10.ebuild 27 Jun 2013 14:29:10 -0000 1.10
98 +++ python-ldap-2.4.10.ebuild 2 Jul 2013 14:51:21 -0000 1.11
99 @@ -1,6 +1,6 @@
100 # Copyright 1999-2013 Gentoo Foundation
101 # Distributed under the terms of the GNU General Public License v2
102 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild,v 1.10 2013/06/27 14:29:10 xmw Exp $
103 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild,v 1.11 2013/07/02 14:51:21 floppym Exp $
104
105 EAPI=4
106
107 @@ -33,10 +33,10 @@
108 src_prepare() {
109 local rpath=
110 # sloppy logic, maybe better check if compiler links with GNU-ld
111 - [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=\"${EPREFIX}\"/usr/$(get_libdir)/sasl2"
112 + [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=${EPREFIX}/usr/$(get_libdir)/sasl2"
113 # Note: we can't add /usr/lib and /usr/lib/sasl2 to library_dirs due to a bug in py2.4
114 sed -e "s:^library_dirs =.*:library_dirs =:" \
115 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
116 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
117 -e "s:\(extra_compile_args =\).*:\1\nextra_link_args = ${rpath}:" \
118 -i setup.cfg || die "error fixing setup.cfg"
119
120
121
122
123 1.3 dev-python/python-ldap/python-ldap-2.4.13.ebuild
124
125 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild?rev=1.3&view=markup
126 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild?rev=1.3&content-type=text/plain
127 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild?r1=1.2&r2=1.3
128
129 Index: python-ldap-2.4.13.ebuild
130 ===================================================================
131 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild,v
132 retrieving revision 1.2
133 retrieving revision 1.3
134 diff -u -r1.2 -r1.3
135 --- python-ldap-2.4.13.ebuild 27 Jun 2013 14:29:10 -0000 1.2
136 +++ python-ldap-2.4.13.ebuild 2 Jul 2013 14:51:21 -0000 1.3
137 @@ -1,6 +1,6 @@
138 # Copyright 1999-2013 Gentoo Foundation
139 # Distributed under the terms of the GNU General Public License v2
140 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild,v 1.2 2013/06/27 14:29:10 xmw Exp $
141 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.13.ebuild,v 1.3 2013/07/02 14:51:21 floppym Exp $
142
143 EAPI=5
144
145 @@ -29,7 +29,7 @@
146
147 python_prepare_all() {
148 sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \
149 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
150 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
151 -i setup.cfg || die "error fixing setup.cfg"
152
153 local mylibs="ldap"
154
155
156
157 1.5 dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild
158
159 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild?rev=1.5&view=markup
160 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild?rev=1.5&content-type=text/plain
161 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild?r1=1.4&r2=1.5
162
163 Index: python-ldap-2.4.10-r1.ebuild
164 ===================================================================
165 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild,v
166 retrieving revision 1.4
167 retrieving revision 1.5
168 diff -u -r1.4 -r1.5
169 --- python-ldap-2.4.10-r1.ebuild 27 Jun 2013 14:29:10 -0000 1.4
170 +++ python-ldap-2.4.10-r1.ebuild 2 Jul 2013 14:51:21 -0000 1.5
171 @@ -1,6 +1,6 @@
172 # Copyright 1999-2013 Gentoo Foundation
173 # Distributed under the terms of the GNU General Public License v2
174 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild,v 1.4 2013/06/27 14:29:10 xmw Exp $
175 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild,v 1.5 2013/07/02 14:51:21 floppym Exp $
176
177 EAPI=5
178
179 @@ -29,7 +29,7 @@
180
181 python_prepare_all() {
182 sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \
183 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
184 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
185 -i setup.cfg || die "error fixing setup.cfg"
186
187 local mylibs="ldap"
188
189
190
191 1.3 dev-python/python-ldap/python-ldap-2.4.12.ebuild
192
193 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild?rev=1.3&view=markup
194 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild?rev=1.3&content-type=text/plain
195 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild?r1=1.2&r2=1.3
196
197 Index: python-ldap-2.4.12.ebuild
198 ===================================================================
199 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild,v
200 retrieving revision 1.2
201 retrieving revision 1.3
202 diff -u -r1.2 -r1.3
203 --- python-ldap-2.4.12.ebuild 27 Jun 2013 14:29:10 -0000 1.2
204 +++ python-ldap-2.4.12.ebuild 2 Jul 2013 14:51:21 -0000 1.3
205 @@ -1,6 +1,6 @@
206 # Copyright 1999-2013 Gentoo Foundation
207 # Distributed under the terms of the GNU General Public License v2
208 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild,v 1.2 2013/06/27 14:29:10 xmw Exp $
209 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.12.ebuild,v 1.3 2013/07/02 14:51:21 floppym Exp $
210
211 EAPI=5
212
213 @@ -29,7 +29,7 @@
214
215 python_prepare_all() {
216 sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \
217 - -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \
218 + -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
219 -i setup.cfg || die "error fixing setup.cfg"
220
221 local mylibs="ldap"
222
223
224
225 1.128 dev-python/python-ldap/ChangeLog
226
227 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?rev=1.128&view=markup
228 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?rev=1.128&content-type=text/plain
229 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?r1=1.127&r2=1.128
230
231 Index: ChangeLog
232 ===================================================================
233 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v
234 retrieving revision 1.127
235 retrieving revision 1.128
236 diff -u -r1.127 -r1.128
237 --- ChangeLog 27 Jun 2013 18:01:50 -0000 1.127
238 +++ ChangeLog 2 Jul 2013 14:51:21 -0000 1.128
239 @@ -1,6 +1,11 @@
240 # ChangeLog for dev-python/python-ldap
241 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
242 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.127 2013/06/27 18:01:50 xmw Exp $
243 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.128 2013/07/02 14:51:21 floppym Exp $
244 +
245 + 02 Jul 2013; Mike Gilbert <floppym@g.o> python-ldap-2.3.13.ebuild,
246 + python-ldap-2.4.10-r1.ebuild, python-ldap-2.4.10.ebuild,
247 + python-ldap-2.4.12.ebuild, python-ldap-2.4.13.ebuild, python-ldap-9999.ebuild:
248 + Unquote eprefix in sed call, bug 475072.
249
250 27 Jun 2013; Michael Weber <xmw@g.o> python-ldap-9999.ebuild:
251 no parallel, in-source build, fix python2.5 syntax via sed.