| 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.6 2009/12/20 23:39:43 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.14 2010/02/13 08:45:03 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 | # |
| … | |
… | |
| 51 | |
51 | |
| 52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
| 53 | # @DESCRIPTION: |
53 | # @DESCRIPTION: |
| 54 | # Binaries to wrap around (relative to the bin/ directory) |
54 | # Binaries to wrap around (relative to the bin/ directory) |
| 55 | # RUBY_FAKEGEM_BINWRAP="*" |
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="" |
| 56 | |
61 | |
| 57 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 58 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
| 59 | |
64 | |
| 60 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
65 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| … | |
… | |
| 126 | # 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" |
| 127 | # directory of RubyGems. |
132 | # directory of RubyGems. |
| 128 | # In the gemspec, the following values are set: name, version, summary, |
133 | # In the gemspec, the following values are set: name, version, summary, |
| 129 | # homepage, and require_paths=["lib"]. |
134 | # homepage, and require_paths=["lib"]. |
| 130 | # 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. |
| 131 | ruby_fakegem_genspec() { |
137 | ruby_fakegem_genspec() { |
| 132 | ( |
138 | ( |
|
|
139 | local required_paths="'lib'" |
|
|
140 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
|
|
141 | required_paths="${required_paths}, '${path}'" |
|
|
142 | done |
|
|
143 | |
| 133 | # We use the _ruby_implementation variable to avoid having stray |
144 | # We use the _ruby_implementation variable to avoid having stray |
| 134 | # copies with different implementations; while for now we're using |
145 | # copies with different implementations; while for now we're using |
| 135 | # the same exact content, we might have differences in the future, |
146 | # the same exact content, we might have differences in the future, |
| 136 | # so better taking this into consideration. |
147 | # so better taking this into consideration. |
|
|
148 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 137 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
149 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
| 138 | Gem::Specification.new do |s| |
150 | Gem::Specification.new do |s| |
| 139 | s.name = "${RUBY_FAKEGEM_NAME}" |
151 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 140 | s.version = "${RUBY_FAKEGEM_VERSION}" |
152 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 141 | s.summary = "${DESCRIPTION}" |
153 | s.summary = "${quoted_description}" |
| 142 | s.homepage = "${HOMEPAGE}" |
154 | s.homepage = "${HOMEPAGE}" |
| 143 | s.require_paths = ["lib"] |
155 | s.require_paths = [${required_paths}] |
| 144 | end |
156 | end |
| 145 | EOF |
157 | EOF |
| 146 | |
158 | |
| 147 | insinto $(ruby_fakegem_gemsdir)/specifications |
159 | insinto $(ruby_fakegem_gemsdir)/specifications |
| 148 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
160 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
| … | |
… | |
| 157 | ruby_fakegem_binwrapper() { |
169 | ruby_fakegem_binwrapper() { |
| 158 | ( |
170 | ( |
| 159 | local gembinary=$1 |
171 | local gembinary=$1 |
| 160 | local newbinary=${2:-/usr/bin/$gembinary} |
172 | local newbinary=${2:-/usr/bin/$gembinary} |
| 161 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
173 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
|
|
174 | local binpath=$(dirname $newbinary) |
|
|
175 | [[ ${binpath} = . ]] && binpath=/usr/bin |
| 162 | |
176 | |
| 163 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
177 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 164 | #!/usr/bin/env ruby |
178 | #!/usr/bin/env ruby |
| 165 | # This is a simplified version of the RubyGems wrapper |
179 | # This is a simplified version of the RubyGems wrapper |
| 166 | # |
180 | # |
| … | |
… | |
| 170 | |
184 | |
| 171 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
185 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 172 | |
186 | |
| 173 | EOF |
187 | EOF |
| 174 | |
188 | |
| 175 | exeinto $(dirname $newbinary) |
189 | exeinto ${binpath:-/usr/bin} |
| 176 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
190 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| 177 | ) || die "Unable to create fakegem wrapper" |
191 | ) || die "Unable to create fakegem wrapper" |
| 178 | } |
192 | } |
| 179 | |
193 | |
| 180 | # @FUNCTION: all_fakegem_compile |
194 | # @FUNCTION: all_fakegem_compile |
| … | |
… | |
| 202 | ebegin "Unpacking .gem file..." |
216 | ebegin "Unpacking .gem file..." |
| 203 | tar -mxf ${DISTDIR}/${A} || die |
217 | tar -mxf ${DISTDIR}/${A} || die |
| 204 | eend $? |
218 | eend $? |
| 205 | |
219 | |
| 206 | mkdir "${S}" |
220 | mkdir "${S}" |
| 207 | pushd "${S}" |
221 | pushd "${S}" &>/dev/null |
| 208 | |
222 | |
| 209 | ebegin "Unpacking data.tar.gz" |
223 | ebegin "Unpacking data.tar.gz" |
| 210 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
224 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 211 | eend $? |
225 | eend $? |
|
|
226 | popd &>/dev/null |
| 212 | else |
227 | else |
| 213 | [[ -n ${A} ]] && unpack ${A} |
228 | [[ -n ${A} ]] && unpack ${A} |
| 214 | fi |
229 | fi |
| 215 | } |
230 | } |
| 216 | |
231 | |
| … | |
… | |
| 224 | # @FUNCTION: each_fakegem_test |
239 | # @FUNCTION: each_fakegem_test |
| 225 | # @DESCRIPTION: |
240 | # @DESCRIPTION: |
| 226 | # Run tests for the package for each ruby target if the test task is defined. |
241 | # Run tests for the package for each ruby target if the test task is defined. |
| 227 | each_fakegem_test() { |
242 | each_fakegem_test() { |
| 228 | local rubyflags= |
243 | local rubyflags= |
| 229 | |
|
|
| 230 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
|
|
| 231 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
244 | ${RUBY} ${rubyflags} -S rake ${RUBY_FAKEGEM_TASK_TEST} || die "tests failed" |
| 232 | else |
|
|
| 233 | echo "No test task defined, skipping tests." |
|
|
| 234 | fi |
|
|
| 235 | } |
245 | } |
| 236 | |
246 | |
|
|
247 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 237 | # @FUNCTION: each_ruby_test |
248 | # @FUNCTION: each_ruby_test |
| 238 | # @DESCRIPTION: |
249 | # @DESCRIPTION: |
| 239 | # Run the tests for this package. |
250 | # Run the tests for this package. |
| 240 | each_ruby_test() { |
251 | each_ruby_test() { |
| 241 | each_fakegem_test |
252 | each_fakegem_test |
| 242 | } |
253 | } |
|
|
254 | fi |
| 243 | |
255 | |
| 244 | # @FUNCTION: each_fakegem_install |
256 | # @FUNCTION: each_fakegem_install |
| 245 | # @DESCRIPTION: |
257 | # @DESCRIPTION: |
| 246 | # Install the package for each ruby target. |
258 | # Install the package for each ruby target. |
| 247 | each_fakegem_install() { |
259 | each_fakegem_install() { |
| 248 | ruby_fakegem_genspec |
260 | ruby_fakegem_genspec |
| 249 | |
261 | |
| 250 | local _gemlibdirs= |
262 | local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" |
| 251 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
263 | for directory in bin lib; do |
| 252 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
264 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 253 | done |
265 | done |
| 254 | |
266 | |
|
|
267 | [[ -n ${_gemlibdirs} ]] && \ |
| 255 | ruby_fakegem_doins -r ${_gemlibdirs} |
268 | ruby_fakegem_doins -r ${_gemlibdirs} |
| 256 | } |
269 | } |
| 257 | |
270 | |
| 258 | # @FUNCTION: each_ruby_install |
271 | # @FUNCTION: each_ruby_install |
| 259 | # @DESCRIPTION: |
272 | # @DESCRIPTION: |
| 260 | # Install the package for each target. |
273 | # Install the package for each target. |
| … | |
… | |
| 264 | |
277 | |
| 265 | # @FUNCTION: all_fakegem_install |
278 | # @FUNCTION: all_fakegem_install |
| 266 | # @DESCRIPTION: |
279 | # @DESCRIPTION: |
| 267 | # Install files common to all ruby targets. |
280 | # Install files common to all ruby targets. |
| 268 | all_fakegem_install() { |
281 | all_fakegem_install() { |
| 269 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
282 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
| 270 | pushd ${RUBY_FAKEGEM_DOCDIR} |
283 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
284 | pushd ${dir} &>/dev/null |
| 271 | dohtml -r * || die "failed to install documentation" |
285 | dohtml -r * || die "failed to install documentation" |
| 272 | popd |
286 | popd &>/dev/null |
|
|
287 | done |
| 273 | fi |
288 | fi |
| 274 | |
289 | |
| 275 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
290 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 276 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
291 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
| 277 | fi |
292 | fi |
| … | |
… | |
| 280 | # same binaries, or something is wrong anyway, so... |
295 | # same binaries, or something is wrong anyway, so... |
| 281 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
296 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
| 282 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
297 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
| 283 | |
298 | |
| 284 | if [[ -d "${bindir}" ]]; then |
299 | if [[ -d "${bindir}" ]]; then |
| 285 | pushd "${bindir}" |
300 | pushd "${bindir}" &>/dev/null |
| 286 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
301 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
| 287 | for binary in $binaries; do |
302 | for binary in $binaries; do |
| 288 | ruby_fakegem_binwrapper $binary |
303 | ruby_fakegem_binwrapper $binary |
| 289 | done |
304 | done |
| 290 | popd |
305 | popd &>/dev/null |
| 291 | fi |
306 | fi |
| 292 | fi |
307 | fi |
| 293 | } |
308 | } |
| 294 | |
309 | |
| 295 | # @FUNCTION: all_ruby_install |
310 | # @FUNCTION: all_ruby_install |