| 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.18 2010/05/24 07:34:14 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.19 2010/07/21 10:42:38 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 | # |
| … | |
… | |
| 146 | # copies with different implementations; while for now we're using |
146 | # copies with different implementations; while for now we're using |
| 147 | # the same exact content, we might have differences in the future, |
147 | # the same exact content, we might have differences in the future, |
| 148 | # so better taking this into consideration. |
148 | # so better taking this into consideration. |
| 149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 150 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
150 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
| 151 | # generated by ruby-fakegem.eclass $Revision: 1.18 $ |
151 | # generated by ruby-fakegem.eclass $Revision: 1.19 $ |
| 152 | Gem::Specification.new do |s| |
152 | Gem::Specification.new do |s| |
| 153 | s.name = "${RUBY_FAKEGEM_NAME}" |
153 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 155 | s.summary = "${quoted_description}" |
155 | s.summary = "${quoted_description}" |
| 156 | s.homepage = "${HOMEPAGE}" |
156 | s.homepage = "${HOMEPAGE}" |
| … | |
… | |
| 200 | |
200 | |
| 201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 202 | #!${rubycmd} |
202 | #!${rubycmd} |
| 203 | # This is a simplified version of the RubyGems wrapper |
203 | # This is a simplified version of the RubyGems wrapper |
| 204 | # |
204 | # |
| 205 | # Generated by ruby-fakegem.eclass $Revision: 1.18 $ |
205 | # Generated by ruby-fakegem.eclass $Revision: 1.19 $ |
| 206 | |
206 | |
| 207 | require 'rubygems' |
207 | require 'rubygems' |
| 208 | |
208 | |
| 209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 210 | |
210 | |
| … | |
… | |
| 230 | # Unpack the source archive, including support for unpacking gems. |
230 | # Unpack the source archive, including support for unpacking gems. |
| 231 | all_ruby_unpack() { |
231 | all_ruby_unpack() { |
| 232 | # Special support for extracting .gem files; the file need to be |
232 | # Special support for extracting .gem files; the file need to be |
| 233 | # extracted twice and the mtime from the archive _has_ to be |
233 | # extracted twice and the mtime from the archive _has_ to be |
| 234 | # ignored (it's always set to epoch 0). |
234 | # ignored (it's always set to epoch 0). |
| 235 | # |
235 | for archive in ${A}; do |
| 236 | # This only works if there is exactly one archive and that archive |
|
|
| 237 | # is a .gem file! |
|
|
| 238 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
|
|
| 239 | [[ ${A} == *.gem ]]; then |
236 | if [[ ${archive} == *.gem ]]; then |
|
|
237 | # Make sure that we're not running unoack for more than |
|
|
238 | # one .gem file, since we won't support that at all. |
|
|
239 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
240 | |
| 240 | ebegin "Unpacking .gem file..." |
241 | ebegin "Unpacking .gem file..." |
| 241 | tar -mxf ${DISTDIR}/${A} || die |
242 | tar -mxf ${DISTDIR}/${archive} || die |
| 242 | eend $? |
243 | eend $? |
| 243 | |
244 | |
| 244 | mkdir "${S}" |
245 | mkdir "${S}" |
| 245 | pushd "${S}" &>/dev/null |
246 | pushd "${S}" &>/dev/null |
| 246 | |
247 | |
| 247 | ebegin "Unpacking data.tar.gz" |
248 | ebegin "Unpacking data.tar.gz" |
| 248 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
249 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 249 | eend $? |
250 | eend $? |
| 250 | popd &>/dev/null |
251 | popd &>/dev/null |
| 251 | else |
252 | else |
| 252 | [[ -n ${A} ]] && unpack ${A} |
253 | unpack ${archive} |
| 253 | fi |
254 | fi |
|
|
255 | done |
| 254 | } |
256 | } |
| 255 | |
257 | |
| 256 | # @FUNCTION: all_ruby_compile |
258 | # @FUNCTION: all_ruby_compile |
| 257 | # @DESCRIPTION: |
259 | # @DESCRIPTION: |
| 258 | # Compile the package. |
260 | # Compile the package. |