Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: ChangeLog rake-compiler-0.7.5.ebuild
Date: Sun, 02 Jan 2011 16:17:18
Message-Id: 20110102161709.4868320054@flycatcher.gentoo.org
1 graaff 11/01/02 16:17:09
2
3 Modified: ChangeLog
4 Added: rake-compiler-0.7.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.26 dev-ruby/rake-compiler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 28 Dec 2010 08:33:36 -0000 1.25
24 +++ ChangeLog 2 Jan 2011 16:17:09 -0000 1.26
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/rake-compiler
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.25 2010/12/28 08:33:36 grobian Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.26 2011/01/02 16:17:09 graaff Exp $
31 +
32 +*rake-compiler-0.7.5 (02 Jan 2011)
33 +
34 + 02 Jan 2011; Hans de Graaff <graaff@g.o>
35 + +rake-compiler-0.7.5.ebuild:
36 + Version bump.
37
38 28 Dec 2010; Fabian Groffen <grobian@g.o>
39 rake-compiler-0.7.1.ebuild:
40
41
42
43 1.1 dev-ruby/rake-compiler/rake-compiler-0.7.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.7.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.7.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: rake-compiler-0.7.5.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.7.5.ebuild,v 1.1 2011/01/02 16:17:09 graaff Exp $
53
54 EAPI=2
55 USE_RUBY="ruby18 ree18 ruby19 jruby"
56
57 # Tests for now seem only to work when rubygems is fully installed for
58 # the implementation and that for now only means Ruby 1.8
59 RUBY_FAKEGEM_TASK_TEST="-f tasks/rspec.rake -f tasks/cucumber.rake spec cucumber"
60
61 RUBY_FAKEGEM_TASK_DOC=""
62 RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
63
64 inherit ruby-fakegem eutils
65
66 DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions"
67 HOMEPAGE="http://github.com/luislavena/rake-compiler"
68 LICENSE="as-is" # truly
69
70 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
71 S="${WORKDIR}/luislavena-${PN}-*"
72
73 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
74 SLOT="0"
75 IUSE=""
76
77 USE_RUBY=ruby18 \
78 ruby_add_bdepend "test? ( dev-ruby/rspec:0 dev-util/cucumber dev-ruby/rubygems )"
79
80 ruby_add_rdepend "dev-ruby/rake"
81
82 each_ruby_prepare() {
83 case ${RUBY} in
84 *ruby19|*jruby)
85 # Remove this task so that it won't load on Ruby 1.9 and JRuby
86 # that lack the package_task file. It is, though, needed for the
87 # tests
88 rm tasks/gem.rake || die
89 ;;
90 *)
91 ;;
92 esac
93 }
94
95 each_ruby_test() {
96 case ${RUBY} in
97 *ruby19|*jruby)
98 ewarn "Tests disabled for this implementation. Long story, check ebuild if you want."
99 ;;
100 *)
101 each_fakegem_test
102 ;;
103 esac
104 }