| 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.1 2009/12/14 12:32:18 a3li Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.37 2012/08/19 07:45:02 graaff 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: |
| … | |
… | |
| 29 | # RUBY_FAKEGEM_VERSION="${PV}" |
26 | # RUBY_FAKEGEM_VERSION="${PV}" |
| 30 | |
27 | |
| 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_VERSION="rdoc" |
31 | # RUBY_FAKEGEM_TASK_DOC="rdoc" |
|
|
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" |
| 35 | |
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_VERSION="test" |
47 | # RUBY_FAKEGEM_TASK_TEST="test" |
|
|
48 | |
|
|
49 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_RECIPE_DOC |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # Specify one of the default API doc building function for ruby-fakegem: |
|
|
52 | # - rake (default; see also RUBY_FAKEGEM_TASK_DOC) |
|
|
53 | # - rdoc (calls `rdoc-2`, adds dev-ruby/rdoc to the dependencies); |
|
|
54 | # - none |
|
|
55 | # RUBY_FAKEGEM_RECIPE_DOC="rake" |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_DOCDIR |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Specify the directory under which the documentation is built; |
|
|
60 | # if empty no documentation will be installed automatically. |
|
|
61 | # Note: if RUBY_FAKEGEM_RECIPE_DOC is set to `rdoc`, this variable is |
|
|
62 | # hardwired to `doc`. |
|
|
63 | # RUBY_FAKEGEM_DOCDIR="" |
|
|
64 | |
|
|
65 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRADOC |
|
|
66 | # @DESCRIPTION: |
|
|
67 | # Extra documentation to install (readme, changelogs, …). |
|
|
68 | # RUBY_FAKEGEM_EXTRADOC="" |
|
|
69 | |
|
|
70 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_DOC_SOURCES |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Allow settings defined sources to scan for documentation. |
|
|
73 | # This only applies if RUBY_FAKEGEM_DOC_TASK is set to `rdoc`. |
|
|
74 | # RUBY_FAKEGEM_DOC_SOURCES="lib" |
|
|
75 | |
|
|
76 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
|
|
77 | # @DESCRIPTION: |
|
|
78 | # Binaries to wrap around (relative to the bin/ directory) |
|
|
79 | # RUBY_FAKEGEM_BINWRAP="*" |
|
|
80 | |
|
|
81 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
|
|
82 | # @DESCRIPTION: |
|
|
83 | # Extra require paths (beside lib) to add to the specification |
|
|
84 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
|
|
85 | |
|
|
86 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_GEMSPEC |
|
|
87 | # @DESCRIPTION: |
|
|
88 | # Filename of .gemspec file to install instead of generating a generic one. |
|
|
89 | # RUBY_FAKEGEM_GEMSPEC="" |
|
|
90 | |
|
|
91 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRAINSTALL |
|
|
92 | # @DESCRIPTION: |
|
|
93 | # List of files and directories relative to the top directory that also |
|
|
94 | # get installed. Some gems provide extra files such as version information, |
|
|
95 | # Rails generators, or data that needs to be installed as well. |
|
|
96 | # RUBY_FAKEGEM_EXTRAINSTALL="" |
| 40 | |
97 | |
| 41 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
98 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 42 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
99 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
|
|
100 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 43 | |
101 | |
|
|
102 | RUBY_FAKEGEM_RECIPE_DOC="${RUBY_FAKEGEM_RECIPE_DOC-rake}" |
| 44 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
103 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
|
|
104 | RUBY_FAKEGEM_DOC_SOURCES="${RUBY_FAKEGEM_DOC_SOURCES-lib}" |
|
|
105 | |
|
|
106 | RUBY_FAKEGEM_RECIPE_TEST="${RUBY_FAKEGEM_RECIPE_TEST-rake}" |
| 45 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
107 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
| 46 | |
108 | |
| 47 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
109 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
|
|
110 | |
|
|
111 | [[ ${RUBY_FAKEGEM_TASK_DOC} == "" ]] && RUBY_FAKEGEM_RECIPE_DOC="none" |
|
|
112 | |
|
|
113 | case ${RUBY_FAKEGEM_RECIPE_DOC} in |
|
|
114 | rake) |
| 48 | IUSE="$IUSE doc" |
115 | IUSE+=" doc" |
| 49 | ruby_add_bdepend doc "dev-ruby/rake" |
116 | ruby_add_bdepend "doc? ( dev-ruby/rake )" |
| 50 | fi |
117 | ;; |
|
|
118 | rdoc) |
|
|
119 | IUSE+=" doc" |
|
|
120 | ruby_add_bdepend "doc? ( dev-ruby/rdoc )" |
|
|
121 | RUBY_FAKEGEM_DOCDIR="doc" |
|
|
122 | ;; |
|
|
123 | none) |
|
|
124 | [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && IUSE+=" doc" |
|
|
125 | ;; |
|
|
126 | esac |
| 51 | |
127 | |
| 52 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
128 | [[ ${RUBY_FAKEGEM_TASK_TEST} == "" ]] && RUBY_FAKEGEM_RECIPE_TEST="none" |
|
|
129 | |
|
|
130 | case ${RUBY_FAKEGEM_RECIPE_TEST} in |
|
|
131 | rake) |
| 53 | IUSE="$IUSE test" |
132 | IUSE+=" test" |
| 54 | ruby_add_bdepend test "dev-ruby/rake" |
133 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 55 | fi |
134 | ;; |
|
|
135 | rspec) |
|
|
136 | IUSE+=" test" |
|
|
137 | ruby_add_bdepend "test? ( dev-ruby/rspec:2 )" |
|
|
138 | ;; |
|
|
139 | cucumber) |
|
|
140 | IUSE+=" test" |
|
|
141 | # Unfortunately as of August 2012, cucumber is not supported on |
|
|
142 | # JRuby. We work it around here to avoid repeating the same |
|
|
143 | # code over and over again. |
|
|
144 | USE_RUBY="${USE_RUBY/jruby/}" ruby_add_bdepend "test? ( dev-util/cucumber )" |
|
|
145 | ;; |
|
|
146 | *) |
|
|
147 | RUBY_FAKEGEM_RECIPE_TEST="none" |
|
|
148 | ;; |
|
|
149 | esac |
| 56 | |
150 | |
|
|
151 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
|
|
152 | |
|
|
153 | ruby_add_bdepend virtual/rubygems |
| 57 | ruby_add_rdepend virtual/rubygems |
154 | ruby_add_rdepend virtual/rubygems |
| 58 | |
155 | |
| 59 | # @FUNCTION: ruby_fakegem_gemsdir |
156 | # @FUNCTION: ruby_fakegem_gemsdir |
| 60 | # @RETURN: Returns the gem data directory |
157 | # @RETURN: Returns the gem data directory |
| 61 | # @DESCRIPTION: |
158 | # @DESCRIPTION: |
| 62 | # This function returns the gems data directory for the ruby |
159 | # This function returns the gems data directory for the ruby |
| 63 | # implementation in question. |
160 | # implementation in question. |
| 64 | ruby_fakegem_gemsdir() { |
161 | ruby_fakegem_gemsdir() { |
| 65 | local _gemsitedir=$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' | sed -e 's:site_ruby:gems:') |
162 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
163 | |
|
|
164 | local _gemsitedir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
165 | _gemsitedir=${_gemsitedir//site_ruby/gems} |
|
|
166 | _gemsitedir=${_gemsitedir#${EPREFIX}} |
| 66 | |
167 | |
| 67 | [[ -z ${_gemsitedir} ]] && { |
168 | [[ -z ${_gemsitedir} ]] && { |
| 68 | eerror "Unable to find the gems dir" |
169 | eerror "Unable to find the gems dir" |
| 69 | die "Unable to find the gems dir" |
170 | die "Unable to find the gems dir" |
| 70 | } |
171 | } |
| … | |
… | |
| 99 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
200 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
| 100 | newins "$1" ${newbasename} |
201 | newins "$1" ${newbasename} |
| 101 | ) || die "failed $0 $@" |
202 | ) || die "failed $0 $@" |
| 102 | } |
203 | } |
| 103 | |
204 | |
|
|
205 | # @FUNCTION: ruby_fakegem_install_gemspec |
|
|
206 | # @DESCRIPTION: |
|
|
207 | # Install a .gemspec file for this package. Either use the file indicated |
|
|
208 | # by the RUBY_FAKEGEM_GEMSPEC variable, or generate one using |
|
|
209 | # ruby_fakegem_genspec. |
|
|
210 | ruby_fakegem_install_gemspec() { |
|
|
211 | local gemspec="${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} |
|
|
212 | |
|
|
213 | ( |
|
|
214 | if [[ ${RUBY_FAKEGEM_GEMSPEC} != "" ]]; then |
|
|
215 | ruby_fakegem_gemspec_gemspec ${RUBY_FAKEGEM_GEMSPEC} ${gemspec} |
|
|
216 | else |
|
|
217 | local metadata="${WORKDIR}"/${_ruby_implementation}/metadata |
|
|
218 | |
|
|
219 | if [[ -e ${metadata} ]]; then |
|
|
220 | ruby_fakegem_metadata_gemspec ${metadata} ${gemspec} |
|
|
221 | else |
|
|
222 | ruby_fakegem_genspec ${gemspec} |
|
|
223 | fi |
|
|
224 | fi |
|
|
225 | ) || die "Unable to generate gemspec file." |
|
|
226 | |
|
|
227 | insinto $(ruby_fakegem_gemsdir)/specifications |
|
|
228 | newins ${gemspec} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec || die "Unable to install gemspec file." |
|
|
229 | } |
|
|
230 | |
|
|
231 | # @FUNCTION: ruby_fakegem_gemspec_gemspec |
|
|
232 | # @USAGE: gemspec-input gemspec-output |
|
|
233 | # @DESCRIPTION: |
|
|
234 | # Generates an installable version of the specification indicated by |
|
|
235 | # RUBY_FAKEGEM_GEMSPEC. This file is eval'ed to produce a final specification |
|
|
236 | # in a way similar to packaging the gemspec file. |
|
|
237 | ruby_fakegem_gemspec_gemspec() { |
|
|
238 | ${RUBY} -e "puts eval(File::open('$1').read).to_ruby" > $2 |
|
|
239 | } |
|
|
240 | |
|
|
241 | # @FUNCTION: ruby_fakegem_metadata_gemspec |
|
|
242 | # @USAGE: gemspec-metadata gemspec-output |
|
|
243 | # @DESCRIPTION: |
|
|
244 | # Generates an installable version of the specification indicated by |
|
|
245 | # the metadata distributed by the gem itself. This is similar to how |
|
|
246 | # rubygems creates an installation from a .gem file. |
|
|
247 | ruby_fakegem_metadata_gemspec() { |
|
|
248 | case ${RUBY} in |
|
|
249 | *ruby19) |
|
|
250 | ${RUBY} -r yaml -e "puts Gem::Specification.from_yaml(File::open('$1', :encoding => 'UTF-8').read).to_ruby" > $2 |
|
|
251 | ;; |
|
|
252 | *) |
|
|
253 | ${RUBY} -r yaml -e "puts Gem::Specification.from_yaml(File::open('$1').read).to_ruby" > $2 |
|
|
254 | ;; |
|
|
255 | esac |
|
|
256 | } |
|
|
257 | |
| 104 | # @FUNCTION: ruby_fakegem_genspec |
258 | # @FUNCTION: ruby_fakegem_genspec |
|
|
259 | # @USAGE: output-gemspec |
| 105 | # @DESCRIPTION: |
260 | # @DESCRIPTION: |
| 106 | # Generates a gemspec for the package and places it into the "specifications" |
261 | # Generates a gemspec for the package and places it into the "specifications" |
| 107 | # directory of RubyGems. |
262 | # directory of RubyGems. |
|
|
263 | # If the metadata normally distributed with a gem is present then that is |
|
|
264 | # used to generate the gemspec file. |
|
|
265 | # |
|
|
266 | # As a fallback we can generate our own version. |
| 108 | # In the gemspec, the following values are set: name, version, summary, |
267 | # In the gemspec, the following values are set: name, version, summary, |
| 109 | # homepage, and require_paths=["lib"]. |
268 | # homepage, and require_paths=["lib"]. |
| 110 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
269 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
|
|
270 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 111 | ruby_fakegem_genspec() { |
271 | ruby_fakegem_genspec() { |
| 112 | ( |
272 | local required_paths="'lib'" |
|
|
273 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
|
|
274 | required_paths="${required_paths}, '${path}'" |
|
|
275 | done |
|
|
276 | |
| 113 | # We use the _ruby_implementation variable to avoid having stray |
277 | # We use the _ruby_implementation variable to avoid having stray |
| 114 | # copies with different implementations; while for now we're using |
278 | # copies with different implementations; while for now we're using |
| 115 | # the same exact content, we might have differences in the future, |
279 | # the same exact content, we might have differences in the future, |
| 116 | # so better taking this into consideration. |
280 | # so better taking this into consideration. |
| 117 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
281 | local quoted_description=${DESCRIPTION//\"/\\\"} |
|
|
282 | cat - > $1 <<EOF |
|
|
283 | # generated by ruby-fakegem.eclass $Revision: 1.37 $ |
| 118 | Gem::Specification.new do |s| |
284 | Gem::Specification.new do |s| |
| 119 | s.name = "${RUBY_FAKEGEM_NAME}" |
285 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 120 | s.version = "${RUBY_FAKEGEM_VERSION}" |
286 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 121 | s.summary = "${DESCRIPTION}" |
287 | s.summary = "${quoted_description}" |
| 122 | s.homepage = "${HOMEPAGE}" |
288 | s.homepage = "${HOMEPAGE}" |
| 123 | s.require_paths = ["lib"] |
289 | s.require_paths = [${required_paths}] |
| 124 | end |
290 | end |
| 125 | EOF |
291 | EOF |
| 126 | |
|
|
| 127 | insinto $(ruby_fakegem_gemsdir)/specifications |
|
|
| 128 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
|
|
| 129 | ) || die "Unable to install fake gemspec" |
|
|
| 130 | } |
292 | } |
| 131 | |
293 | |
| 132 | # @FUNCTION: ruby_fakegem_binwrapper |
294 | # @FUNCTION: ruby_fakegem_binwrapper |
| 133 | # @USAGE: command [path] |
295 | # @USAGE: command [path] |
| 134 | # @DESCRIPTION: |
296 | # @DESCRIPTION: |
| … | |
… | |
| 136 | # path defaults to /usr/bin/$command |
298 | # path defaults to /usr/bin/$command |
| 137 | ruby_fakegem_binwrapper() { |
299 | ruby_fakegem_binwrapper() { |
| 138 | ( |
300 | ( |
| 139 | local gembinary=$1 |
301 | local gembinary=$1 |
| 140 | local newbinary=${2:-/usr/bin/$gembinary} |
302 | local newbinary=${2:-/usr/bin/$gembinary} |
|
|
303 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
|
|
304 | local binpath=$(dirname $newbinary) |
|
|
305 | [[ ${binpath} = . ]] && binpath=/usr/bin |
|
|
306 | |
|
|
307 | # Try to find out whether the package is going to install for |
|
|
308 | # one or multiple implementations; if we're installing for a |
|
|
309 | # *single* implementation, no need to use “/usr/bin/env ruby” |
|
|
310 | # in the shebang, and we can actually avoid errors when |
|
|
311 | # calling the script by default (see for instance the |
|
|
312 | # JRuby-specific commands). |
|
|
313 | local rubycmd= |
|
|
314 | for implementation in ${USE_RUBY}; do |
|
|
315 | # ignore non-enabled implementations |
|
|
316 | use ruby_targets_${implementation} || continue |
|
|
317 | if [ -z $rubycmd ]; then |
|
|
318 | # if no other implementation was set before, set it. |
|
|
319 | rubycmd="$(ruby_implementation_command ${implementation})" |
|
|
320 | else |
|
|
321 | # if another implementation already arrived, then make |
|
|
322 | # it generic and break out of the loop. This ensures |
|
|
323 | # that we do at most two iterations. |
|
|
324 | rubycmd="/usr/bin/env ruby" |
|
|
325 | break |
|
|
326 | fi |
|
|
327 | done |
| 141 | |
328 | |
| 142 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
329 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 143 | #!/usr/bin/env ruby |
330 | #!${rubycmd} |
| 144 | # This is a simplified version of the RubyGems wrapper |
331 | # This is a simplified version of the RubyGems wrapper |
| 145 | # |
332 | # |
| 146 | # Generated by ruby-fakegem.eclass |
333 | # Generated by ruby-fakegem.eclass $Revision: 1.37 $ |
| 147 | |
334 | |
| 148 | require 'rubygems' |
335 | require 'rubygems' |
| 149 | |
336 | |
| 150 | load Gem::GemPathSearcher.new.find('$(tr [A-Z] [a-z] <<< ${RUBY_FAKEGEM_NAME})').full_gem_path + "/bin/${gembinary}" |
337 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 151 | |
338 | |
| 152 | EOF |
339 | EOF |
| 153 | |
340 | |
| 154 | exeinto $(dirname $newbinary) |
341 | exeinto ${binpath:-/usr/bin} |
| 155 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
342 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| 156 | ) || die "Unable to create fakegem wrapper" |
343 | ) || die "Unable to create fakegem wrapper" |
| 157 | } |
344 | } |
| 158 | |
345 | |
| 159 | # @FUNCTION: all_fakegem_compile |
346 | # @FUNCTION: all_fakegem_compile |
| 160 | # @DESCRIPTION: |
347 | # @DESCRIPTION: |
| 161 | # Build documentation for the package if indicated by the doc USE flag |
348 | # Build documentation for the package if indicated by the doc USE flag |
| 162 | # and if there is a documetation task defined. |
349 | # and if there is a documetation task defined. |
| 163 | all_fakegem_compile() { |
350 | all_fakegem_compile() { |
| 164 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
351 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
|
|
352 | case ${RUBY_FAKEGEM_RECIPE_DOC} in |
|
|
353 | rake) |
| 165 | rake ${RUBY_FAKEGEM_TASK_DOC} || die "failed to (re)build documentation" |
354 | rake ${RUBY_FAKEGEM_TASK_DOC} || die "failed to (re)build documentation" |
|
|
355 | ;; |
|
|
356 | rdoc) |
|
|
357 | rdoc ${RUBY_FAKEGEM_DOC_SOURCES} || die "failed to (re)build documentation" |
|
|
358 | ;; |
|
|
359 | esac |
| 166 | fi |
360 | fi |
| 167 | } |
361 | } |
| 168 | |
362 | |
| 169 | # @FUNCTION: all_ruby_unpack |
363 | # @FUNCTION: all_ruby_unpack |
| 170 | # @DESCRIPTION: |
364 | # @DESCRIPTION: |
| 171 | # Unpack the source archive, including support for unpacking gems. |
365 | # Unpack the source archive, including support for unpacking gems. |
| 172 | all_ruby_unpack() { |
366 | all_ruby_unpack() { |
| 173 | # Special support for extracting .gem files; the file need to be |
367 | # Special support for extracting .gem files; the file need to be |
| 174 | # extracted twice and the mtime from the archive _has_ to be |
368 | # extracted twice and the mtime from the archive _has_ to be |
| 175 | # ignored (it's always set to epoch 0). |
369 | # ignored (it's always set to epoch 0). |
| 176 | # |
370 | for archive in ${A}; do |
| 177 | # This only works if there is exactly one archive and that archive |
371 | case "${archive}" in |
| 178 | # is a .gem file! |
372 | *.gem) |
| 179 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
373 | # Make sure that we're not running unpack for more than |
| 180 | [[ ${A} == *.gem ]]; then |
374 | # one .gem file, since we won't support that at all. |
|
|
375 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
376 | |
| 181 | ebegin "Unpacking .gem file..." |
377 | ebegin "Unpacking .gem file..." |
| 182 | tar -mxf ${DISTDIR}/${A} || die |
378 | tar -mxf ${DISTDIR}/${archive} || die |
| 183 | eend $? |
379 | eend $? |
| 184 | |
380 | |
|
|
381 | ebegin "Uncompressing metadata" |
|
|
382 | gunzip metadata.gz || die |
|
|
383 | eend $? |
|
|
384 | |
| 185 | mkdir "${S}" |
385 | mkdir "${S}" |
| 186 | pushd "${S}" |
386 | pushd "${S}" &>/dev/null |
| 187 | |
387 | |
| 188 | ebegin "Unpacking data.tar.gz" |
388 | ebegin "Unpacking data.tar.gz" |
| 189 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
389 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 190 | eend $? |
390 | eend $? |
| 191 | else |
391 | |
| 192 | [[ -n ${A} ]] && unpack ${A} |
392 | popd &>/dev/null |
| 193 | fi |
393 | ;; |
|
|
394 | *.patch.bz2) |
|
|
395 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
|
|
396 | # as the WORKDIR variable changes value between the global-scope |
|
|
397 | # and the time all_ruby_unpack/_prepare are called. Since we can |
|
|
398 | # simply decompress them when applying, this is much easier to |
|
|
399 | # deal with for us. |
|
|
400 | einfo "Keeping ${archive} as-is" |
|
|
401 | ;; |
|
|
402 | *) |
|
|
403 | unpack ${archive} |
|
|
404 | ;; |
|
|
405 | esac |
|
|
406 | done |
| 194 | } |
407 | } |
| 195 | |
408 | |
| 196 | # @FUNCTION: all_ruby_compile |
409 | # @FUNCTION: all_ruby_compile |
| 197 | # @DESCRIPTION: |
410 | # @DESCRIPTION: |
| 198 | # Compile the package. |
411 | # Compile the package. |
| … | |
… | |
| 202 | |
415 | |
| 203 | # @FUNCTION: each_fakegem_test |
416 | # @FUNCTION: each_fakegem_test |
| 204 | # @DESCRIPTION: |
417 | # @DESCRIPTION: |
| 205 | # Run tests for the package for each ruby target if the test task is defined. |
418 | # Run tests for the package for each ruby target if the test task is defined. |
| 206 | each_fakegem_test() { |
419 | each_fakegem_test() { |
| 207 | local rubyflags= |
420 | case ${RUBY_FAKEGEM_RECIPE_TEST} in |
| 208 | |
421 | rake) |
| 209 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 210 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
422 | ${RUBY} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 211 | else |
423 | ;; |
| 212 | echo "No test task defined, skipping tests." |
424 | rspec) |
| 213 | fi |
425 | ruby-ng_rspec |
|
|
426 | ;; |
|
|
427 | cucumber) |
|
|
428 | ruby-ng_cucumber |
|
|
429 | ;; |
|
|
430 | none) |
|
|
431 | ewarn "each_fakegem_test called, but \${RUBY_FAKEGEM_RECIPE_TEST} is 'none'" |
|
|
432 | ;; |
|
|
433 | esac |
| 214 | } |
434 | } |
| 215 | |
435 | |
|
|
436 | if [[ ${RUBY_FAKEGEM_RECIPE_TEST} != none ]]; then |
| 216 | # @FUNCTION: each_ruby_test |
437 | # @FUNCTION: each_ruby_test |
| 217 | # @DESCRIPTION: |
438 | # @DESCRIPTION: |
| 218 | # Run the tests for this package. |
439 | # Run the tests for this package. |
| 219 | each_ruby_test() { |
440 | each_ruby_test() { |
| 220 | each_fakegem_test |
441 | each_fakegem_test |
| 221 | } |
442 | } |
|
|
443 | fi |
| 222 | |
444 | |
| 223 | # @FUNCTION: each_fakegem_install |
445 | # @FUNCTION: each_fakegem_install |
| 224 | # @DESCRIPTION: |
446 | # @DESCRIPTION: |
| 225 | # Install the package for each ruby target. |
447 | # Install the package for each ruby target. |
| 226 | each_fakegem_install() { |
448 | each_fakegem_install() { |
| 227 | ruby_fakegem_genspec |
449 | ruby_fakegem_install_gemspec |
| 228 | |
450 | |
| 229 | local _gemlibdirs= |
451 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 230 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
452 | for directory in bin lib; do |
| 231 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
453 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 232 | done |
454 | done |
| 233 | |
455 | |
|
|
456 | [[ -n ${_gemlibdirs} ]] && \ |
| 234 | ruby_fakegem_doins -r ${_gemlibdirs} |
457 | ruby_fakegem_doins -r ${_gemlibdirs} |
| 235 | } |
458 | } |
| 236 | |
459 | |
| 237 | # @FUNCTION: each_ruby_install |
460 | # @FUNCTION: each_ruby_install |
| 238 | # @DESCRIPTION: |
461 | # @DESCRIPTION: |
| 239 | # Install the package for each target. |
462 | # Install the package for each target. |
| … | |
… | |
| 244 | # @FUNCTION: all_fakegem_install |
467 | # @FUNCTION: all_fakegem_install |
| 245 | # @DESCRIPTION: |
468 | # @DESCRIPTION: |
| 246 | # Install files common to all ruby targets. |
469 | # Install files common to all ruby targets. |
| 247 | all_fakegem_install() { |
470 | all_fakegem_install() { |
| 248 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
471 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 249 | pushd ${RUBY_FAKEGEM_DOCDIR} |
472 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
473 | [[ -d ${dir} ]] || continue |
|
|
474 | |
|
|
475 | pushd ${dir} &>/dev/null |
| 250 | dohtml -r * || die "failed to install documentation" |
476 | dohtml -r * || die "failed to install documentation" |
| 251 | popd |
477 | popd &>/dev/null |
|
|
478 | done |
| 252 | fi |
479 | fi |
| 253 | |
480 | |
| 254 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
481 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 255 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
482 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
| 256 | fi |
483 | fi |
|
|
484 | |
|
|
485 | # binary wrappers; we assume that all the implementations get the |
|
|
486 | # same binaries, or something is wrong anyway, so... |
|
|
487 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
|
|
488 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
|
|
489 | |
|
|
490 | if [[ -d "${bindir}" ]]; then |
|
|
491 | pushd "${bindir}" &>/dev/null |
|
|
492 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
|
|
493 | for binary in $binaries; do |
|
|
494 | ruby_fakegem_binwrapper $binary |
|
|
495 | done |
|
|
496 | popd &>/dev/null |
|
|
497 | fi |
|
|
498 | fi |
| 257 | } |
499 | } |
| 258 | |
500 | |
| 259 | # @FUNCTION: all_ruby_install |
501 | # @FUNCTION: all_ruby_install |
| 260 | # @DESCRIPTION: |
502 | # @DESCRIPTION: |
| 261 | # Install files common to all ruby targets. |
503 | # Install files common to all ruby targets. |