| 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.11 2010/01/18 22:01:46 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.18 2010/05/24 07:34:14 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 )" |
| 73 | fi |
74 | fi |
| 74 | |
75 | |
| 75 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
76 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 76 | IUSE="$IUSE test" |
77 | IUSE="$IUSE test" |
| 77 | ruby_add_bdepend test "dev-ruby/rake" |
78 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 78 | fi |
79 | fi |
| 79 | |
80 | |
| 80 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gem" |
81 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 81 | |
82 | |
| 82 | ruby_add_rdepend virtual/rubygems |
83 | ruby_add_rdepend virtual/rubygems |
| 83 | |
84 | |
| 84 | # @FUNCTION: ruby_fakegem_gemsdir |
85 | # @FUNCTION: ruby_fakegem_gemsdir |
| 85 | # @RETURN: Returns the gem data directory |
86 | # @RETURN: Returns the gem data directory |
| … | |
… | |
| 143 | |
144 | |
| 144 | # We use the _ruby_implementation variable to avoid having stray |
145 | # We use the _ruby_implementation variable to avoid having stray |
| 145 | # copies with different implementations; while for now we're using |
146 | # copies with different implementations; while for now we're using |
| 146 | # the same exact content, we might have differences in the future, |
147 | # the same exact content, we might have differences in the future, |
| 147 | # so better taking this into consideration. |
148 | # so better taking this into consideration. |
|
|
149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 148 | 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 $ |
| 149 | Gem::Specification.new do |s| |
152 | Gem::Specification.new do |s| |
| 150 | s.name = "${RUBY_FAKEGEM_NAME}" |
153 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 151 | s.version = "${RUBY_FAKEGEM_VERSION}" |
154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 152 | s.summary = "${DESCRIPTION}" |
155 | s.summary = "${quoted_description}" |
| 153 | s.homepage = "${HOMEPAGE}" |
156 | s.homepage = "${HOMEPAGE}" |
| 154 | s.require_paths = [${required_paths}] |
157 | s.require_paths = [${required_paths}] |
| 155 | end |
158 | end |
| 156 | EOF |
159 | EOF |
| 157 | |
160 | |
| … | |
… | |
| 168 | ruby_fakegem_binwrapper() { |
171 | ruby_fakegem_binwrapper() { |
| 169 | ( |
172 | ( |
| 170 | local gembinary=$1 |
173 | local gembinary=$1 |
| 171 | local newbinary=${2:-/usr/bin/$gembinary} |
174 | local newbinary=${2:-/usr/bin/$gembinary} |
| 172 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
175 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
|
|
176 | local binpath=$(dirname $newbinary) |
|
|
177 | [[ ${binpath} = . ]] && binpath=/usr/bin |
|
|
178 | |
|
|
179 | # Try to find out whether the package is going to install for |
|
|
180 | # one or multiple implementations; if we're installing for a |
|
|
181 | # *single* implementation, no need to use “/usr/bin/env ruby” |
|
|
182 | # in the shebang, and we can actually avoid errors when |
|
|
183 | # calling the script by default (see for instance the |
|
|
184 | # JRuby-specific commands). |
|
|
185 | local rubycmd= |
|
|
186 | for implementation in ${USE_RUBY}; do |
|
|
187 | # ignore non-enabled implementations |
|
|
188 | use ruby_targets_${implementation} || continue |
|
|
189 | if [ -z $rubycmd ]; then |
|
|
190 | # if no other implementation was set before, set it. |
|
|
191 | rubycmd="/usr/bin/${implementation}" |
|
|
192 | else |
|
|
193 | # if another implementation already arrived, then make |
|
|
194 | # it generic and break out of the loop. This ensures |
|
|
195 | # that we do at most two iterations. |
|
|
196 | rubycmd="/usr/bin/env ruby" |
|
|
197 | break |
|
|
198 | fi |
|
|
199 | done |
| 173 | |
200 | |
| 174 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 175 | #!/usr/bin/env ruby |
202 | #!${rubycmd} |
| 176 | # This is a simplified version of the RubyGems wrapper |
203 | # This is a simplified version of the RubyGems wrapper |
| 177 | # |
204 | # |
| 178 | # Generated by ruby-fakegem.eclass |
205 | # Generated by ruby-fakegem.eclass $Revision: 1.18 $ |
| 179 | |
206 | |
| 180 | require 'rubygems' |
207 | require 'rubygems' |
| 181 | |
208 | |
| 182 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 183 | |
210 | |
| 184 | EOF |
211 | EOF |
| 185 | |
212 | |
| 186 | exeinto $(dirname $newbinary) |
213 | exeinto ${binpath:-/usr/bin} |
| 187 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
214 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| 188 | ) || die "Unable to create fakegem wrapper" |
215 | ) || die "Unable to create fakegem wrapper" |
| 189 | } |
216 | } |
| 190 | |
217 | |
| 191 | # @FUNCTION: all_fakegem_compile |
218 | # @FUNCTION: all_fakegem_compile |
| … | |
… | |
| 236 | # @FUNCTION: each_fakegem_test |
263 | # @FUNCTION: each_fakegem_test |
| 237 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
| 238 | # Run tests for the package for each ruby target if the test task is defined. |
265 | # Run tests for the package for each ruby target if the test task is defined. |
| 239 | each_fakegem_test() { |
266 | each_fakegem_test() { |
| 240 | local rubyflags= |
267 | local rubyflags= |
| 241 | |
|
|
| 242 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 243 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
268 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 244 | else |
|
|
| 245 | echo "No test task defined, skipping tests." |
|
|
| 246 | fi |
|
|
| 247 | } |
269 | } |
| 248 | |
270 | |
|
|
271 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 249 | # @FUNCTION: each_ruby_test |
272 | # @FUNCTION: each_ruby_test |
| 250 | # @DESCRIPTION: |
273 | # @DESCRIPTION: |
| 251 | # Run the tests for this package. |
274 | # Run the tests for this package. |
| 252 | each_ruby_test() { |
275 | each_ruby_test() { |
| 253 | each_fakegem_test |
276 | each_fakegem_test |
| 254 | } |
277 | } |
|
|
278 | fi |
| 255 | |
279 | |
| 256 | # @FUNCTION: each_fakegem_install |
280 | # @FUNCTION: each_fakegem_install |
| 257 | # @DESCRIPTION: |
281 | # @DESCRIPTION: |
| 258 | # Install the package for each ruby target. |
282 | # Install the package for each ruby target. |
| 259 | each_fakegem_install() { |
283 | each_fakegem_install() { |