Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.4.ebuild ChangeLog rake-compiler-0.9.2-r1.ebuild
Date: Sun, 28 Dec 2014 11:40:09
Message-Id: 20141228114005.3984FE58A@oystercatcher.gentoo.org
1 mrueg 14/12/28 11:40:05
2
3 Modified: ChangeLog
4 Added: rake-compiler-0.9.4.ebuild
5 Removed: rake-compiler-0.9.2-r1.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.89 dev-ruby/rake-compiler/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.89&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.89&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.88&r2=1.89
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
21 retrieving revision 1.88
22 retrieving revision 1.89
23 diff -u -r1.88 -r1.89
24 --- ChangeLog 18 Nov 2014 11:53:26 -0000 1.88
25 +++ ChangeLog 28 Dec 2014 11:40:05 -0000 1.89
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ruby/rake-compiler
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.88 2014/11/18 11:53:26 mrueg Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.89 2014/12/28 11:40:05 mrueg Exp $
31 +
32 +*rake-compiler-0.9.4 (28 Dec 2014)
33 +
34 + 28 Dec 2014; Manuel Rüger <mrueg@g.o> +rake-compiler-0.9.4.ebuild,
35 + -rake-compiler-0.9.2-r1.ebuild:
36 + Version bump.
37
38 18 Nov 2014; Manuel Rüger <mrueg@g.o> -rake-compiler-0.8.1.ebuild:
39 Cleanup old.
40
41
42
43 1.1 dev-ruby/rake-compiler/rake-compiler-0.9.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: rake-compiler-0.9.4.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.9.4.ebuild,v 1.1 2014/12/28 11:40:05 mrueg Exp $
53
54 EAPI=5
55 USE_RUBY="ruby19 ruby20 ruby21 jruby"
56
57 RUBY_FAKEGEM_RECIPE_TEST="none"
58
59 RUBY_FAKEGEM_TASK_DOC=""
60 RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
61
62 inherit ruby-fakegem eutils
63
64 DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions"
65 HOMEPAGE="http://github.com/luislavena/rake-compiler"
66 LICENSE="MIT"
67
68 SRC_URI="http://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
69
70 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
71 SLOT="0"
72 IUSE=""
73
74 ruby_add_rdepend "dev-ruby/rake"
75
76 ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
77
78 USE_RUBY="ruby19 ruby20" ruby_add_bdepend "test? ( dev-util/cucumber )"
79
80 each_ruby_prepare() {
81 case ${RUBY} in
82 *ruby19|*jruby)
83 # Remove this task so that it won't load on Ruby 1.9 and JRuby
84 # that lack the package_task file. It is, though, needed for the
85 # tests
86 rm tasks/gem.rake || die
87 # Remove specs aimed at a C-compiling ruby implementation.
88 rm spec/lib/rake/extensiontask_spec.rb || die
89 ;;
90 *)
91 ;;
92 esac
93 }
94
95 each_ruby_test() {
96 # Skip cucumber for jruby (not supported) and ruby20 (not ready yet)
97 case ${RUBY} in
98 *ruby19|*ruby20)
99 ruby-ng_rspec
100 ruby-ng_cucumber
101 ;;
102 *)
103 ruby-ng_rspec
104 ;;
105 esac
106 }