Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.54.0-r1.ebuild ChangeLog boost-1.53.0-r1.ebuild boost-1.55.0-r1.ebuild boost-1.52.0-r6.ebuild
Date: Mon, 28 Apr 2014 07:20:13
Message-Id: 20140428072008.994EB2004B@flycatcher.gentoo.org
1 pinkbyte 14/04/28 07:20:08
2
3 Modified: boost-1.54.0-r1.ebuild ChangeLog
4 boost-1.53.0-r1.ebuild boost-1.55.0-r1.ebuild
5 boost-1.52.0-r6.ebuild
6 Log:
7 Add apropriate die message on unsupported overriden site-config.jam, wrt bug #456792. Thanks to Raimar Sandner <gentoo-bugzilla AT 404not-found.de> for reporting this issue
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.4 dev-libs/boost/boost-1.54.0-r1.ebuild
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild?r1=1.3&r2=1.4
17
18 Index: boost-1.54.0-r1.ebuild
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- boost-1.54.0-r1.ebuild 7 Apr 2014 10:57:06 -0000 1.3
25 +++ boost-1.54.0-r1.ebuild 28 Apr 2014 07:20:08 -0000 1.4
26 @@ -1,6 +1,6 @@
27 # Copyright 1999-2014 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild,v 1.3 2014/04/07 10:57:06 pinkbyte Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.54.0-r1.ebuild,v 1.4 2014/04/28 07:20:08 pinkbyte Exp $
31
32 EAPI="5"
33 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
34 @@ -61,6 +61,19 @@
35 __EOF__
36 }
37
38 +pkg_setup() {
39 + # Bail out on unsupported build configuration, bug #456792
40 + if [[ -f "${EROOT}etc/site-config.jam" ]]; then
41 + grep -q gentoorelease "${EROOT}etc/site-config.jam" && grep -q gentoodebug "${EROOT}etc/site-config.jam" ||
42 + (
43 + eerror "You are using custom ${EROOT}etc/site-config.jam without defined gentoorelease/gentoodebug targets."
44 + eerror "Boost can not be built in such configuration."
45 + eerror "Please, either remove this file or add targets from ${EROOT}usr/share/boost-build/site-config.jam to it."
46 + die
47 + )
48 + fi
49 +}
50 +
51 src_prepare() {
52 epatch \
53 "${FILESDIR}/${PN}-1.48.0-mpi_python3.patch" \
54
55
56
57 1.317 dev-libs/boost/ChangeLog
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.317&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.317&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.316&r2=1.317
62
63 Index: ChangeLog
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
66 retrieving revision 1.316
67 retrieving revision 1.317
68 diff -u -r1.316 -r1.317
69 --- ChangeLog 15 Apr 2014 15:56:31 -0000 1.316
70 +++ ChangeLog 28 Apr 2014 07:20:08 -0000 1.317
71 @@ -1,6 +1,12 @@
72 # ChangeLog for dev-libs/boost
73 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
74 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.316 2014/04/15 15:56:31 pinkbyte Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.317 2014/04/28 07:20:08 pinkbyte Exp $
76 +
77 + 28 Apr 2014; Sergey Popov <pinkbyte@g.o> boost-1.52.0-r6.ebuild,
78 + boost-1.53.0-r1.ebuild, boost-1.54.0-r1.ebuild, boost-1.55.0-r1.ebuild:
79 + Add apropriate die message on unsupported overriden site-config.jam, wrt bug
80 + #456792. Thanks to Raimar Sandner <gentoo-bugzilla AT 404not-found.de> for
81 + reporting this issue
82
83 15 Apr 2014; Sergey Popov <pinkbyte@g.o>
84 -files/boost-1.48.0-respect_python-buildid.patch,
85
86
87
88 1.4 dev-libs/boost/boost-1.53.0-r1.ebuild
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild?rev=1.4&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild?rev=1.4&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild?r1=1.3&r2=1.4
93
94 Index: boost-1.53.0-r1.ebuild
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild,v
97 retrieving revision 1.3
98 retrieving revision 1.4
99 diff -u -r1.3 -r1.4
100 --- boost-1.53.0-r1.ebuild 7 Apr 2014 10:57:06 -0000 1.3
101 +++ boost-1.53.0-r1.ebuild 28 Apr 2014 07:20:08 -0000 1.4
102 @@ -1,6 +1,6 @@
103 # Copyright 1999-2014 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild,v 1.3 2014/04/07 10:57:06 pinkbyte Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.53.0-r1.ebuild,v 1.4 2014/04/28 07:20:08 pinkbyte Exp $
107
108 EAPI="5"
109 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
110 @@ -61,6 +61,19 @@
111 __EOF__
112 }
113
114 +pkg_setup() {
115 + # Bail out on unsupported build configuration, bug #456792
116 + if [[ -f "${EROOT}etc/site-config.jam" ]]; then
117 + grep -q gentoorelease "${EROOT}etc/site-config.jam" && grep -q gentoodebug "${EROOT}etc/site-config.jam" ||
118 + (
119 + eerror "You are using custom ${EROOT}etc/site-config.jam without defined gentoorelease/gentoodebug targets."
120 + eerror "Boost can not be built in such configuration."
121 + eerror "Please, either remove this file or add targets from ${EROOT}usr/share/boost-build/site-config.jam to it."
122 + die
123 + )
124 + fi
125 +}
126 +
127 src_prepare() {
128 epatch \
129 "${FILESDIR}/${PN}-1.48.0-mpi_python3.patch" \
130
131
132
133 1.5 dev-libs/boost/boost-1.55.0-r1.ebuild
134
135 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild?rev=1.5&view=markup
136 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild?rev=1.5&content-type=text/plain
137 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild?r1=1.4&r2=1.5
138
139 Index: boost-1.55.0-r1.ebuild
140 ===================================================================
141 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild,v
142 retrieving revision 1.4
143 retrieving revision 1.5
144 diff -u -r1.4 -r1.5
145 --- boost-1.55.0-r1.ebuild 7 Apr 2014 10:57:06 -0000 1.4
146 +++ boost-1.55.0-r1.ebuild 28 Apr 2014 07:20:08 -0000 1.5
147 @@ -1,6 +1,6 @@
148 # Copyright 1999-2014 Gentoo Foundation
149 # Distributed under the terms of the GNU General Public License v2
150 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild,v 1.4 2014/04/07 10:57:06 pinkbyte Exp $
151 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.55.0-r1.ebuild,v 1.5 2014/04/28 07:20:08 pinkbyte Exp $
152
153 EAPI="5"
154 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
155 @@ -69,6 +69,19 @@
156 __EOF__
157 }
158
159 +pkg_setup() {
160 + # Bail out on unsupported build configuration, bug #456792
161 + if [[ -f "${EROOT}etc/site-config.jam" ]]; then
162 + grep -q gentoorelease "${EROOT}etc/site-config.jam" && grep -q gentoodebug "${EROOT}etc/site-config.jam" ||
163 + (
164 + eerror "You are using custom ${EROOT}etc/site-config.jam without defined gentoorelease/gentoodebug targets."
165 + eerror "Boost can not be built in such configuration."
166 + eerror "Please, either remove this file or add targets from ${EROOT}usr/share/boost-build/site-config.jam to it."
167 + die
168 + )
169 + fi
170 +}
171 +
172 src_prepare() {
173 epatch \
174 "${FILESDIR}/${PN}-1.51.0-respect_python-buildid.patch" \
175
176
177
178 1.15 dev-libs/boost/boost-1.52.0-r6.ebuild
179
180 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild?rev=1.15&view=markup
181 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild?rev=1.15&content-type=text/plain
182 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild?r1=1.14&r2=1.15
183
184 Index: boost-1.52.0-r6.ebuild
185 ===================================================================
186 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild,v
187 retrieving revision 1.14
188 retrieving revision 1.15
189 diff -u -r1.14 -r1.15
190 --- boost-1.52.0-r6.ebuild 7 Apr 2014 10:17:50 -0000 1.14
191 +++ boost-1.52.0-r6.ebuild 28 Apr 2014 07:20:08 -0000 1.15
192 @@ -1,6 +1,6 @@
193 # Copyright 1999-2014 Gentoo Foundation
194 # Distributed under the terms of the GNU General Public License v2
195 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild,v 1.14 2014/04/07 10:17:50 pinkbyte Exp $
196 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.52.0-r6.ebuild,v 1.15 2014/04/28 07:20:08 pinkbyte Exp $
197
198 EAPI="5"
199 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
200 @@ -60,6 +60,19 @@
201 __EOF__
202 }
203
204 +pkg_setup() {
205 + # Bail out on unsupported build configuration, bug #456792
206 + if [[ -f "${EROOT}etc/site-config.jam" ]]; then
207 + grep -q gentoorelease "${EROOT}etc/site-config.jam" && grep -q gentoodebug "${EROOT}etc/site-config.jam" ||
208 + (
209 + eerror "You are using custom ${EROOT}etc/site-config.jam without defined gentoorelease/gentoodebug targets."
210 + eerror "Boost can not be built in such configuration."
211 + eerror "Please, either remove this file or add targets from ${EROOT}usr/share/boost-build/site-config.jam to it."
212 + die
213 + )
214 + fi
215 +}
216 +
217 src_prepare() {
218 epatch \
219 "${FILESDIR}/${PN}-1.48.0-mpi_python3.patch" \