| 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.10 2010/01/09 21:16:37 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.21 2010/07/27 11:02:47 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 | # |
| … | |
… | |
| 58 | # @DESCRIPTION: |
58 | # @DESCRIPTION: |
| 59 | # Extra require paths (beside lib) to add to the specification |
59 | # Extra require paths (beside lib) to add to the specification |
| 60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
| 61 | |
61 | |
| 62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
|
|
64 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 64 | |
65 | |
| 65 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
66 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| 66 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
67 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
| 67 | |
68 | |
| 68 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| 69 | |
70 | |
| 70 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 71 | IUSE="$IUSE doc" |
72 | IUSE="$IUSE doc" |
| 72 | 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" |
| 73 | fi |
78 | fi |
| 74 | |
79 | |
| 75 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
80 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 76 | IUSE="$IUSE test" |
81 | IUSE="$IUSE test" |
| 77 | ruby_add_bdepend test "dev-ruby/rake" |
82 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 78 | fi |
83 | fi |
| 79 | |
84 | |
| 80 | 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" |
| 81 | |
86 | |
| 82 | ruby_add_rdepend virtual/rubygems |
87 | ruby_add_rdepend virtual/rubygems |
| 83 | |
88 | |
| 84 | # @FUNCTION: ruby_fakegem_gemsdir |
89 | # @FUNCTION: ruby_fakegem_gemsdir |
| 85 | # @RETURN: Returns the gem data directory |
90 | # @RETURN: Returns the gem data directory |
| … | |
… | |
| 143 | |
148 | |
| 144 | # We use the _ruby_implementation variable to avoid having stray |
149 | # We use the _ruby_implementation variable to avoid having stray |
| 145 | # copies with different implementations; while for now we're using |
150 | # copies with different implementations; while for now we're using |
| 146 | # the same exact content, we might have differences in the future, |
151 | # the same exact content, we might have differences in the future, |
| 147 | # so better taking this into consideration. |
152 | # so better taking this into consideration. |
|
|
153 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 148 | 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.21 $ |
| 149 | Gem::Specification.new do |s| |
156 | Gem::Specification.new do |s| |
| 150 | s.name = "${RUBY_FAKEGEM_NAME}" |
157 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 151 | s.version = "${RUBY_FAKEGEM_VERSION}" |
158 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 152 | s.summary = "${DESCRIPTION}" |
159 | s.summary = "${quoted_description}" |
| 153 | s.homepage = "${HOMEPAGE}" |
160 | s.homepage = "${HOMEPAGE}" |
| 154 | s.require_paths = [${required_paths}] |
161 | s.require_paths = [${required_paths}] |
| 155 | end |
162 | end |
| 156 | EOF |
163 | EOF |
| 157 | |
164 | |
| … | |
… | |
| 168 | ruby_fakegem_binwrapper() { |
175 | ruby_fakegem_binwrapper() { |
| 169 | ( |
176 | ( |
| 170 | local gembinary=$1 |
177 | local gembinary=$1 |
| 171 | local newbinary=${2:-/usr/bin/$gembinary} |
178 | local newbinary=${2:-/usr/bin/$gembinary} |
| 172 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/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="/usr/bin/${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 |
| 173 | |
204 | |
| 174 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
205 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 175 | #!/usr/bin/env ruby |
206 | #!${rubycmd} |
| 176 | # This is a simplified version of the RubyGems wrapper |
207 | # This is a simplified version of the RubyGems wrapper |
| 177 | # |
208 | # |
| 178 | # Generated by ruby-fakegem.eclass |
209 | # Generated by ruby-fakegem.eclass $Revision: 1.21 $ |
| 179 | |
210 | |
| 180 | require 'rubygems' |
211 | require 'rubygems' |
| 181 | |
212 | |
| 182 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
213 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 183 | |
214 | |
| 184 | EOF |
215 | EOF |
| 185 | |
216 | |
| 186 | exeinto $(dirname $newbinary) |
217 | exeinto ${binpath:-/usr/bin} |
| 187 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
218 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| 188 | ) || die "Unable to create fakegem wrapper" |
219 | ) || die "Unable to create fakegem wrapper" |
| 189 | } |
220 | } |
| 190 | |
221 | |
| 191 | # @FUNCTION: all_fakegem_compile |
222 | # @FUNCTION: all_fakegem_compile |
| … | |
… | |
| 203 | # Unpack the source archive, including support for unpacking gems. |
234 | # Unpack the source archive, including support for unpacking gems. |
| 204 | all_ruby_unpack() { |
235 | all_ruby_unpack() { |
| 205 | # Special support for extracting .gem files; the file need to be |
236 | # Special support for extracting .gem files; the file need to be |
| 206 | # extracted twice and the mtime from the archive _has_ to be |
237 | # extracted twice and the mtime from the archive _has_ to be |
| 207 | # ignored (it's always set to epoch 0). |
238 | # ignored (it's always set to epoch 0). |
| 208 | # |
239 | for archive in ${A}; do |
| 209 | # This only works if there is exactly one archive and that archive |
|
|
| 210 | # is a .gem file! |
|
|
| 211 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
|
|
| 212 | [[ ${A} == *.gem ]]; then |
240 | if [[ ${archive} == *.gem ]]; then |
|
|
241 | # Make sure that we're not running unoack for more than |
|
|
242 | # one .gem file, since we won't support that at all. |
|
|
243 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
244 | |
| 213 | ebegin "Unpacking .gem file..." |
245 | ebegin "Unpacking .gem file..." |
| 214 | tar -mxf ${DISTDIR}/${A} || die |
246 | tar -mxf ${DISTDIR}/${archive} || die |
| 215 | eend $? |
247 | eend $? |
| 216 | |
248 | |
| 217 | mkdir "${S}" |
249 | mkdir "${S}" |
| 218 | pushd "${S}" |
250 | pushd "${S}" &>/dev/null |
| 219 | |
251 | |
| 220 | ebegin "Unpacking data.tar.gz" |
252 | ebegin "Unpacking data.tar.gz" |
| 221 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
253 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 222 | eend $? |
254 | eend $? |
|
|
255 | popd &>/dev/null |
| 223 | else |
256 | else |
| 224 | [[ -n ${A} ]] && unpack ${A} |
257 | unpack ${archive} |
| 225 | fi |
258 | fi |
|
|
259 | done |
| 226 | } |
260 | } |
| 227 | |
261 | |
| 228 | # @FUNCTION: all_ruby_compile |
262 | # @FUNCTION: all_ruby_compile |
| 229 | # @DESCRIPTION: |
263 | # @DESCRIPTION: |
| 230 | # Compile the package. |
264 | # Compile the package. |
| … | |
… | |
| 235 | # @FUNCTION: each_fakegem_test |
269 | # @FUNCTION: each_fakegem_test |
| 236 | # @DESCRIPTION: |
270 | # @DESCRIPTION: |
| 237 | # Run tests for the package for each ruby target if the test task is defined. |
271 | # Run tests for the package for each ruby target if the test task is defined. |
| 238 | each_fakegem_test() { |
272 | each_fakegem_test() { |
| 239 | local rubyflags= |
273 | local rubyflags= |
| 240 | |
|
|
| 241 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 242 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
274 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 243 | else |
|
|
| 244 | echo "No test task defined, skipping tests." |
|
|
| 245 | fi |
|
|
| 246 | } |
275 | } |
| 247 | |
276 | |
|
|
277 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 248 | # @FUNCTION: each_ruby_test |
278 | # @FUNCTION: each_ruby_test |
| 249 | # @DESCRIPTION: |
279 | # @DESCRIPTION: |
| 250 | # Run the tests for this package. |
280 | # Run the tests for this package. |
| 251 | each_ruby_test() { |
281 | each_ruby_test() { |
| 252 | each_fakegem_test |
282 | each_fakegem_test |
| 253 | } |
283 | } |
|
|
284 | fi |
| 254 | |
285 | |
| 255 | # @FUNCTION: each_fakegem_install |
286 | # @FUNCTION: each_fakegem_install |
| 256 | # @DESCRIPTION: |
287 | # @DESCRIPTION: |
| 257 | # Install the package for each ruby target. |
288 | # Install the package for each ruby target. |
| 258 | each_fakegem_install() { |
289 | each_fakegem_install() { |
| 259 | ruby_fakegem_genspec |
290 | ruby_fakegem_genspec |
| 260 | |
291 | |
| 261 | local _gemlibdirs= |
292 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 262 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
293 | for directory in bin lib; do |
| 263 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
294 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 264 | done |
295 | done |
| 265 | |
296 | |
| 266 | [[ -n ${_gemlibdirs} ]] && \ |
297 | [[ -n ${_gemlibdirs} ]] && \ |
| 267 | ruby_fakegem_doins -r ${_gemlibdirs} |
298 | ruby_fakegem_doins -r ${_gemlibdirs} |
| … | |
… | |
| 276 | |
307 | |
| 277 | # @FUNCTION: all_fakegem_install |
308 | # @FUNCTION: all_fakegem_install |
| 278 | # @DESCRIPTION: |
309 | # @DESCRIPTION: |
| 279 | # Install files common to all ruby targets. |
310 | # Install files common to all ruby targets. |
| 280 | all_fakegem_install() { |
311 | all_fakegem_install() { |
| 281 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
312 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 282 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
313 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
| 283 | pushd ${dir} |
314 | [[ -d ${dir} ]] || continue |
|
|
315 | |
|
|
316 | pushd ${dir} &>/dev/null |
| 284 | dohtml -r * || die "failed to install documentation" |
317 | dohtml -r * || die "failed to install documentation" |
| 285 | popd |
318 | popd &>/dev/null |
| 286 | done |
319 | done |
| 287 | fi |
320 | fi |
| 288 | |
321 | |
| 289 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
322 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 290 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
323 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
| … | |
… | |
| 294 | # same binaries, or something is wrong anyway, so... |
327 | # same binaries, or something is wrong anyway, so... |
| 295 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
328 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
| 296 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
329 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
| 297 | |
330 | |
| 298 | if [[ -d "${bindir}" ]]; then |
331 | if [[ -d "${bindir}" ]]; then |
| 299 | pushd "${bindir}" |
332 | pushd "${bindir}" &>/dev/null |
| 300 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
333 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
| 301 | for binary in $binaries; do |
334 | for binary in $binaries; do |
| 302 | ruby_fakegem_binwrapper $binary |
335 | ruby_fakegem_binwrapper $binary |
| 303 | done |
336 | done |
| 304 | popd |
337 | popd &>/dev/null |
| 305 | fi |
338 | fi |
| 306 | fi |
339 | fi |
| 307 | } |
340 | } |
| 308 | |
341 | |
| 309 | # @FUNCTION: all_ruby_install |
342 | # @FUNCTION: all_ruby_install |