| 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.23 2010/08/30 22:08:24 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.23 $ |
| 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="$(ruby_implementation_command ${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.23 $ |
| 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 |
240 | case "${archive}" in |
| 210 | # is a .gem file! |
241 | *.gem) |
| 211 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
242 | # Make sure that we're not running unoack for more than |
| 212 | [[ ${A} == *.gem ]]; then |
243 | # one .gem file, since we won't support that at all. |
|
|
244 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
245 | |
| 213 | ebegin "Unpacking .gem file..." |
246 | ebegin "Unpacking .gem file..." |
| 214 | tar -mxf ${DISTDIR}/${A} || die |
247 | tar -mxf ${DISTDIR}/${archive} || die |
| 215 | eend $? |
248 | eend $? |
| 216 | |
249 | |
| 217 | mkdir "${S}" |
250 | mkdir "${S}" |
| 218 | pushd "${S}" &>/dev/null |
251 | pushd "${S}" &>/dev/null |
| 219 | |
252 | |
| 220 | ebegin "Unpacking data.tar.gz" |
253 | ebegin "Unpacking data.tar.gz" |
| 221 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
254 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 222 | eend $? |
255 | eend $? |
| 223 | popd &>/dev/null |
256 | popd &>/dev/null |
| 224 | else |
257 | ;; |
| 225 | [[ -n ${A} ]] && unpack ${A} |
258 | *.patch.bz2) |
| 226 | fi |
259 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
|
|
260 | # as the WORKDIR variable changes value between the global-scope |
|
|
261 | # and the time all_ruby_unpack/_prepare are called. Since we can |
|
|
262 | # simply decompress them when applying, this is much easier to |
|
|
263 | # deal with for us. |
|
|
264 | einfo "Keeping ${archive} as-is" |
|
|
265 | ;; |
|
|
266 | *) |
|
|
267 | unpack ${archive} |
|
|
268 | ;; |
|
|
269 | esac |
|
|
270 | done |
| 227 | } |
271 | } |
| 228 | |
272 | |
| 229 | # @FUNCTION: all_ruby_compile |
273 | # @FUNCTION: all_ruby_compile |
| 230 | # @DESCRIPTION: |
274 | # @DESCRIPTION: |
| 231 | # Compile the package. |
275 | # Compile the package. |
| … | |
… | |
| 236 | # @FUNCTION: each_fakegem_test |
280 | # @FUNCTION: each_fakegem_test |
| 237 | # @DESCRIPTION: |
281 | # @DESCRIPTION: |
| 238 | # Run tests for the package for each ruby target if the test task is defined. |
282 | # Run tests for the package for each ruby target if the test task is defined. |
| 239 | each_fakegem_test() { |
283 | each_fakegem_test() { |
| 240 | local rubyflags= |
284 | local rubyflags= |
| 241 | |
|
|
| 242 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 243 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
285 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 244 | else |
|
|
| 245 | echo "No test task defined, skipping tests." |
|
|
| 246 | fi |
|
|
| 247 | } |
286 | } |
| 248 | |
287 | |
|
|
288 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 249 | # @FUNCTION: each_ruby_test |
289 | # @FUNCTION: each_ruby_test |
| 250 | # @DESCRIPTION: |
290 | # @DESCRIPTION: |
| 251 | # Run the tests for this package. |
291 | # Run the tests for this package. |
| 252 | each_ruby_test() { |
292 | each_ruby_test() { |
| 253 | each_fakegem_test |
293 | each_fakegem_test |
| 254 | } |
294 | } |
|
|
295 | fi |
| 255 | |
296 | |
| 256 | # @FUNCTION: each_fakegem_install |
297 | # @FUNCTION: each_fakegem_install |
| 257 | # @DESCRIPTION: |
298 | # @DESCRIPTION: |
| 258 | # Install the package for each ruby target. |
299 | # Install the package for each ruby target. |
| 259 | each_fakegem_install() { |
300 | each_fakegem_install() { |
| … | |
… | |
| 277 | |
318 | |
| 278 | # @FUNCTION: all_fakegem_install |
319 | # @FUNCTION: all_fakegem_install |
| 279 | # @DESCRIPTION: |
320 | # @DESCRIPTION: |
| 280 | # Install files common to all ruby targets. |
321 | # Install files common to all ruby targets. |
| 281 | all_fakegem_install() { |
322 | all_fakegem_install() { |
| 282 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
323 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 283 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
324 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
325 | [[ -d ${dir} ]] || continue |
|
|
326 | |
| 284 | pushd ${dir} &>/dev/null |
327 | pushd ${dir} &>/dev/null |
| 285 | dohtml -r * || die "failed to install documentation" |
328 | dohtml -r * || die "failed to install documentation" |
| 286 | popd &>/dev/null |
329 | popd &>/dev/null |
| 287 | done |
330 | done |
| 288 | fi |
331 | fi |