| 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.27 2010/08/30 22:08:24 flameeyes 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 |
| … | |
… | |
| 199 | RDEPEND="${RDEPEND} $dependency" |
226 | RDEPEND="${RDEPEND} $dependency" |
| 200 | |
227 | |
| 201 | # 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 |
| 202 | # execute the code during test phase. |
229 | # execute the code during test phase. |
| 203 | DEPEND="${DEPEND} test? ( ${dependency} )" |
230 | DEPEND="${DEPEND} test? ( ${dependency} )" |
| 204 | hasq test "$IUSE" || IUSE="${IUSE} test" |
231 | has test "$IUSE" || IUSE="${IUSE} test" |
| 205 | } |
232 | } |
| 206 | |
233 | |
| 207 | # @FUNCTION: ruby_add_bdepend |
234 | # @FUNCTION: ruby_add_bdepend |
| 208 | # @USAGE: dependencies |
235 | # @USAGE: dependencies |
| 209 | # @DESCRIPTION: |
236 | # @DESCRIPTION: |
| … | |
… | |
| 230 | |
257 | |
| 231 | DEPEND="${DEPEND} $dependency" |
258 | DEPEND="${DEPEND} $dependency" |
| 232 | RDEPEND="${RDEPEND}" |
259 | RDEPEND="${RDEPEND}" |
| 233 | } |
260 | } |
| 234 | |
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 | |
| 235 | for _ruby_implementation in $USE_RUBY; do |
312 | for _ruby_implementation in ${USE_RUBY}; do |
| 236 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
313 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
| 237 | |
|
|
| 238 | # If you specify RUBY_OPTIONAL you also need to take care of |
|
|
| 239 | # ruby useflag and dependency. |
|
|
| 240 | if [[ ${RUBY_OPTIONAL} != "yes" ]]; then |
|
|
| 241 | DEPEND="${DEPEND} ruby_targets_${_ruby_implementation}? ( $(ruby_implementation_depend $_ruby_implementation) )" |
|
|
| 242 | RDEPEND="${RDEPEND} ruby_targets_${_ruby_implementation}? ( $(ruby_implementation_depend $_ruby_implementation) )" |
|
|
| 243 | fi |
|
|
| 244 | 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 |
| 245 | |
321 | |
| 246 | _ruby_invoke_environment() { |
322 | _ruby_invoke_environment() { |
| 247 | 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 | *) |
| 248 | sub_S=${S#${WORKDIR}/} |
333 | sub_S=${S#${WORKDIR}/} |
|
|
334 | ;; |
|
|
335 | esac |
| 249 | |
336 | |
| 250 | # Special case, for the always-lovely GitHub fetches. With this, |
337 | # Special case, for the always-lovely GitHub fetches. With this, |
| 251 | # 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 |
| 252 | # called. |
339 | # called. |
| 253 | 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 |
| 254 | pushd "${WORKDIR}"/all &>/dev/null |
348 | pushd "${WORKDIR}"/all &>/dev/null |
| 255 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
349 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
| 256 | popd &>/dev/null |
350 | popd &>/dev/null |
| 257 | fi |
351 | fi |
| 258 | |
352 | |
| … | |
… | |
| 431 | # 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 |
| 432 | # 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 |
| 433 | # 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) |
| 434 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
528 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
| 435 | | fgrep -v "${libruby_soname}" \ |
529 | | fgrep -v "${libruby_soname}" \ |
|
|
530 | | grep -E -v "${RUBY_QA_ALLOWED_LIBS}" \ |
| 436 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
531 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 437 | |
532 | |
| 438 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
533 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 439 | 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}" |
| 440 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
535 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |