| 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.21 2010/07/08 04:00:57 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.32 2011/04/25 08:37:26 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 | # |
| … | |
… | |
| 31 | # |
31 | # |
| 32 | # * each_ruby_configure |
32 | # * each_ruby_configure |
| 33 | # * all_ruby_configure |
33 | # * all_ruby_configure |
| 34 | |
34 | |
| 35 | # @ECLASS-VARIABLE: USE_RUBY |
35 | # @ECLASS-VARIABLE: USE_RUBY |
|
|
36 | # @REQUIRED |
| 36 | # @DESCRIPTION: |
37 | # @DESCRIPTION: |
| 37 | # This variable contains a space separated list of targets (see above) a package |
38 | # This variable contains a space separated list of targets (see above) a package |
| 38 | # is compatible to. It must be set before the `inherit' call. There is no |
39 | # is compatible to. It must be set before the `inherit' call. There is no |
| 39 | # default. All ebuilds are expected to set this variable. |
40 | # default. All ebuilds are expected to set this variable. |
| 40 | |
41 | |
| 41 | # @ECLASS-VARIABLE: RUBY_PATCHES |
42 | # @ECLASS-VARIABLE: RUBY_PATCHES |
|
|
43 | # @DEFAULT_UNSET |
| 42 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 43 | # 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. |
| 44 | |
46 | |
| 45 | # @ECLASS-VARIABLE: RUBY_OPTIONAL |
47 | # @ECLASS-VARIABLE: RUBY_OPTIONAL |
| 46 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 47 | # 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 optional. |
|
|
50 | |
|
|
51 | # @ECLASS-VARIABLE: RUBY_S |
|
|
52 | # @DEFAULT_UNSET |
|
|
53 | # @DESCRIPTION: |
|
|
54 | # If defined this variable determines the source directory name after |
|
|
55 | # unpacking. This defaults to the name of the package. Note that this |
|
|
56 | # variable supports a wildcard mechanism to help with github tarballs |
|
|
57 | # that contain the commit hash as part of the directory name. |
| 48 | |
58 | |
| 49 | inherit eutils toolchain-funcs |
59 | inherit eutils toolchain-funcs |
| 50 | |
60 | |
| 51 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
61 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
| 52 | |
62 | |
| 53 | case ${EAPI} in |
63 | case ${EAPI} in |
| 54 | 0|1) |
64 | 0|1) |
| 55 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
65 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
| 56 | 2) ;; |
66 | 2|3) ;; |
|
|
67 | 4) |
|
|
68 | # S is no longer automatically assigned when it doesn't exist. |
|
|
69 | S="${WORKDIR}" |
|
|
70 | ;; |
| 57 | *) |
71 | *) |
| 58 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
72 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
| 59 | esac |
73 | esac |
| 60 | |
74 | |
| 61 | # @FUNCTION: ruby_implementation_depend |
75 | # @FUNCTION: ruby_implementation_depend |
| … | |
… | |
| 127 | done |
141 | done |
| 128 | echo ")" |
142 | echo ")" |
| 129 | eshopts_pop |
143 | eshopts_pop |
| 130 | } |
144 | } |
| 131 | |
145 | |
|
|
146 | # @FUNCTION: ruby_implementation_command |
|
|
147 | # @RETURN: the path to the given ruby implementation |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Not all implementations have the same command basename as the |
|
|
150 | # target; namely Ruby Enterprise 1.8 uses ree18 and rubyee18 |
|
|
151 | # respectively. This function translate between the two |
|
|
152 | ruby_implementation_command() { |
|
|
153 | local _ruby_name=$1 |
|
|
154 | |
|
|
155 | # Add all USE_RUBY values where the flag name diverts from the binary here |
|
|
156 | case $1 in |
|
|
157 | ree18) |
|
|
158 | _ruby_name=rubyee18 |
|
|
159 | ;; |
|
|
160 | esac |
|
|
161 | |
|
|
162 | echo $(type -p ${_ruby_name} 2>/dev/null) |
|
|
163 | } |
|
|
164 | |
| 132 | _ruby_atoms_samelib() { |
165 | _ruby_atoms_samelib() { |
| 133 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
166 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
| 134 | |
167 | |
| 135 | for _ruby_implementation in $USE_RUBY; do |
168 | for _ruby_implementation in $USE_RUBY; do |
| 136 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
169 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
| … | |
… | |
| 222 | fi |
255 | fi |
| 223 | done |
256 | done |
| 224 | |
257 | |
| 225 | _ruby_invoke_environment() { |
258 | _ruby_invoke_environment() { |
| 226 | old_S=${S} |
259 | old_S=${S} |
|
|
260 | case ${EAPI} in |
|
|
261 | 4) |
|
|
262 | if [ -z ${RUBY_S} ]; then |
|
|
263 | sub_S=${P} |
|
|
264 | else |
|
|
265 | sub_S=${RUBY_S} |
|
|
266 | fi |
|
|
267 | ;; |
|
|
268 | *) |
| 227 | sub_S=${S#${WORKDIR}/} |
269 | sub_S=${S#${WORKDIR}/} |
|
|
270 | ;; |
|
|
271 | esac |
| 228 | |
272 | |
| 229 | # Special case, for the always-lovely GitHub fetches. With this, |
273 | # Special case, for the always-lovely GitHub fetches. With this, |
| 230 | # we allow the star glob to just expand to whatever directory it's |
274 | # we allow the star glob to just expand to whatever directory it's |
| 231 | # called. |
275 | # called. |
| 232 | if [[ ${sub_S} = *"*" ]]; then |
276 | if [[ ${sub_S} = *"*"* ]]; then |
| 233 | pushd "${WORKDIR}"/all &>/dev/null |
277 | pushd "${WORKDIR}"/all &>/dev/null |
| 234 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
278 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
| 235 | popd &>/dev/null |
279 | popd &>/dev/null |
| 236 | fi |
280 | fi |
| 237 | |
281 | |
| … | |
… | |
| 259 | local invoked=no |
303 | local invoked=no |
| 260 | for _ruby_implementation in ${USE_RUBY}; do |
304 | for _ruby_implementation in ${USE_RUBY}; do |
| 261 | # only proceed if it's requested |
305 | # only proceed if it's requested |
| 262 | use ruby_targets_${_ruby_implementation} || continue |
306 | use ruby_targets_${_ruby_implementation} || continue |
| 263 | |
307 | |
| 264 | local _ruby_name=$_ruby_implementation |
308 | RUBY=$(ruby_implementation_command ${_ruby_implementation}) |
| 265 | |
|
|
| 266 | # Add all USE_RUBY values where the flag name diverts from the binary here |
|
|
| 267 | case $_ruby_implementation in |
|
|
| 268 | ree18) |
|
|
| 269 | _ruby_name=rubyee18 |
|
|
| 270 | ;; |
|
|
| 271 | esac |
|
|
| 272 | |
|
|
| 273 | RUBY=$(type -p $_ruby_name 2>/dev/null) |
|
|
| 274 | invoked=yes |
309 | invoked=yes |
| 275 | |
310 | |
| 276 | if [[ -n "$1" ]]; then |
311 | if [[ -n "$1" ]]; then |
| 277 | _ruby_invoke_environment $_ruby_implementation "$@" |
312 | _ruby_invoke_environment ${_ruby_implementation} "$@" |
| 278 | fi |
313 | fi |
| 279 | |
314 | |
| 280 | unset RUBY |
315 | unset RUBY |
| 281 | done |
316 | done |
| 282 | |
317 | |
| … | |
… | |
| 389 | type all_ruby_test &>/dev/null && \ |
424 | type all_ruby_test &>/dev/null && \ |
| 390 | _ruby_invoke_environment all all_ruby_test |
425 | _ruby_invoke_environment all all_ruby_test |
| 391 | } |
426 | } |
| 392 | |
427 | |
| 393 | _each_ruby_check_install() { |
428 | _each_ruby_check_install() { |
|
|
429 | local scancmd=scanelf |
|
|
430 | # we have a Mach-O object here |
|
|
431 | [[ ${CHOST} == *-darwin ]] && scancmd=scanmacho |
|
|
432 | |
|
|
433 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
434 | |
| 394 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
435 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
| 395 | local libruby_soname=$(scanelf -qS "/usr/$(get_libdir)/${libruby_basename}" | awk '{ print $1 }') |
436 | local libruby_soname=$(basename $(${scancmd} -F "%S#F" -qS "${EPREFIX}/usr/$(get_libdir)/${libruby_basename}") 2>/dev/null) |
| 396 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
437 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
| 397 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
438 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
| 398 | |
439 | |
| 399 | # Look for wrong files in sitedir |
440 | # Look for wrong files in sitedir |
| 400 | if [[ -d "${D}${sitedir}" ]]; then |
441 | # if [[ -d "${D}${sitedir}" ]]; then |
| 401 | local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
442 | # local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
| 402 | if [[ -n ${f} ]]; then |
443 | # if [[ -n ${f} ]]; then |
| 403 | eerror "Found files in sitedir, outsite sitelibdir:" |
444 | # eerror "Found files in sitedir, outsite sitelibdir:" |
| 404 | eerror "${f}" |
445 | # eerror "${f}" |
| 405 | die "Misplaced files in sitedir" |
446 | # die "Misplaced files in sitedir" |
| 406 | fi |
447 | # fi |
| 407 | fi |
448 | # fi |
| 408 | |
449 | |
| 409 | # The current implementation lacks libruby (i.e.: jruby) |
450 | # The current implementation lacks libruby (i.e.: jruby) |
| 410 | [[ -z ${libruby_soname} ]] && return 0 |
451 | [[ -z ${libruby_soname} ]] && return 0 |
| 411 | |
452 | |
| 412 | scanelf -qnR "${D}${sitedir}" \ |
453 | # Check also the gems directory, since we could be installing compiled |
|
|
454 | # extensions via ruby-fakegem; make sure to check only in sitelibdir, since |
|
|
455 | # that's what changes between two implementations (otherwise you'd get false |
|
|
456 | # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8) |
|
|
457 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
| 413 | | fgrep -v "${libruby_soname}" \ |
458 | | fgrep -v "${libruby_soname}" \ |
| 414 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
459 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 415 | |
460 | |
| 416 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
461 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 417 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
462 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
| … | |
… | |
| 446 | # @USAGE: file [file...] |
491 | # @USAGE: file [file...] |
| 447 | # @DESCRIPTION: |
492 | # @DESCRIPTION: |
| 448 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
493 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
| 449 | doruby() { |
494 | doruby() { |
| 450 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
495 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
|
|
496 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
| 451 | ( # don't want to pollute calling env |
497 | ( # don't want to pollute calling env |
| 452 | insinto $(ruby_rbconfig_value 'sitelibdir') |
498 | sitelibdir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
499 | insinto ${sitelibdir#${EPREFIX}} |
| 453 | insopts -m 0644 |
500 | insopts -m 0644 |
| 454 | doins "$@" |
501 | doins "$@" |
| 455 | ) || die "failed to install $@" |
502 | ) || die "failed to install $@" |
| 456 | } |
503 | } |
| 457 | |
504 | |