| 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-fakegem.eclass,v 1.4 2009/12/15 17:43:51 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.23 2010/08/30 22:08:24 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 | # |
| … | |
… | |
| 47 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRADOC |
47 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRADOC |
| 48 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 49 | # Extra documentation to install (readme, changelogs, …). |
49 | # Extra documentation to install (readme, changelogs, …). |
| 50 | # RUBY_FAKEGEM_EXTRADOC="" |
50 | # RUBY_FAKEGEM_EXTRADOC="" |
| 51 | |
51 | |
|
|
52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
|
|
53 | # @DESCRIPTION: |
|
|
54 | # Binaries to wrap around (relative to the bin/ directory) |
|
|
55 | # RUBY_FAKEGEM_BINWRAP="*" |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Extra require paths (beside lib) to add to the specification |
|
|
60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
|
|
61 | |
| 52 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 53 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
|
|
64 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 54 | |
65 | |
| 55 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
66 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| 56 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
67 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
| 57 | |
68 | |
|
|
69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
|
|
70 | |
| 58 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 59 | IUSE="$IUSE doc" |
72 | IUSE="$IUSE doc" |
| 60 | ruby_add_bdepend doc "dev-ruby/rake" |
73 | ruby_add_bdepend "doc? ( dev-ruby/rake )" |
|
|
74 | fi |
|
|
75 | |
|
|
76 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]]; then |
|
|
77 | IUSE="$IUSE doc" |
| 61 | fi |
78 | fi |
| 62 | |
79 | |
| 63 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
80 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 64 | IUSE="$IUSE test" |
81 | IUSE="$IUSE test" |
| 65 | ruby_add_bdepend test "dev-ruby/rake" |
82 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 66 | fi |
83 | fi |
| 67 | |
84 | |
| 68 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gem" |
85 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 69 | |
86 | |
| 70 | ruby_add_rdepend virtual/rubygems |
87 | ruby_add_rdepend virtual/rubygems |
| 71 | |
88 | |
| 72 | # @FUNCTION: ruby_fakegem_gemsdir |
89 | # @FUNCTION: ruby_fakegem_gemsdir |
| 73 | # @RETURN: Returns the gem data directory |
90 | # @RETURN: Returns the gem data directory |
| … | |
… | |
| 119 | # Generates a gemspec for the package and places it into the "specifications" |
136 | # Generates a gemspec for the package and places it into the "specifications" |
| 120 | # directory of RubyGems. |
137 | # directory of RubyGems. |
| 121 | # In the gemspec, the following values are set: name, version, summary, |
138 | # In the gemspec, the following values are set: name, version, summary, |
| 122 | # homepage, and require_paths=["lib"]. |
139 | # homepage, and require_paths=["lib"]. |
| 123 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
140 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
|
|
141 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 124 | ruby_fakegem_genspec() { |
142 | ruby_fakegem_genspec() { |
| 125 | ( |
143 | ( |
|
|
144 | local required_paths="'lib'" |
|
|
145 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
|
|
146 | required_paths="${required_paths}, '${path}'" |
|
|
147 | done |
|
|
148 | |
| 126 | # We use the _ruby_implementation variable to avoid having stray |
149 | # We use the _ruby_implementation variable to avoid having stray |
| 127 | # copies with different implementations; while for now we're using |
150 | # copies with different implementations; while for now we're using |
| 128 | # the same exact content, we might have differences in the future, |
151 | # the same exact content, we might have differences in the future, |
| 129 | # so better taking this into consideration. |
152 | # so better taking this into consideration. |
|
|
153 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 130 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
154 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
|
|
155 | # generated by ruby-fakegem.eclass $Revision: 1.23 $ |
| 131 | Gem::Specification.new do |s| |
156 | Gem::Specification.new do |s| |
| 132 | s.name = "${RUBY_FAKEGEM_NAME}" |
157 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 133 | s.version = "${RUBY_FAKEGEM_VERSION}" |
158 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 134 | s.summary = "${DESCRIPTION}" |
159 | s.summary = "${quoted_description}" |
| 135 | s.homepage = "${HOMEPAGE}" |
160 | s.homepage = "${HOMEPAGE}" |
| 136 | s.require_paths = ["lib"] |
161 | s.require_paths = [${required_paths}] |
| 137 | end |
162 | end |
| 138 | EOF |
163 | EOF |
| 139 | |
164 | |
| 140 | insinto $(ruby_fakegem_gemsdir)/specifications |
165 | insinto $(ruby_fakegem_gemsdir)/specifications |
| 141 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
166 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
| … | |
… | |
| 149 | # path defaults to /usr/bin/$command |
174 | # path defaults to /usr/bin/$command |
| 150 | ruby_fakegem_binwrapper() { |
175 | ruby_fakegem_binwrapper() { |
| 151 | ( |
176 | ( |
| 152 | local gembinary=$1 |
177 | local gembinary=$1 |
| 153 | local newbinary=${2:-/usr/bin/$gembinary} |
178 | local newbinary=${2:-/usr/bin/$gembinary} |
|
|
179 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
|
|
180 | local binpath=$(dirname $newbinary) |
|
|
181 | [[ ${binpath} = . ]] && binpath=/usr/bin |
|
|
182 | |
|
|
183 | # Try to find out whether the package is going to install for |
|
|
184 | # one or multiple implementations; if we're installing for a |
|
|
185 | # *single* implementation, no need to use “/usr/bin/env ruby” |
|
|
186 | # in the shebang, and we can actually avoid errors when |
|
|
187 | # calling the script by default (see for instance the |
|
|
188 | # JRuby-specific commands). |
|
|
189 | local rubycmd= |
|
|
190 | for implementation in ${USE_RUBY}; do |
|
|
191 | # ignore non-enabled implementations |
|
|
192 | use ruby_targets_${implementation} || continue |
|
|
193 | if [ -z $rubycmd ]; then |
|
|
194 | # if no other implementation was set before, set it. |
|
|
195 | rubycmd="$(ruby_implementation_command ${implementation})" |
|
|
196 | else |
|
|
197 | # if another implementation already arrived, then make |
|
|
198 | # it generic and break out of the loop. This ensures |
|
|
199 | # that we do at most two iterations. |
|
|
200 | rubycmd="/usr/bin/env ruby" |
|
|
201 | break |
|
|
202 | fi |
|
|
203 | done |
| 154 | |
204 | |
| 155 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
205 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 156 | #!/usr/bin/env ruby |
206 | #!${rubycmd} |
| 157 | # This is a simplified version of the RubyGems wrapper |
207 | # This is a simplified version of the RubyGems wrapper |
| 158 | # |
208 | # |
| 159 | # Generated by ruby-fakegem.eclass |
209 | # Generated by ruby-fakegem.eclass $Revision: 1.23 $ |
| 160 | |
210 | |
| 161 | require 'rubygems' |
211 | require 'rubygems' |
| 162 | |
212 | |
| 163 | load Gem::GemPathSearcher.new.find('$(tr [A-Z] [a-z] <<< ${RUBY_FAKEGEM_NAME})').full_gem_path + "/bin/${gembinary}" |
213 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 164 | |
214 | |
| 165 | EOF |
215 | EOF |
| 166 | |
216 | |
| 167 | exeinto $(dirname $newbinary) |
217 | exeinto ${binpath:-/usr/bin} |
| 168 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
218 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| 169 | ) || die "Unable to create fakegem wrapper" |
219 | ) || die "Unable to create fakegem wrapper" |
| 170 | } |
220 | } |
| 171 | |
221 | |
| 172 | # @FUNCTION: all_fakegem_compile |
222 | # @FUNCTION: all_fakegem_compile |
| … | |
… | |
| 184 | # Unpack the source archive, including support for unpacking gems. |
234 | # Unpack the source archive, including support for unpacking gems. |
| 185 | all_ruby_unpack() { |
235 | all_ruby_unpack() { |
| 186 | # Special support for extracting .gem files; the file need to be |
236 | # Special support for extracting .gem files; the file need to be |
| 187 | # extracted twice and the mtime from the archive _has_ to be |
237 | # extracted twice and the mtime from the archive _has_ to be |
| 188 | # ignored (it's always set to epoch 0). |
238 | # ignored (it's always set to epoch 0). |
| 189 | # |
239 | for archive in ${A}; do |
| 190 | # This only works if there is exactly one archive and that archive |
240 | case "${archive}" in |
| 191 | # is a .gem file! |
241 | *.gem) |
| 192 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
242 | # Make sure that we're not running unoack for more than |
| 193 | [[ ${A} == *.gem ]]; then |
243 | # one .gem file, since we won't support that at all. |
|
|
244 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
245 | |
| 194 | ebegin "Unpacking .gem file..." |
246 | ebegin "Unpacking .gem file..." |
| 195 | tar -mxf ${DISTDIR}/${A} || die |
247 | tar -mxf ${DISTDIR}/${archive} || die |
| 196 | eend $? |
248 | eend $? |
| 197 | |
249 | |
| 198 | mkdir "${S}" |
250 | mkdir "${S}" |
| 199 | pushd "${S}" |
251 | pushd "${S}" &>/dev/null |
| 200 | |
252 | |
| 201 | ebegin "Unpacking data.tar.gz" |
253 | ebegin "Unpacking data.tar.gz" |
| 202 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
254 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 203 | eend $? |
255 | eend $? |
| 204 | else |
256 | popd &>/dev/null |
| 205 | [[ -n ${A} ]] && unpack ${A} |
257 | ;; |
| 206 | fi |
258 | *.patch.bz2) |
|
|
259 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
|
|
260 | # as the WORKDIR variable changes value between the global-scope |
|
|
261 | # and the time all_ruby_unpack/_prepare are called. Since we can |
|
|
262 | # simply decompress them when applying, this is much easier to |
|
|
263 | # deal with for us. |
|
|
264 | einfo "Keeping ${archive} as-is" |
|
|
265 | ;; |
|
|
266 | *) |
|
|
267 | unpack ${archive} |
|
|
268 | ;; |
|
|
269 | esac |
|
|
270 | done |
| 207 | } |
271 | } |
| 208 | |
272 | |
| 209 | # @FUNCTION: all_ruby_compile |
273 | # @FUNCTION: all_ruby_compile |
| 210 | # @DESCRIPTION: |
274 | # @DESCRIPTION: |
| 211 | # Compile the package. |
275 | # Compile the package. |
| … | |
… | |
| 216 | # @FUNCTION: each_fakegem_test |
280 | # @FUNCTION: each_fakegem_test |
| 217 | # @DESCRIPTION: |
281 | # @DESCRIPTION: |
| 218 | # Run tests for the package for each ruby target if the test task is defined. |
282 | # Run tests for the package for each ruby target if the test task is defined. |
| 219 | each_fakegem_test() { |
283 | each_fakegem_test() { |
| 220 | local rubyflags= |
284 | local rubyflags= |
| 221 | |
|
|
| 222 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 223 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
285 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 224 | else |
|
|
| 225 | echo "No test task defined, skipping tests." |
|
|
| 226 | fi |
|
|
| 227 | } |
286 | } |
| 228 | |
287 | |
|
|
288 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 229 | # @FUNCTION: each_ruby_test |
289 | # @FUNCTION: each_ruby_test |
| 230 | # @DESCRIPTION: |
290 | # @DESCRIPTION: |
| 231 | # Run the tests for this package. |
291 | # Run the tests for this package. |
| 232 | each_ruby_test() { |
292 | each_ruby_test() { |
| 233 | each_fakegem_test |
293 | each_fakegem_test |
| 234 | } |
294 | } |
|
|
295 | fi |
| 235 | |
296 | |
| 236 | # @FUNCTION: each_fakegem_install |
297 | # @FUNCTION: each_fakegem_install |
| 237 | # @DESCRIPTION: |
298 | # @DESCRIPTION: |
| 238 | # Install the package for each ruby target. |
299 | # Install the package for each ruby target. |
| 239 | each_fakegem_install() { |
300 | each_fakegem_install() { |
| 240 | ruby_fakegem_genspec |
301 | ruby_fakegem_genspec |
| 241 | |
302 | |
| 242 | local _gemlibdirs= |
303 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 243 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
304 | for directory in bin lib; do |
| 244 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
305 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 245 | done |
306 | done |
| 246 | |
307 | |
|
|
308 | [[ -n ${_gemlibdirs} ]] && \ |
| 247 | ruby_fakegem_doins -r ${_gemlibdirs} |
309 | ruby_fakegem_doins -r ${_gemlibdirs} |
| 248 | } |
310 | } |
| 249 | |
311 | |
| 250 | # @FUNCTION: each_ruby_install |
312 | # @FUNCTION: each_ruby_install |
| 251 | # @DESCRIPTION: |
313 | # @DESCRIPTION: |
| 252 | # Install the package for each target. |
314 | # Install the package for each target. |
| … | |
… | |
| 257 | # @FUNCTION: all_fakegem_install |
319 | # @FUNCTION: all_fakegem_install |
| 258 | # @DESCRIPTION: |
320 | # @DESCRIPTION: |
| 259 | # Install files common to all ruby targets. |
321 | # Install files common to all ruby targets. |
| 260 | all_fakegem_install() { |
322 | all_fakegem_install() { |
| 261 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
323 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 262 | pushd ${RUBY_FAKEGEM_DOCDIR} |
324 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
325 | [[ -d ${dir} ]] || continue |
|
|
326 | |
|
|
327 | pushd ${dir} &>/dev/null |
| 263 | dohtml -r * || die "failed to install documentation" |
328 | dohtml -r * || die "failed to install documentation" |
| 264 | popd |
329 | popd &>/dev/null |
|
|
330 | done |
| 265 | fi |
331 | fi |
| 266 | |
332 | |
| 267 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
333 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 268 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
334 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
| 269 | fi |
335 | fi |
|
|
336 | |
|
|
337 | # binary wrappers; we assume that all the implementations get the |
|
|
338 | # same binaries, or something is wrong anyway, so... |
|
|
339 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
|
|
340 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
|
|
341 | |
|
|
342 | if [[ -d "${bindir}" ]]; then |
|
|
343 | pushd "${bindir}" &>/dev/null |
|
|
344 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
|
|
345 | for binary in $binaries; do |
|
|
346 | ruby_fakegem_binwrapper $binary |
|
|
347 | done |
|
|
348 | popd &>/dev/null |
|
|
349 | fi |
|
|
350 | fi |
| 270 | } |
351 | } |
| 271 | |
352 | |
| 272 | # @FUNCTION: all_ruby_install |
353 | # @FUNCTION: all_ruby_install |
| 273 | # @DESCRIPTION: |
354 | # @DESCRIPTION: |
| 274 | # Install files common to all ruby targets. |
355 | # Install files common to all ruby targets. |