| 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.10 2010/01/09 21:16:37 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}}" |
| 54 | |
64 | |
| 55 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
65 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| 56 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
66 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
|
|
67 | |
|
|
68 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| 57 | |
69 | |
| 58 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
70 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 59 | IUSE="$IUSE doc" |
71 | IUSE="$IUSE doc" |
| 60 | ruby_add_bdepend doc "dev-ruby/rake" |
72 | ruby_add_bdepend doc "dev-ruby/rake" |
| 61 | fi |
73 | fi |
| … | |
… | |
| 119 | # Generates a gemspec for the package and places it into the "specifications" |
131 | # Generates a gemspec for the package and places it into the "specifications" |
| 120 | # directory of RubyGems. |
132 | # directory of RubyGems. |
| 121 | # In the gemspec, the following values are set: name, version, summary, |
133 | # In the gemspec, the following values are set: name, version, summary, |
| 122 | # homepage, and require_paths=["lib"]. |
134 | # homepage, and require_paths=["lib"]. |
| 123 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
135 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
|
|
136 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 124 | ruby_fakegem_genspec() { |
137 | ruby_fakegem_genspec() { |
| 125 | ( |
138 | ( |
|
|
139 | local required_paths="'lib'" |
|
|
140 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
|
|
141 | required_paths="${required_paths}, '${path}'" |
|
|
142 | done |
|
|
143 | |
| 126 | # We use the _ruby_implementation variable to avoid having stray |
144 | # We use the _ruby_implementation variable to avoid having stray |
| 127 | # copies with different implementations; while for now we're using |
145 | # copies with different implementations; while for now we're using |
| 128 | # the same exact content, we might have differences in the future, |
146 | # the same exact content, we might have differences in the future, |
| 129 | # so better taking this into consideration. |
147 | # so better taking this into consideration. |
| 130 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
148 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
| 131 | Gem::Specification.new do |s| |
149 | Gem::Specification.new do |s| |
| 132 | s.name = "${RUBY_FAKEGEM_NAME}" |
150 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 133 | s.version = "${RUBY_FAKEGEM_VERSION}" |
151 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 134 | s.summary = "${DESCRIPTION}" |
152 | s.summary = "${DESCRIPTION}" |
| 135 | s.homepage = "${HOMEPAGE}" |
153 | s.homepage = "${HOMEPAGE}" |
| 136 | s.require_paths = ["lib"] |
154 | s.require_paths = [${required_paths}] |
| 137 | end |
155 | end |
| 138 | EOF |
156 | EOF |
| 139 | |
157 | |
| 140 | insinto $(ruby_fakegem_gemsdir)/specifications |
158 | insinto $(ruby_fakegem_gemsdir)/specifications |
| 141 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
159 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
| … | |
… | |
| 149 | # path defaults to /usr/bin/$command |
167 | # path defaults to /usr/bin/$command |
| 150 | ruby_fakegem_binwrapper() { |
168 | ruby_fakegem_binwrapper() { |
| 151 | ( |
169 | ( |
| 152 | local gembinary=$1 |
170 | local gembinary=$1 |
| 153 | local newbinary=${2:-/usr/bin/$gembinary} |
171 | local newbinary=${2:-/usr/bin/$gembinary} |
|
|
172 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
| 154 | |
173 | |
| 155 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
174 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 156 | #!/usr/bin/env ruby |
175 | #!/usr/bin/env ruby |
| 157 | # This is a simplified version of the RubyGems wrapper |
176 | # This is a simplified version of the RubyGems wrapper |
| 158 | # |
177 | # |
| 159 | # Generated by ruby-fakegem.eclass |
178 | # Generated by ruby-fakegem.eclass |
| 160 | |
179 | |
| 161 | require 'rubygems' |
180 | require 'rubygems' |
| 162 | |
181 | |
| 163 | load Gem::GemPathSearcher.new.find('$(tr [A-Z] [a-z] <<< ${RUBY_FAKEGEM_NAME})').full_gem_path + "/bin/${gembinary}" |
182 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 164 | |
183 | |
| 165 | EOF |
184 | EOF |
| 166 | |
185 | |
| 167 | exeinto $(dirname $newbinary) |
186 | exeinto $(dirname $newbinary) |
| 168 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
187 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| … | |
… | |
| 242 | local _gemlibdirs= |
261 | local _gemlibdirs= |
| 243 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
262 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
| 244 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
263 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 245 | done |
264 | done |
| 246 | |
265 | |
|
|
266 | [[ -n ${_gemlibdirs} ]] && \ |
| 247 | ruby_fakegem_doins -r ${_gemlibdirs} |
267 | ruby_fakegem_doins -r ${_gemlibdirs} |
| 248 | } |
268 | } |
| 249 | |
269 | |
| 250 | # @FUNCTION: each_ruby_install |
270 | # @FUNCTION: each_ruby_install |
| 251 | # @DESCRIPTION: |
271 | # @DESCRIPTION: |
| 252 | # Install the package for each target. |
272 | # Install the package for each target. |
| … | |
… | |
| 256 | |
276 | |
| 257 | # @FUNCTION: all_fakegem_install |
277 | # @FUNCTION: all_fakegem_install |
| 258 | # @DESCRIPTION: |
278 | # @DESCRIPTION: |
| 259 | # Install files common to all ruby targets. |
279 | # Install files common to all ruby targets. |
| 260 | all_fakegem_install() { |
280 | all_fakegem_install() { |
| 261 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
281 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
| 262 | pushd ${RUBY_FAKEGEM_DOCDIR} |
282 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
283 | pushd ${dir} |
| 263 | dohtml -r * || die "failed to install documentation" |
284 | dohtml -r * || die "failed to install documentation" |
| 264 | popd |
285 | popd |
|
|
286 | done |
| 265 | fi |
287 | fi |
| 266 | |
288 | |
| 267 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
289 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 268 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
290 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
|
|
291 | fi |
|
|
292 | |
|
|
293 | # binary wrappers; we assume that all the implementations get the |
|
|
294 | # same binaries, or something is wrong anyway, so... |
|
|
295 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
|
|
296 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
|
|
297 | |
|
|
298 | if [[ -d "${bindir}" ]]; then |
|
|
299 | pushd "${bindir}" |
|
|
300 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
|
|
301 | for binary in $binaries; do |
|
|
302 | ruby_fakegem_binwrapper $binary |
|
|
303 | done |
|
|
304 | popd |
|
|
305 | fi |
| 269 | fi |
306 | fi |
| 270 | } |
307 | } |
| 271 | |
308 | |
| 272 | # @FUNCTION: all_ruby_install |
309 | # @FUNCTION: all_ruby_install |
| 273 | # @DESCRIPTION: |
310 | # @DESCRIPTION: |