| 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.23 2010/08/30 22:08:24 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.28 2011/03/05 06:58:00 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 | # |
| … | |
… | |
| 56 | |
56 | |
| 57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
| 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 | |
|
|
62 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_GEMSPEC |
|
|
63 | # @DESCRIPTION: |
|
|
64 | # Filename of .gemspec file to install instead of generating a generic one. |
|
|
65 | # RUBY_FAKEGEM_GEMSPEC="" |
| 61 | |
66 | |
| 62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
67 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
68 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
| 64 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
69 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 65 | |
70 | |
| … | |
… | |
| 82 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
87 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 83 | fi |
88 | fi |
| 84 | |
89 | |
| 85 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
90 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 86 | |
91 | |
|
|
92 | ruby_add_bdepend dev-ruby/rubygems |
| 87 | ruby_add_rdepend virtual/rubygems |
93 | ruby_add_rdepend dev-ruby/rubygems |
| 88 | |
94 | |
| 89 | # @FUNCTION: ruby_fakegem_gemsdir |
95 | # @FUNCTION: ruby_fakegem_gemsdir |
| 90 | # @RETURN: Returns the gem data directory |
96 | # @RETURN: Returns the gem data directory |
| 91 | # @DESCRIPTION: |
97 | # @DESCRIPTION: |
| 92 | # This function returns the gems data directory for the ruby |
98 | # This function returns the gems data directory for the ruby |
| 93 | # implementation in question. |
99 | # implementation in question. |
| 94 | ruby_fakegem_gemsdir() { |
100 | ruby_fakegem_gemsdir() { |
| 95 | local _gemsitedir=$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' | sed -e 's:site_ruby:gems:') |
101 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
102 | |
|
|
103 | local _gemsitedir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
104 | _gemsitedir=${_gemsitedir//site_ruby/gems} |
|
|
105 | _gemsitedir=${_gemsitedir#${EPREFIX}} |
| 96 | |
106 | |
| 97 | [[ -z ${_gemsitedir} ]] && { |
107 | [[ -z ${_gemsitedir} ]] && { |
| 98 | eerror "Unable to find the gems dir" |
108 | eerror "Unable to find the gems dir" |
| 99 | die "Unable to find the gems dir" |
109 | die "Unable to find the gems dir" |
| 100 | } |
110 | } |
| … | |
… | |
| 129 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
139 | insinto $(ruby_fakegem_gemsdir)/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${newdirname} |
| 130 | newins "$1" ${newbasename} |
140 | newins "$1" ${newbasename} |
| 131 | ) || die "failed $0 $@" |
141 | ) || die "failed $0 $@" |
| 132 | } |
142 | } |
| 133 | |
143 | |
|
|
144 | # @FUNCTION: ruby_fakegem_install_gemspec |
|
|
145 | # @DESCRIPTION: |
|
|
146 | # Install a .gemspec file for this package. Either use the file indicated |
|
|
147 | # by the RUBY_FAKEGEM_GEMSPEC variable, or generate one using |
|
|
148 | # ruby_fakegem_genspec. |
|
|
149 | ruby_fakegem_install_gemspec() { |
|
|
150 | local gemspec="${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} |
|
|
151 | |
|
|
152 | ( |
|
|
153 | if [[ ${RUBY_FAKEGEM_GEMSPEC} != "" ]]; then |
|
|
154 | ruby_fakegem_gemspec_gemspec ${RUBY_FAKEGEM_GEMSPEC} ${gemspec} |
|
|
155 | else |
|
|
156 | local metadata="${WORKDIR}"/${_ruby_implementation}/metadata |
|
|
157 | |
|
|
158 | if [[ -e ${metadata} ]]; then |
|
|
159 | ruby_fakegem_metadata_gemspec ${metadata} ${gemspec} |
|
|
160 | else |
|
|
161 | ruby_fakegem_genspec ${gemspec} |
|
|
162 | fi |
|
|
163 | fi |
|
|
164 | ) || die "Unable to generate gemspec file." |
|
|
165 | |
|
|
166 | insinto $(ruby_fakegem_gemsdir)/specifications |
|
|
167 | newins ${gemspec} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec || die "Unable to install gemspec file." |
|
|
168 | } |
|
|
169 | |
|
|
170 | # @FUNCTION: ruby_fakegem_gemspec_gemspec |
|
|
171 | # @USAGE: gemspec-input gemspec-output |
|
|
172 | # @DESCRIPTION: |
|
|
173 | # Generates an installable version of the specification indicated by |
|
|
174 | # RUBY_FAKEGEM_GEMSPEC. This file is eval'ed to produce a final specification |
|
|
175 | # in a way similar to packaging the gemspec file. |
|
|
176 | ruby_fakegem_gemspec_gemspec() { |
|
|
177 | ${RUBY} -e "puts eval(File::open('$1').read).to_ruby" > $2 |
|
|
178 | } |
|
|
179 | |
|
|
180 | # @FUNCTION: ruby_fakegem_metadata_gemspec |
|
|
181 | # @USAGE: gemspec-metadata gemspec-output |
|
|
182 | # @DESCRIPTION: |
|
|
183 | # Generates an installable version of the specification indicated by |
|
|
184 | # the metadata distributed by the gem itself. This is similar to how |
|
|
185 | # rubygems creates an installation from a .gem file. |
|
|
186 | ruby_fakegem_metadata_gemspec() { |
|
|
187 | ${RUBY} -r yaml -e "puts Gem::Specification.from_yaml(File::open('$1').read).to_ruby" > $2 |
|
|
188 | } |
|
|
189 | |
| 134 | # @FUNCTION: ruby_fakegem_genspec |
190 | # @FUNCTION: ruby_fakegem_genspec |
|
|
191 | # @USAGE: output-gemspec |
| 135 | # @DESCRIPTION: |
192 | # @DESCRIPTION: |
| 136 | # Generates a gemspec for the package and places it into the "specifications" |
193 | # Generates a gemspec for the package and places it into the "specifications" |
| 137 | # directory of RubyGems. |
194 | # directory of RubyGems. |
|
|
195 | # If the metadata normally distributed with a gem is present then that is |
|
|
196 | # used to generate the gemspec file. |
|
|
197 | # |
|
|
198 | # As a fallback we can generate our own version. |
| 138 | # In the gemspec, the following values are set: name, version, summary, |
199 | # In the gemspec, the following values are set: name, version, summary, |
| 139 | # homepage, and require_paths=["lib"]. |
200 | # homepage, and require_paths=["lib"]. |
| 140 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
201 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
| 141 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
202 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 142 | ruby_fakegem_genspec() { |
203 | ruby_fakegem_genspec() { |
| 143 | ( |
|
|
| 144 | local required_paths="'lib'" |
204 | local required_paths="'lib'" |
| 145 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
205 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
| 146 | required_paths="${required_paths}, '${path}'" |
206 | required_paths="${required_paths}, '${path}'" |
| 147 | done |
207 | done |
| 148 | |
208 | |
| 149 | # We use the _ruby_implementation variable to avoid having stray |
209 | # We use the _ruby_implementation variable to avoid having stray |
| 150 | # copies with different implementations; while for now we're using |
210 | # copies with different implementations; while for now we're using |
| 151 | # the same exact content, we might have differences in the future, |
211 | # the same exact content, we might have differences in the future, |
| 152 | # so better taking this into consideration. |
212 | # so better taking this into consideration. |
| 153 | local quoted_description=${DESCRIPTION//\"/\\\"} |
213 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 154 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
214 | cat - > $1 <<EOF |
| 155 | # generated by ruby-fakegem.eclass $Revision: 1.23 $ |
215 | # generated by ruby-fakegem.eclass $Revision: 1.28 $ |
| 156 | Gem::Specification.new do |s| |
216 | Gem::Specification.new do |s| |
| 157 | s.name = "${RUBY_FAKEGEM_NAME}" |
217 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 158 | s.version = "${RUBY_FAKEGEM_VERSION}" |
218 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 159 | s.summary = "${quoted_description}" |
219 | s.summary = "${quoted_description}" |
| 160 | s.homepage = "${HOMEPAGE}" |
220 | s.homepage = "${HOMEPAGE}" |
| 161 | s.require_paths = [${required_paths}] |
221 | s.require_paths = [${required_paths}] |
| 162 | end |
222 | end |
| 163 | EOF |
223 | 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 | } |
224 | } |
| 169 | |
225 | |
| 170 | # @FUNCTION: ruby_fakegem_binwrapper |
226 | # @FUNCTION: ruby_fakegem_binwrapper |
| 171 | # @USAGE: command [path] |
227 | # @USAGE: command [path] |
| 172 | # @DESCRIPTION: |
228 | # @DESCRIPTION: |
| … | |
… | |
| 204 | |
260 | |
| 205 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
261 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 206 | #!${rubycmd} |
262 | #!${rubycmd} |
| 207 | # This is a simplified version of the RubyGems wrapper |
263 | # This is a simplified version of the RubyGems wrapper |
| 208 | # |
264 | # |
| 209 | # Generated by ruby-fakegem.eclass $Revision: 1.23 $ |
265 | # Generated by ruby-fakegem.eclass $Revision: 1.28 $ |
| 210 | |
266 | |
| 211 | require 'rubygems' |
267 | require 'rubygems' |
| 212 | |
268 | |
| 213 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
269 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 214 | |
270 | |
| … | |
… | |
| 245 | |
301 | |
| 246 | ebegin "Unpacking .gem file..." |
302 | ebegin "Unpacking .gem file..." |
| 247 | tar -mxf ${DISTDIR}/${archive} || die |
303 | tar -mxf ${DISTDIR}/${archive} || die |
| 248 | eend $? |
304 | eend $? |
| 249 | |
305 | |
|
|
306 | ebegin "Uncompressing metadata" |
|
|
307 | gunzip metadata.gz || die |
|
|
308 | eend $? |
|
|
309 | |
| 250 | mkdir "${S}" |
310 | mkdir "${S}" |
| 251 | pushd "${S}" &>/dev/null |
311 | pushd "${S}" &>/dev/null |
| 252 | |
312 | |
| 253 | ebegin "Unpacking data.tar.gz" |
313 | ebegin "Unpacking data.tar.gz" |
| 254 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
314 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 255 | eend $? |
315 | eend $? |
|
|
316 | |
| 256 | popd &>/dev/null |
317 | popd &>/dev/null |
| 257 | ;; |
318 | ;; |
| 258 | *.patch.bz2) |
319 | *.patch.bz2) |
| 259 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
320 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
| 260 | # as the WORKDIR variable changes value between the global-scope |
321 | # as the WORKDIR variable changes value between the global-scope |
| … | |
… | |
| 296 | |
357 | |
| 297 | # @FUNCTION: each_fakegem_install |
358 | # @FUNCTION: each_fakegem_install |
| 298 | # @DESCRIPTION: |
359 | # @DESCRIPTION: |
| 299 | # Install the package for each ruby target. |
360 | # Install the package for each ruby target. |
| 300 | each_fakegem_install() { |
361 | each_fakegem_install() { |
| 301 | ruby_fakegem_genspec |
362 | ruby_fakegem_install_gemspec |
| 302 | |
363 | |
| 303 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
364 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 304 | for directory in bin lib; do |
365 | for directory in bin lib; do |
| 305 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
366 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 306 | done |
367 | done |