| 1 | # Copyright 1999-2004 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.5 2009/12/06 13:01:26 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.23 2010/07/30 15:05:08 flameeyes 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 | # |
| … | |
… | |
| 110 | done |
110 | done |
| 111 | |
111 | |
| 112 | echo "[${res%,}]" |
112 | echo "[${res%,}]" |
| 113 | } |
113 | } |
| 114 | |
114 | |
| 115 | _ruby_implementation_depend() { |
115 | _ruby_atoms_samelib_generic() { |
| 116 | echo "ruby_targets_${1}? ( ${2}[ruby_targets_${1}] )" |
116 | eshopts_push -o noglob |
|
|
117 | echo "RUBYTARGET? (" |
|
|
118 | for token in $*; do |
|
|
119 | case "$token" in |
|
|
120 | "||" | "(" | ")" | *"?") |
|
|
121 | echo "${token}" ;; |
|
|
122 | *]) |
|
|
123 | echo "${token%[*}[RUBYTARGET,${token/*[}" ;; |
|
|
124 | *) |
|
|
125 | echo "${token}[RUBYTARGET]" ;; |
|
|
126 | esac |
|
|
127 | done |
|
|
128 | echo ")" |
|
|
129 | eshopts_pop |
| 117 | } |
130 | } |
| 118 | |
131 | |
| 119 | _ruby_add_bdepend() { |
132 | _ruby_atoms_samelib() { |
| 120 | local atom=$1 |
133 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
|
|
134 | |
|
|
135 | for _ruby_implementation in $USE_RUBY; do |
|
|
136 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
|
|
137 | done |
|
|
138 | } |
|
|
139 | |
|
|
140 | _ruby_wrap_conditions() { |
| 121 | local conditions=$2 |
141 | local conditions="$1" |
|
|
142 | local atoms="$2" |
| 122 | |
143 | |
| 123 | for condition in $conditions; do |
144 | for condition in $conditions; do |
| 124 | atom="${condition}? ( ${atom} )" |
145 | atoms="${condition}? ( ${atoms} )" |
| 125 | done |
146 | done |
| 126 | |
147 | |
| 127 | DEPEND="${DEPEND} ${atom}" |
148 | echo "$atoms" |
| 128 | RDEPEND="${RDEPEND}" |
|
|
| 129 | } |
|
|
| 130 | |
|
|
| 131 | _ruby_add_rdepend() { |
|
|
| 132 | local atom=$1 |
|
|
| 133 | local conditions=$2 |
|
|
| 134 | |
|
|
| 135 | for condition in $conditions; do |
|
|
| 136 | atom="${condition}? ( ${atom} )" |
|
|
| 137 | done |
|
|
| 138 | |
|
|
| 139 | RDEPEND="${RDEPEND} ${atom}" |
|
|
| 140 | _ruby_add_bdepend "$atom" test |
|
|
| 141 | } |
149 | } |
| 142 | |
150 | |
| 143 | # @FUNCTION: ruby_add_rdepend |
151 | # @FUNCTION: ruby_add_rdepend |
| 144 | # @USAGE: [conditions] atom |
152 | # @USAGE: dependencies |
| 145 | # @DESCRIPTION: |
153 | # @DESCRIPTION: |
| 146 | # Adds the specified atom(s) with optional use condition(s) to |
154 | # Adds the specified dependencies, with use condition(s) to RDEPEND, |
| 147 | # RDEPEND, taking the current set of ruby targets into account. This |
155 | # taking the current set of ruby targets into account. This makes sure |
| 148 | # makes sure that all ruby dependencies of the package are installed |
156 | # that all ruby dependencies of the package are installed for the same |
| 149 | # for the same ruby targets. Use this function for all ruby |
157 | # ruby targets. Use this function for all ruby dependencies instead of |
| 150 | # dependencies instead of setting RDEPEND yourself. Both atom and |
158 | # setting RDEPEND yourself. The list of atoms uses the same syntax as |
| 151 | # conditions can be a space-separated list of atoms or conditions. |
159 | # normal dependencies. |
|
|
160 | # |
|
|
161 | # Note: runtime dependencies are also added as build-time test |
|
|
162 | # dependencies. |
| 152 | ruby_add_rdepend() { |
163 | ruby_add_rdepend() { |
| 153 | local atoms= |
|
|
| 154 | local conditions= |
|
|
| 155 | case $# in |
164 | case $# in |
| 156 | 1) |
165 | 1) ;; |
| 157 | atoms=$1 |
|
|
| 158 | ;; |
|
|
| 159 | 2) |
166 | 2) |
| 160 | conditions=$1 |
167 | [[ "${GENTOO_DEV}" == "yes" ]] && eqawarn "You can now use the usual syntax in ruby_add_rdepend for $CATEGORY/$PF" |
| 161 | atoms=$2 |
168 | ruby_add_rdepend "$(_ruby_wrap_conditions "$1" "$2")" |
|
|
169 | return |
| 162 | ;; |
170 | ;; |
| 163 | *) |
171 | *) |
| 164 | die "bad number of arguments to $0" |
172 | die "bad number of arguments to $0" |
| 165 | ;; |
173 | ;; |
| 166 | esac |
174 | esac |
| 167 | |
175 | |
| 168 | for atom in $atoms; do |
176 | local dependency=$(_ruby_atoms_samelib "$1") |
| 169 | _ruby_add_rdepend "${atom}$(ruby_samelib)" "$conditions" |
177 | |
| 170 | done |
178 | RDEPEND="${RDEPEND} $dependency" |
|
|
179 | |
|
|
180 | # Add the dependency as a test-dependency since we're going to |
|
|
181 | # execute the code during test phase. |
|
|
182 | DEPEND="${DEPEND} test? ( ${dependency} )" |
|
|
183 | hasq test "$IUSE" || IUSE="${IUSE} test" |
| 171 | } |
184 | } |
| 172 | |
185 | |
| 173 | # @FUNCTION: ruby_add_bdepend |
186 | # @FUNCTION: ruby_add_bdepend |
| 174 | # @USAGE: [conditions] atom |
187 | # @USAGE: dependencies |
| 175 | # @DESCRIPTION: |
188 | # @DESCRIPTION: |
| 176 | # Adds the specified atom(s) with optional use condition(s) to both |
189 | # Adds the specified dependencies, with use condition(s) to DEPEND, |
| 177 | # DEPEND and RDEPEND, taking the current set of ruby targets into |
190 | # taking the current set of ruby targets into account. This makes sure |
| 178 | # account. This makes sure that all ruby dependencies of the package |
191 | # that all ruby dependencies of the package are installed for the same |
| 179 | # are installed for the same ruby targets. Use this function for all |
192 | # ruby targets. Use this function for all ruby dependencies instead of |
| 180 | # ruby dependencies instead of setting DEPEND and RDEPEND |
193 | # setting DEPEND yourself. The list of atoms uses the same syntax as |
| 181 | # yourself. Both atom and conditions can be a space-separated list of |
194 | # normal dependencies. |
| 182 | # atoms or conditions. |
|
|
| 183 | ruby_add_bdepend() { |
195 | ruby_add_bdepend() { |
| 184 | local atoms= |
|
|
| 185 | local conditions= |
|
|
| 186 | case $# in |
196 | case $# in |
| 187 | 1) |
197 | 1) ;; |
| 188 | atoms=$1 |
|
|
| 189 | ;; |
|
|
| 190 | 2) |
198 | 2) |
| 191 | conditions=$1 |
199 | [[ "${GENTOO_DEV}" == "yes" ]] && eqawarn "You can now use the usual syntax in ruby_add_bdepend for $CATEGORY/$PF" |
| 192 | atoms=$2 |
200 | ruby_add_bdepend "$(_ruby_wrap_conditions "$1" "$2")" |
|
|
201 | return |
| 193 | ;; |
202 | ;; |
| 194 | *) |
203 | *) |
| 195 | die "bad number of arguments to $0" |
204 | die "bad number of arguments to $0" |
| 196 | ;; |
205 | ;; |
| 197 | esac |
206 | esac |
| 198 | |
207 | |
| 199 | for atom in $atoms; do |
208 | local dependency=$(_ruby_atoms_samelib "$1") |
| 200 | _ruby_add_bdepend "${atom}$(ruby_samelib)" "$conditions" |
209 | |
| 201 | done |
210 | DEPEND="${DEPEND} $dependency" |
|
|
211 | RDEPEND="${RDEPEND}" |
| 202 | } |
212 | } |
| 203 | |
213 | |
| 204 | for _ruby_implementation in $USE_RUBY; do |
214 | for _ruby_implementation in $USE_RUBY; do |
| 205 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
215 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
| 206 | |
216 | |
| … | |
… | |
| 212 | fi |
222 | fi |
| 213 | done |
223 | done |
| 214 | |
224 | |
| 215 | _ruby_invoke_environment() { |
225 | _ruby_invoke_environment() { |
| 216 | old_S=${S} |
226 | old_S=${S} |
| 217 | sub_S=${S#${WORKDIR}} |
227 | sub_S=${S#${WORKDIR}/} |
|
|
228 | |
|
|
229 | # Special case, for the always-lovely GitHub fetches. With this, |
|
|
230 | # we allow the star glob to just expand to whatever directory it's |
|
|
231 | # called. |
|
|
232 | if [[ ${sub_S} = *"*" ]]; then |
|
|
233 | pushd "${WORKDIR}"/all &>/dev/null |
|
|
234 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
|
|
235 | popd &>/dev/null |
|
|
236 | fi |
| 218 | |
237 | |
| 219 | environment=$1; shift |
238 | environment=$1; shift |
| 220 | |
239 | |
| 221 | my_WORKDIR="${WORKDIR}"/${environment} |
240 | my_WORKDIR="${WORKDIR}"/${environment} |
| 222 | S="${my_WORKDIR}"/"${sub_S}" |
241 | S="${my_WORKDIR}"/"${sub_S}" |
| … | |
… | |
| 240 | local invoked=no |
259 | local invoked=no |
| 241 | for _ruby_implementation in ${USE_RUBY}; do |
260 | for _ruby_implementation in ${USE_RUBY}; do |
| 242 | # only proceed if it's requested |
261 | # only proceed if it's requested |
| 243 | use ruby_targets_${_ruby_implementation} || continue |
262 | use ruby_targets_${_ruby_implementation} || continue |
| 244 | |
263 | |
|
|
264 | local _ruby_name=$_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 | |
| 245 | RUBY=$(type -p $_ruby_implementation 2>/dev/null) |
273 | RUBY=$(type -p $_ruby_name 2>/dev/null) |
| 246 | invoked=yes |
274 | invoked=yes |
| 247 | |
275 | |
| 248 | if [[ -n "$1" ]]; then |
276 | if [[ -n "$1" ]]; then |
| 249 | _ruby_invoke_environment $_ruby_implementation "$@" |
277 | _ruby_invoke_environment $_ruby_implementation "$@" |
| 250 | fi |
278 | fi |
| … | |
… | |
| 316 | # almost every other ebuild. |
344 | # almost every other ebuild. |
| 317 | find . -name '._*' -delete |
345 | find . -name '._*' -delete |
| 318 | |
346 | |
| 319 | _ruby_invoke_environment all _ruby_apply_patches |
347 | _ruby_invoke_environment all _ruby_apply_patches |
| 320 | |
348 | |
|
|
349 | _PHASE="source copy" \ |
| 321 | _ruby_each_implementation _ruby_source_copy |
350 | _ruby_each_implementation _ruby_source_copy |
| 322 | |
351 | |
| 323 | if type each_ruby_prepare &>/dev/null; then |
352 | if type each_ruby_prepare &>/dev/null; then |
| 324 | _ruby_each_implementation each_ruby_prepare |
353 | _ruby_each_implementation each_ruby_prepare |
| 325 | fi |
354 | fi |
| 326 | } |
355 | } |
| … | |
… | |
| 361 | _ruby_invoke_environment all all_ruby_test |
390 | _ruby_invoke_environment all all_ruby_test |
| 362 | } |
391 | } |
| 363 | |
392 | |
| 364 | _each_ruby_check_install() { |
393 | _each_ruby_check_install() { |
| 365 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
394 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
| 366 | local libruby_soname=$(scanelf -qS "/usr/$(get_libdir)/${libruby_basename}" | awk '{ print $1 }') |
395 | local libruby_soname=$(scanelf -F "%S#F" -qS "/usr/$(get_libdir)/${libruby_basename}") |
| 367 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
396 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
| 368 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
397 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
| 369 | |
398 | |
| 370 | # Look for wrong files in sitedir |
399 | # Look for wrong files in sitedir |
| 371 | if [[ -d "${D}${sitedir}" ]]; then |
400 | # if [[ -d "${D}${sitedir}" ]]; then |
| 372 | local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
401 | # local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
| 373 | if [[ -n ${f} ]]; then |
402 | # if [[ -n ${f} ]]; then |
| 374 | eerror "Found files in sitedir, outsite sitelibdir:" |
403 | # eerror "Found files in sitedir, outsite sitelibdir:" |
| 375 | eerror "${f}" |
404 | # eerror "${f}" |
| 376 | die "Misplaced files in sitedir" |
405 | # die "Misplaced files in sitedir" |
| 377 | fi |
406 | # fi |
| 378 | fi |
407 | # fi |
| 379 | |
408 | |
| 380 | # The current implementation lacks libruby (i.e.: jruby) |
409 | # The current implementation lacks libruby (i.e.: jruby) |
| 381 | [[ -z ${libruby_soname} ]] && return 0 |
410 | [[ -z ${libruby_soname} ]] && return 0 |
| 382 | |
411 | |
| 383 | scanelf -qnR "${D}${sitedir}" \ |
412 | # Check also the gems directory, since we could be installing compiled |
|
|
413 | # extensions via ruby-fakegem; make sure to check only in sitelibdir, since |
|
|
414 | # that's what changes between two implementations (otherwise you'd get false |
|
|
415 | # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8) |
|
|
416 | scanelf -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
| 384 | | fgrep -v "${libruby_soname}" \ |
417 | | fgrep -v "${libruby_soname}" \ |
| 385 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
418 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 386 | |
419 | |
| 387 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
420 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 388 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby}" |
421 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
| 389 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
422 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
| 390 | die "Missing links to ${libruby}" |
423 | die "Missing links to ${libruby_soname}" |
| 391 | fi |
424 | fi |
| 392 | } |
425 | } |
| 393 | |
426 | |
| 394 | # @FUNCTION: ruby-ng_src_install |
427 | # @FUNCTION: ruby-ng_src_install |
| 395 | # @DESCRIPTION: |
428 | # @DESCRIPTION: |
| … | |
… | |
| 404 | |
437 | |
| 405 | _PHASE="check install" \ |
438 | _PHASE="check install" \ |
| 406 | _ruby_each_implementation _each_ruby_check_install |
439 | _ruby_each_implementation _each_ruby_check_install |
| 407 | } |
440 | } |
| 408 | |
441 | |
|
|
442 | # @FUNCTION: ruby_rbconfig_value |
|
|
443 | # @USAGE: rbconfig item |
|
|
444 | # @RETURN: Returns the value of the given rbconfig item of the Ruby interpreter in ${RUBY}. |
|
|
445 | ruby_rbconfig_value() { |
|
|
446 | echo $(${RUBY} -rrbconfig -e "puts Config::CONFIG['$1']") |
|
|
447 | } |
|
|
448 | |
| 409 | # @FUNCTION: doruby |
449 | # @FUNCTION: doruby |
| 410 | # @USAGE: file [file...] |
450 | # @USAGE: file [file...] |
| 411 | # @DESCRIPTION: |
451 | # @DESCRIPTION: |
| 412 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
452 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
| 413 | doruby() { |
453 | doruby() { |
| 414 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
454 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
| 415 | ( # don't want to pollute calling env |
455 | ( # don't want to pollute calling env |
| 416 | insinto $(${RUBY} -rrbconfig -e 'print Config::CONFIG["sitelibdir"]') |
456 | insinto $(ruby_rbconfig_value 'sitelibdir') |
| 417 | insopts -m 0644 |
457 | insopts -m 0644 |
| 418 | doins "$@" |
458 | doins "$@" |
| 419 | ) || die "failed to install $@" |
459 | ) || die "failed to install $@" |
| 420 | } |
460 | } |
| 421 | |
461 | |
| … | |
… | |
| 426 | } |
466 | } |
| 427 | |
467 | |
| 428 | # @FUNCTION: ruby_get_hdrdir |
468 | # @FUNCTION: ruby_get_hdrdir |
| 429 | # @RETURN: The location of the header files belonging to the Ruby interpreter in ${RUBY}. |
469 | # @RETURN: The location of the header files belonging to the Ruby interpreter in ${RUBY}. |
| 430 | ruby_get_hdrdir() { |
470 | ruby_get_hdrdir() { |
| 431 | local rubyhdrdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["rubyhdrdir"]') |
471 | local rubyhdrdir=$(ruby_rbconfig_value 'rubyhdrdir') |
| 432 | |
472 | |
| 433 | if [[ "${rubyhdrdir}" = "nil" ]] ; then |
473 | if [[ "${rubyhdrdir}" = "nil" ]] ; then |
| 434 | rubyhdrdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["archdir"]') |
474 | rubyhdrdir=$(ruby_rbconfig_value 'archdir') |
| 435 | fi |
475 | fi |
| 436 | |
476 | |
| 437 | echo "${rubyhdrdir}" |
477 | echo "${rubyhdrdir}" |
| 438 | } |
478 | } |
|
|
479 | |
|
|
480 | # @FUNCTION: ruby_get_version |
|
|
481 | # @RETURN: The version of the Ruby interpreter in ${RUBY}, or what 'ruby' points to. |
|
|
482 | ruby_get_version() { |
|
|
483 | local ruby=${RUBY:-$(type -p ruby 2>/dev/null)} |
|
|
484 | |
|
|
485 | echo $(${ruby} -e 'puts RUBY_VERSION') |
|
|
486 | } |
|
|
487 | |
|
|
488 | # @FUNCTION: ruby_get_implementation |
|
|
489 | # @RETURN: The implementation of the Ruby interpreter in ${RUBY}, or what 'ruby' points to. |
|
|
490 | ruby_get_implementation() { |
|
|
491 | local ruby=${RUBY:-$(type -p ruby 2>/dev/null)} |
|
|
492 | |
|
|
493 | case $(${ruby} --version) in |
|
|
494 | *Enterprise*) |
|
|
495 | echo "ree" |
|
|
496 | ;; |
|
|
497 | *jruby*) |
|
|
498 | echo "jruby" |
|
|
499 | ;; |
|
|
500 | *) |
|
|
501 | echo "mri" |
|
|
502 | ;; |
|
|
503 | esac |
|
|
504 | } |