| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.26 2010/08/22 07:28:24 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.38 2011/07/22 09:41:17 graaff Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: ruby-ng.eclass |
5 | # @ECLASS: ruby-ng.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 44 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 45 | # A String or Array of filenames of patches to apply to all implementations. |
45 | # A String or Array of filenames of patches to apply to all implementations. |
| 46 | |
46 | |
| 47 | # @ECLASS-VARIABLE: RUBY_OPTIONAL |
47 | # @ECLASS-VARIABLE: RUBY_OPTIONAL |
| 48 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 49 | # Set the value to "yes" to make the dependency on a Ruby interpreter optional. |
49 | # Set the value to "yes" to make the dependency on a Ruby interpreter |
|
|
50 | # optional and then ruby_implementations_depend() to help populate |
|
|
51 | # DEPEND and RDEPEND. |
|
|
52 | |
|
|
53 | # @ECLASS-VARIABLE: RUBY_S |
|
|
54 | # @DEFAULT_UNSET |
|
|
55 | # @DESCRIPTION: |
|
|
56 | # If defined this variable determines the source directory name after |
|
|
57 | # unpacking. This defaults to the name of the package. Note that this |
|
|
58 | # variable supports a wildcard mechanism to help with github tarballs |
|
|
59 | # that contain the commit hash as part of the directory name. |
|
|
60 | |
|
|
61 | # @ECLASS-VARIABLE: RUBY_QA_ALLOWED_LIBS |
|
|
62 | # @DEFAULT_UNSET |
|
|
63 | # @DESCRIPTION: |
|
|
64 | # If defined this variable contains a whitelist of shared objects that |
|
|
65 | # are allowed to exist even if they don't link to libruby. This avoids |
|
|
66 | # the QA check that makes this mandatory. This is most likely not what |
|
|
67 | # you are looking for if you get the related "Missing links" QA warning, |
|
|
68 | # since the proper fix is almost always to make sure the shared object |
|
|
69 | # is linked against libruby. There are cases were this is not the case |
|
|
70 | # and the shared object is generic code to be used in some other way |
|
|
71 | # (e.g. selenium's firefox driver extension). When set this argument is |
|
|
72 | # passed to "grep -E" to remove reporting of these shared objects. |
| 50 | |
73 | |
| 51 | inherit eutils toolchain-funcs |
74 | inherit eutils toolchain-funcs |
| 52 | |
75 | |
| 53 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
76 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
| 54 | |
77 | |
| 55 | case ${EAPI} in |
78 | case ${EAPI} in |
| 56 | 0|1) |
79 | 0|1) |
| 57 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
80 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
| 58 | 2|3) ;; |
81 | 2|3) ;; |
|
|
82 | 4) |
|
|
83 | # S is no longer automatically assigned when it doesn't exist. |
|
|
84 | S="${WORKDIR}" |
|
|
85 | ;; |
| 59 | *) |
86 | *) |
| 60 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
87 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
| 61 | esac |
88 | esac |
| 62 | |
89 | |
| 63 | # @FUNCTION: ruby_implementation_depend |
90 | # @FUNCTION: ruby_implementation_depend |
| … | |
… | |
| 129 | done |
156 | done |
| 130 | echo ")" |
157 | echo ")" |
| 131 | eshopts_pop |
158 | eshopts_pop |
| 132 | } |
159 | } |
| 133 | |
160 | |
|
|
161 | # @FUNCTION: ruby_implementation_command |
|
|
162 | # @RETURN: the path to the given ruby implementation |
|
|
163 | # @DESCRIPTION: |
|
|
164 | # Not all implementations have the same command basename as the |
|
|
165 | # target; namely Ruby Enterprise 1.8 uses ree18 and rubyee18 |
|
|
166 | # respectively. This function translate between the two |
|
|
167 | ruby_implementation_command() { |
|
|
168 | local _ruby_name=$1 |
|
|
169 | |
|
|
170 | # Add all USE_RUBY values where the flag name diverts from the binary here |
|
|
171 | case $1 in |
|
|
172 | ree18) |
|
|
173 | _ruby_name=rubyee18 |
|
|
174 | ;; |
|
|
175 | esac |
|
|
176 | |
|
|
177 | echo $(type -p ${_ruby_name} 2>/dev/null) |
|
|
178 | } |
|
|
179 | |
| 134 | _ruby_atoms_samelib() { |
180 | _ruby_atoms_samelib() { |
| 135 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
181 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
| 136 | |
182 | |
| 137 | for _ruby_implementation in $USE_RUBY; do |
183 | for _ruby_implementation in $USE_RUBY; do |
| 138 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
184 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
| … | |
… | |
| 180 | RDEPEND="${RDEPEND} $dependency" |
226 | RDEPEND="${RDEPEND} $dependency" |
| 181 | |
227 | |
| 182 | # Add the dependency as a test-dependency since we're going to |
228 | # Add the dependency as a test-dependency since we're going to |
| 183 | # execute the code during test phase. |
229 | # execute the code during test phase. |
| 184 | DEPEND="${DEPEND} test? ( ${dependency} )" |
230 | DEPEND="${DEPEND} test? ( ${dependency} )" |
| 185 | hasq test "$IUSE" || IUSE="${IUSE} test" |
231 | has test "$IUSE" || IUSE="${IUSE} test" |
| 186 | } |
232 | } |
| 187 | |
233 | |
| 188 | # @FUNCTION: ruby_add_bdepend |
234 | # @FUNCTION: ruby_add_bdepend |
| 189 | # @USAGE: dependencies |
235 | # @USAGE: dependencies |
| 190 | # @DESCRIPTION: |
236 | # @DESCRIPTION: |
| … | |
… | |
| 211 | |
257 | |
| 212 | DEPEND="${DEPEND} $dependency" |
258 | DEPEND="${DEPEND} $dependency" |
| 213 | RDEPEND="${RDEPEND}" |
259 | RDEPEND="${RDEPEND}" |
| 214 | } |
260 | } |
| 215 | |
261 | |
|
|
262 | # @FUNCTION: ruby_get_use_implementations |
|
|
263 | # @DESCRIPTION: |
|
|
264 | # Gets an array of ruby use targets enabled by the user |
|
|
265 | ruby_get_use_implementations() { |
|
|
266 | local i implementation |
|
|
267 | for implementation in ${USE_RUBY}; do |
|
|
268 | use ruby_targets_${implementation} && i+=" ${implementation}" |
|
|
269 | done |
|
|
270 | echo $i |
|
|
271 | } |
|
|
272 | |
|
|
273 | # @FUNCTION: ruby_get_use_targets |
|
|
274 | # @DESCRIPTION: |
|
|
275 | # Gets an array of ruby use targets that the ebuild sets |
|
|
276 | ruby_get_use_targets() { |
|
|
277 | local t implementation |
|
|
278 | for implementation in ${USE_RUBY}; do |
|
|
279 | t+=" ruby_targets_${implementation}" |
|
|
280 | done |
|
|
281 | echo $t |
|
|
282 | } |
|
|
283 | |
|
|
284 | if [[ ${EAPI:-0} -ge 4 && ${RUBY_OPTIONAL} != "yes" ]]; then |
|
|
285 | REQUIRED_USE=" || ( $(ruby_get_use_targets) )" |
|
|
286 | fi |
|
|
287 | |
|
|
288 | # @FUNCTION: ruby_implementations_depend |
|
|
289 | # @RETURN: Dependencies suitable for injection into DEPEND and RDEPEND. |
|
|
290 | # @DESCRIPTION: |
|
|
291 | # Produces the dependency string for the various implementations of ruby |
|
|
292 | # which the package is being built against. This should not be used when |
|
|
293 | # RUBY_OPTIONAL is unset but must be used if RUBY_OPTIONAL=yes. Do not |
|
|
294 | # confuse this function with ruby_implementation_depend(). |
|
|
295 | # |
|
|
296 | # @EXAMPLE: |
|
|
297 | # EAPI=4 |
|
|
298 | # RUBY_OPTIONAL=yes |
|
|
299 | # |
|
|
300 | # inherit ruby-ng |
|
|
301 | # ... |
|
|
302 | # DEPEND="ruby? ( $(ruby_implementations_depend) )" |
|
|
303 | # RDEPEND="${DEPEND}" |
|
|
304 | ruby_implementations_depend() { |
|
|
305 | local depend |
|
|
306 | for _ruby_implementation in ${USE_RUBY}; do |
|
|
307 | depend="${depend}${depend+ }ruby_targets_${_ruby_implementation}? ( $(ruby_implementation_depend $_ruby_implementation) )" |
|
|
308 | done |
|
|
309 | echo "${depend}" |
|
|
310 | } |
|
|
311 | |
| 216 | for _ruby_implementation in $USE_RUBY; do |
312 | for _ruby_implementation in ${USE_RUBY}; do |
| 217 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
313 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
| 218 | |
|
|
| 219 | # If you specify RUBY_OPTIONAL you also need to take care of |
|
|
| 220 | # ruby useflag and dependency. |
|
|
| 221 | if [[ ${RUBY_OPTIONAL} != "yes" ]]; then |
|
|
| 222 | DEPEND="${DEPEND} ruby_targets_${_ruby_implementation}? ( $(ruby_implementation_depend $_ruby_implementation) )" |
|
|
| 223 | RDEPEND="${RDEPEND} ruby_targets_${_ruby_implementation}? ( $(ruby_implementation_depend $_ruby_implementation) )" |
|
|
| 224 | fi |
|
|
| 225 | done |
314 | done |
|
|
315 | # If you specify RUBY_OPTIONAL you also need to take care of |
|
|
316 | # ruby useflag and dependency. |
|
|
317 | if [[ ${RUBY_OPTIONAL} != yes ]]; then |
|
|
318 | DEPEND="${DEPEND} $(ruby_implementations_depend)" |
|
|
319 | RDEPEND="${RDEPEND} $(ruby_implementations_depend)" |
|
|
320 | fi |
| 226 | |
321 | |
| 227 | _ruby_invoke_environment() { |
322 | _ruby_invoke_environment() { |
| 228 | old_S=${S} |
323 | old_S=${S} |
|
|
324 | case ${EAPI} in |
|
|
325 | 4) |
|
|
326 | if [ -z ${RUBY_S} ]; then |
|
|
327 | sub_S=${P} |
|
|
328 | else |
|
|
329 | sub_S=${RUBY_S} |
|
|
330 | fi |
|
|
331 | ;; |
|
|
332 | *) |
| 229 | sub_S=${S#${WORKDIR}/} |
333 | sub_S=${S#${WORKDIR}/} |
|
|
334 | ;; |
|
|
335 | esac |
| 230 | |
336 | |
| 231 | # Special case, for the always-lovely GitHub fetches. With this, |
337 | # Special case, for the always-lovely GitHub fetches. With this, |
| 232 | # we allow the star glob to just expand to whatever directory it's |
338 | # we allow the star glob to just expand to whatever directory it's |
| 233 | # called. |
339 | # called. |
| 234 | if [[ ${sub_S} = *"*" ]]; then |
340 | if [[ ${sub_S} = *"*"* ]]; then |
|
|
341 | case ${EAPI} in |
|
|
342 | 2|3) |
|
|
343 | #The old method of setting S depends on undefined package |
|
|
344 | # manager behaviour, so encourage upgrading to EAPI=4. |
|
|
345 | eqawarn "Using * expansion of S is deprecated. Use EAPI and RUBY_S instead." |
|
|
346 | ;; |
|
|
347 | esac |
| 235 | pushd "${WORKDIR}"/all &>/dev/null |
348 | pushd "${WORKDIR}"/all &>/dev/null |
| 236 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
349 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
| 237 | popd &>/dev/null |
350 | popd &>/dev/null |
| 238 | fi |
351 | fi |
| 239 | |
352 | |
| … | |
… | |
| 261 | local invoked=no |
374 | local invoked=no |
| 262 | for _ruby_implementation in ${USE_RUBY}; do |
375 | for _ruby_implementation in ${USE_RUBY}; do |
| 263 | # only proceed if it's requested |
376 | # only proceed if it's requested |
| 264 | use ruby_targets_${_ruby_implementation} || continue |
377 | use ruby_targets_${_ruby_implementation} || continue |
| 265 | |
378 | |
| 266 | local _ruby_name=$_ruby_implementation |
379 | RUBY=$(ruby_implementation_command ${_ruby_implementation}) |
| 267 | |
|
|
| 268 | # Add all USE_RUBY values where the flag name diverts from the binary here |
|
|
| 269 | case $_ruby_implementation in |
|
|
| 270 | ree18) |
|
|
| 271 | _ruby_name=rubyee18 |
|
|
| 272 | ;; |
|
|
| 273 | esac |
|
|
| 274 | |
|
|
| 275 | RUBY=$(type -p $_ruby_name 2>/dev/null) |
|
|
| 276 | invoked=yes |
380 | invoked=yes |
| 277 | |
381 | |
| 278 | if [[ -n "$1" ]]; then |
382 | if [[ -n "$1" ]]; then |
| 279 | _ruby_invoke_environment $_ruby_implementation "$@" |
383 | _ruby_invoke_environment ${_ruby_implementation} "$@" |
| 280 | fi |
384 | fi |
| 281 | |
385 | |
| 282 | unset RUBY |
386 | unset RUBY |
| 283 | done |
387 | done |
| 284 | |
388 | |
| … | |
… | |
| 421 | # extensions via ruby-fakegem; make sure to check only in sitelibdir, since |
525 | # extensions via ruby-fakegem; make sure to check only in sitelibdir, since |
| 422 | # that's what changes between two implementations (otherwise you'd get false |
526 | # that's what changes between two implementations (otherwise you'd get false |
| 423 | # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8) |
527 | # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8) |
| 424 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
528 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
| 425 | | fgrep -v "${libruby_soname}" \ |
529 | | fgrep -v "${libruby_soname}" \ |
|
|
530 | | grep -E -v "${RUBY_QA_ALLOWED_LIBS}" \ |
| 426 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
531 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 427 | |
532 | |
| 428 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
533 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 429 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
534 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
| 430 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
535 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |