| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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-fakegem.eclass,v 1.23 2010/08/30 22:08:24 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.34 2012/08/13 22:21:26 flameeyes Exp $ |
| 4 | # |
4 | |
| 5 | # @ECLASS: ruby-fakegem.eclass |
5 | # @ECLASS: ruby-fakegem.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # @AUTHOR: |
| 9 | # Author: Diego E. Pettenò <flameeyes@gentoo.org> |
9 | # Author: Diego E. Pettenò <flameeyes@gentoo.org> |
| 10 | # |
|
|
| 11 | # Author: Alex Legler <a3li@gentoo.org> |
10 | # Author: Alex Legler <a3li@gentoo.org> |
| 12 | # |
|
|
| 13 | # @BLURB: An eclass for installing Ruby packages to behave like RubyGems. |
11 | # @BLURB: An eclass for installing Ruby packages to behave like RubyGems. |
| 14 | # @DESCRIPTION: |
12 | # @DESCRIPTION: |
| 15 | # This eclass allows to install arbitrary Ruby libraries (including Gems), |
13 | # This eclass allows to install arbitrary Ruby libraries (including Gems), |
| 16 | # providing integration into the RubyGems system even for "regular" packages. |
14 | # providing integration into the RubyGems system even for "regular" packages. |
| 17 | # |
|
|
| 18 | |
15 | |
| 19 | inherit ruby-ng |
16 | inherit ruby-ng |
| 20 | |
17 | |
| 21 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_NAME |
18 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_NAME |
| 22 | # @DESCRIPTION: |
19 | # @DESCRIPTION: |
| … | |
… | |
| 31 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_DOC |
28 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_DOC |
| 32 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 33 | # Specify the rake(1) task to run to generate documentation. |
30 | # Specify the rake(1) task to run to generate documentation. |
| 34 | # RUBY_FAKEGEM_TASK_DOC="rdoc" |
31 | # RUBY_FAKEGEM_TASK_DOC="rdoc" |
| 35 | |
32 | |
|
|
33 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_RECIPE_TEST |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # Specify one of the default testing function for ruby-fakegem: |
|
|
36 | # - rake (default; see also RUBY_FAKEGEM_TASK_TEST) |
|
|
37 | # - rspec (calls ruby-ng_rspec, adds dev-ruby/rspec:2 to the dependencies) |
|
|
38 | # - cucumber (calls ruby-ng_cucumber, adds dev-util/cucumber to the |
|
|
39 | # dependencies; does not work on JRuby). |
|
|
40 | # - none |
|
|
41 | # RUBY_FAKEGEM_RECIPE_TEST="rake" |
|
|
42 | |
| 36 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_TEST |
43 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_TEST |
| 37 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 38 | # Specify the rake(1) task used for executing tests. |
45 | # Specify the rake(1) task used for executing tests. Only valid |
|
|
46 | # if RUBY_FAKEGEM_RECIPE_TEST is set to "rake" (the default). |
| 39 | # RUBY_FAKEGEM_TASK_TEST="test" |
47 | # RUBY_FAKEGEM_TASK_TEST="test" |
| 40 | |
48 | |
| 41 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_DOCDIR |
49 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_DOCDIR |
| 42 | # @DESCRIPTION: |
50 | # @DESCRIPTION: |
| 43 | # Specify the directory under which the documentation is built; |
51 | # Specify the directory under which the documentation is built; |
| … | |
… | |
| 57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
65 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
| 58 | # @DESCRIPTION: |
66 | # @DESCRIPTION: |
| 59 | # Extra require paths (beside lib) to add to the specification |
67 | # Extra require paths (beside lib) to add to the specification |
| 60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
68 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
| 61 | |
69 | |
|
|
70 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_GEMSPEC |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Filename of .gemspec file to install instead of generating a generic one. |
|
|
73 | # RUBY_FAKEGEM_GEMSPEC="" |
|
|
74 | |
|
|
75 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRAINSTALL |
|
|
76 | # @DESCRIPTION: |
|
|
77 | # List of files and directories relative to the top directory that also |
|
|
78 | # get installed. Some gems provide extra files such as version information, |
|
|
79 | # Rails generators, or data that needs to be installed as well. |
|
|
80 | # RUBY_FAKEGEM_EXTRAINSTALL="" |
|
|
81 | |
| 62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
82 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
83 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
| 64 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
84 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 65 | |
85 | |
| 66 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
86 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
|
|
87 | RUBY_FAKEGEM_RECIPE_TEST="${RUBY_FAKEGEM_RECIPE_TEST-rake}" |
| 67 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
88 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
| 68 | |
89 | |
| 69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
90 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| 70 | |
91 | |
| 71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
92 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| … | |
… | |
| 75 | |
96 | |
| 76 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]]; then |
97 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]]; then |
| 77 | IUSE="$IUSE doc" |
98 | IUSE="$IUSE doc" |
| 78 | fi |
99 | fi |
| 79 | |
100 | |
| 80 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
101 | [[ ${RUBY_FAKEGEM_TASK_TEST} == "" ]] && RUBY_FAKEGEM_RECIPE_TEST="none" |
|
|
102 | |
|
|
103 | case ${RUBY_FAKEGEM_RECIPE_TEST} in |
|
|
104 | rake) |
| 81 | IUSE="$IUSE test" |
105 | IUSE+=" test" |
| 82 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
106 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 83 | fi |
107 | ;; |
|
|
108 | rspec) |
|
|
109 | IUSE+=" test" |
|
|
110 | ruby_add_bdepend "test? ( dev-ruby/rspec:2 )" |
|
|
111 | ;; |
|
|
112 | cucumber) |
|
|
113 | IUSE+=" test" |
|
|
114 | # Unfortunately as of August 2012, cucumber is not supported on |
|
|
115 | # JRuby. We work it around here to avoid repeating the same |
|
|
116 | # code over and over again. |
|
|
117 | USE_RUBY="${USE_RUBY/jruby/}" ruby_add_bdepend "test? ( dev-util/cucumber )" |
|
|
118 | ;; |
|
|
119 | *) |
|
|
120 | RUBY_FAKEGEM_RECIPE_TEST="none" |
|
|
121 | ;; |
|
|
122 | esac |
| 84 | |
123 | |
| 85 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
124 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 86 | |
125 | |
|
|
126 | ruby_add_bdepend virtual/rubygems |
| 87 | ruby_add_rdepend virtual/rubygems |
127 | ruby_add_rdepend virtual/rubygems |
| 88 | |
128 | |
| 89 | # @FUNCTION: ruby_fakegem_gemsdir |
129 | # @FUNCTION: ruby_fakegem_gemsdir |
| 90 | # @RETURN: Returns the gem data directory |
130 | # @RETURN: Returns the gem data directory |
| 91 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 92 | # This function returns the gems data directory for the ruby |
132 | # This function returns the gems data directory for the ruby |
| 93 | # implementation in question. |
133 | # implementation in question. |
| 94 | ruby_fakegem_gemsdir() { |
134 | ruby_fakegem_gemsdir() { |
| 95 | local _gemsitedir=$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' | sed -e 's:site_ruby:gems:') |
135 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
136 | |
|
|
137 | local _gemsitedir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
138 | _gemsitedir=${_gemsitedir//site_ruby/gems} |
|
|
139 | _gemsitedir=${_gemsitedir#${EPREFIX}} |
| 96 | |
140 | |
| 97 | [[ -z ${_gemsitedir} ]] && { |
141 | [[ -z ${_gemsitedir} ]] && { |
| 98 | eerror "Unable to find the gems dir" |
142 | eerror "Unable to find the gems dir" |
| 99 | die "Unable to find the gems dir" |
143 | die "Unable to find the gems dir" |
| 100 | } |
144 | } |
| … | |
… | |
| 129 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
173 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
| 130 | newins "$1" ${newbasename} |
174 | newins "$1" ${newbasename} |
| 131 | ) || die "failed $0 $@" |
175 | ) || die "failed $0 $@" |
| 132 | } |
176 | } |
| 133 | |
177 | |
|
|
178 | # @FUNCTION: ruby_fakegem_install_gemspec |
|
|
179 | # @DESCRIPTION: |
|
|
180 | # Install a .gemspec file for this package. Either use the file indicated |
|
|
181 | # by the RUBY_FAKEGEM_GEMSPEC variable, or generate one using |
|
|
182 | # ruby_fakegem_genspec. |
|
|
183 | ruby_fakegem_install_gemspec() { |
|
|
184 | local gemspec="${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} |
|
|
185 | |
|
|
186 | ( |
|
|
187 | if [[ ${RUBY_FAKEGEM_GEMSPEC} != "" ]]; then |
|
|
188 | ruby_fakegem_gemspec_gemspec ${RUBY_FAKEGEM_GEMSPEC} ${gemspec} |
|
|
189 | else |
|
|
190 | local metadata="${WORKDIR}"/${_ruby_implementation}/metadata |
|
|
191 | |
|
|
192 | if [[ -e ${metadata} ]]; then |
|
|
193 | ruby_fakegem_metadata_gemspec ${metadata} ${gemspec} |
|
|
194 | else |
|
|
195 | ruby_fakegem_genspec ${gemspec} |
|
|
196 | fi |
|
|
197 | fi |
|
|
198 | ) || die "Unable to generate gemspec file." |
|
|
199 | |
|
|
200 | insinto $(ruby_fakegem_gemsdir)/specifications |
|
|
201 | newins ${gemspec} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec || die "Unable to install gemspec file." |
|
|
202 | } |
|
|
203 | |
|
|
204 | # @FUNCTION: ruby_fakegem_gemspec_gemspec |
|
|
205 | # @USAGE: gemspec-input gemspec-output |
|
|
206 | # @DESCRIPTION: |
|
|
207 | # Generates an installable version of the specification indicated by |
|
|
208 | # RUBY_FAKEGEM_GEMSPEC. This file is eval'ed to produce a final specification |
|
|
209 | # in a way similar to packaging the gemspec file. |
|
|
210 | ruby_fakegem_gemspec_gemspec() { |
|
|
211 | ${RUBY} -e "puts eval(File::open('$1').read).to_ruby" > $2 |
|
|
212 | } |
|
|
213 | |
|
|
214 | # @FUNCTION: ruby_fakegem_metadata_gemspec |
|
|
215 | # @USAGE: gemspec-metadata gemspec-output |
|
|
216 | # @DESCRIPTION: |
|
|
217 | # Generates an installable version of the specification indicated by |
|
|
218 | # the metadata distributed by the gem itself. This is similar to how |
|
|
219 | # rubygems creates an installation from a .gem file. |
|
|
220 | ruby_fakegem_metadata_gemspec() { |
|
|
221 | ${RUBY} -r yaml -e "puts Gem::Specification.from_yaml(File::open('$1').read).to_ruby" > $2 |
|
|
222 | } |
|
|
223 | |
| 134 | # @FUNCTION: ruby_fakegem_genspec |
224 | # @FUNCTION: ruby_fakegem_genspec |
|
|
225 | # @USAGE: output-gemspec |
| 135 | # @DESCRIPTION: |
226 | # @DESCRIPTION: |
| 136 | # Generates a gemspec for the package and places it into the "specifications" |
227 | # Generates a gemspec for the package and places it into the "specifications" |
| 137 | # directory of RubyGems. |
228 | # directory of RubyGems. |
|
|
229 | # If the metadata normally distributed with a gem is present then that is |
|
|
230 | # used to generate the gemspec file. |
|
|
231 | # |
|
|
232 | # As a fallback we can generate our own version. |
| 138 | # In the gemspec, the following values are set: name, version, summary, |
233 | # In the gemspec, the following values are set: name, version, summary, |
| 139 | # homepage, and require_paths=["lib"]. |
234 | # homepage, and require_paths=["lib"]. |
| 140 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
235 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
| 141 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
236 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 142 | ruby_fakegem_genspec() { |
237 | ruby_fakegem_genspec() { |
| 143 | ( |
|
|
| 144 | local required_paths="'lib'" |
238 | local required_paths="'lib'" |
| 145 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
239 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
| 146 | required_paths="${required_paths}, '${path}'" |
240 | required_paths="${required_paths}, '${path}'" |
| 147 | done |
241 | done |
| 148 | |
242 | |
| 149 | # We use the _ruby_implementation variable to avoid having stray |
243 | # We use the _ruby_implementation variable to avoid having stray |
| 150 | # copies with different implementations; while for now we're using |
244 | # copies with different implementations; while for now we're using |
| 151 | # the same exact content, we might have differences in the future, |
245 | # the same exact content, we might have differences in the future, |
| 152 | # so better taking this into consideration. |
246 | # so better taking this into consideration. |
| 153 | local quoted_description=${DESCRIPTION//\"/\\\"} |
247 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 154 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
248 | cat - > $1 <<EOF |
| 155 | # generated by ruby-fakegem.eclass $Revision: 1.23 $ |
249 | # generated by ruby-fakegem.eclass $Revision: 1.34 $ |
| 156 | Gem::Specification.new do |s| |
250 | Gem::Specification.new do |s| |
| 157 | s.name = "${RUBY_FAKEGEM_NAME}" |
251 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 158 | s.version = "${RUBY_FAKEGEM_VERSION}" |
252 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 159 | s.summary = "${quoted_description}" |
253 | s.summary = "${quoted_description}" |
| 160 | s.homepage = "${HOMEPAGE}" |
254 | s.homepage = "${HOMEPAGE}" |
| 161 | s.require_paths = [${required_paths}] |
255 | s.require_paths = [${required_paths}] |
| 162 | end |
256 | end |
| 163 | EOF |
257 | EOF |
| 164 | |
|
|
| 165 | insinto $(ruby_fakegem_gemsdir)/specifications |
|
|
| 166 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
|
|
| 167 | ) || die "Unable to install fake gemspec" |
|
|
| 168 | } |
258 | } |
| 169 | |
259 | |
| 170 | # @FUNCTION: ruby_fakegem_binwrapper |
260 | # @FUNCTION: ruby_fakegem_binwrapper |
| 171 | # @USAGE: command [path] |
261 | # @USAGE: command [path] |
| 172 | # @DESCRIPTION: |
262 | # @DESCRIPTION: |
| … | |
… | |
| 204 | |
294 | |
| 205 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
295 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 206 | #!${rubycmd} |
296 | #!${rubycmd} |
| 207 | # This is a simplified version of the RubyGems wrapper |
297 | # This is a simplified version of the RubyGems wrapper |
| 208 | # |
298 | # |
| 209 | # Generated by ruby-fakegem.eclass $Revision: 1.23 $ |
299 | # Generated by ruby-fakegem.eclass $Revision: 1.34 $ |
| 210 | |
300 | |
| 211 | require 'rubygems' |
301 | require 'rubygems' |
| 212 | |
302 | |
| 213 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
303 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 214 | |
304 | |
| … | |
… | |
| 237 | # extracted twice and the mtime from the archive _has_ to be |
327 | # extracted twice and the mtime from the archive _has_ to be |
| 238 | # ignored (it's always set to epoch 0). |
328 | # ignored (it's always set to epoch 0). |
| 239 | for archive in ${A}; do |
329 | for archive in ${A}; do |
| 240 | case "${archive}" in |
330 | case "${archive}" in |
| 241 | *.gem) |
331 | *.gem) |
| 242 | # Make sure that we're not running unoack for more than |
332 | # Make sure that we're not running unpack for more than |
| 243 | # one .gem file, since we won't support that at all. |
333 | # one .gem file, since we won't support that at all. |
| 244 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
334 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
| 245 | |
335 | |
| 246 | ebegin "Unpacking .gem file..." |
336 | ebegin "Unpacking .gem file..." |
| 247 | tar -mxf ${DISTDIR}/${archive} || die |
337 | tar -mxf ${DISTDIR}/${archive} || die |
| 248 | eend $? |
338 | eend $? |
| 249 | |
339 | |
|
|
340 | ebegin "Uncompressing metadata" |
|
|
341 | gunzip metadata.gz || die |
|
|
342 | eend $? |
|
|
343 | |
| 250 | mkdir "${S}" |
344 | mkdir "${S}" |
| 251 | pushd "${S}" &>/dev/null |
345 | pushd "${S}" &>/dev/null |
| 252 | |
346 | |
| 253 | ebegin "Unpacking data.tar.gz" |
347 | ebegin "Unpacking data.tar.gz" |
| 254 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
348 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 255 | eend $? |
349 | eend $? |
|
|
350 | |
| 256 | popd &>/dev/null |
351 | popd &>/dev/null |
| 257 | ;; |
352 | ;; |
| 258 | *.patch.bz2) |
353 | *.patch.bz2) |
| 259 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
354 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
| 260 | # as the WORKDIR variable changes value between the global-scope |
355 | # as the WORKDIR variable changes value between the global-scope |
| … | |
… | |
| 279 | |
374 | |
| 280 | # @FUNCTION: each_fakegem_test |
375 | # @FUNCTION: each_fakegem_test |
| 281 | # @DESCRIPTION: |
376 | # @DESCRIPTION: |
| 282 | # Run tests for the package for each ruby target if the test task is defined. |
377 | # Run tests for the package for each ruby target if the test task is defined. |
| 283 | each_fakegem_test() { |
378 | each_fakegem_test() { |
| 284 | local rubyflags= |
379 | case ${RUBY_FAKEGEM_RECIPE_TEST} in |
|
|
380 | rake) |
| 285 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
381 | ${RUBY} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
|
|
382 | ;; |
|
|
383 | rspec) |
|
|
384 | ruby-ng_rspec |
|
|
385 | ;; |
|
|
386 | cucumber) |
|
|
387 | ruby-ng_cucumber |
|
|
388 | ;; |
|
|
389 | none) |
|
|
390 | ewarn "each_fakegem_test called, but \${RUBY_FAKEGEM_RECIPE_TEST} is 'none'" |
|
|
391 | ;; |
|
|
392 | esac |
| 286 | } |
393 | } |
| 287 | |
394 | |
| 288 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
395 | if [[ ${RUBY_FAKEGEM_RECIPE_TEST} != none ]]; then |
| 289 | # @FUNCTION: each_ruby_test |
396 | # @FUNCTION: each_ruby_test |
| 290 | # @DESCRIPTION: |
397 | # @DESCRIPTION: |
| 291 | # Run the tests for this package. |
398 | # Run the tests for this package. |
| 292 | each_ruby_test() { |
399 | each_ruby_test() { |
| 293 | each_fakegem_test |
400 | each_fakegem_test |
| 294 | } |
401 | } |
| 295 | fi |
402 | fi |
| 296 | |
403 | |
| 297 | # @FUNCTION: each_fakegem_install |
404 | # @FUNCTION: each_fakegem_install |
| 298 | # @DESCRIPTION: |
405 | # @DESCRIPTION: |
| 299 | # Install the package for each ruby target. |
406 | # Install the package for each ruby target. |
| 300 | each_fakegem_install() { |
407 | each_fakegem_install() { |
| 301 | ruby_fakegem_genspec |
408 | ruby_fakegem_install_gemspec |
| 302 | |
409 | |
| 303 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
410 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 304 | for directory in bin lib; do |
411 | for directory in bin lib; do |
| 305 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
412 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 306 | done |
413 | done |