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/rubigen: ChangeLog rubigen-1.5.4.ebuild
Date: Fri, 26 Feb 2010 07:02:20
Message-Id: E1NkuDJ-0007BP-JV@stork.gentoo.org
1 graaff 10/02/26 07:02:17
2
3 Modified: ChangeLog
4 Added: rubigen-1.5.4.ebuild
5 Log:
6 Version bump. Convert to ruby-fakegem. Dropped ppc64 keyword.
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-ruby/rubigen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rubigen/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rubigen/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rubigen/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 6 Jan 2010 21:03:34 -0000 1.3
23 +++ ChangeLog 26 Feb 2010 07:02:16 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/rubigen
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/ChangeLog,v 1.3 2010/01/06 21:03:34 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/ChangeLog,v 1.4 2010/02/26 07:02:16 graaff Exp $
29 +
30 +*rubigen-1.5.4 (26 Feb 2010)
31 +
32 + 26 Feb 2010; Hans de Graaff <graaff@g.o> +rubigen-1.5.4.ebuild:
33 + Version bump. Convert to ruby-fakegem. Drop ppc64 keyword due to new
34 + dev-ruby/shoulda dependency: bug 306909.
35
36 06 Jan 2010; Brent Baude <ranger@g.o> rubigen-1.5.2.ebuild:
37 Marking rubigen-1.5.2 ~ppc64 for bug 276701
38
39
40
41 1.1 dev-ruby/rubigen/rubigen-1.5.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rubigen-1.5.4.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.4.ebuild,v 1.1 2010/02/26 07:02:16 graaff Exp $
51
52 EAPI="2"
53 USE_RUBY="ruby18"
54
55 RUBY_FAKEGEM_TASK_DOC="docs"
56 RUBY_FAKEGEM_DOCDIR="doc"
57 RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc Todo.txt"
58
59 RUBY_FAKEGEM_EXTRAINSTALL="app_generators generators rubygems_generators script test_unit_generators"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="A framework to allow Ruby applications to generate file/folder stubs."
64 HOMEPAGE="http://drnic.github.com/rubigen"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 ruby_add_bdepend test ">=dev-ruby/mocha-0.9.8
72 >=dev-ruby/shoulda-2.10.3
73 >=dev-ruby/hoe-2.4.0
74 virtual/ruby-test-unit"
75
76 ruby_add_rdepend ">=dev-ruby/activesupport-2.3.5"
77
78 all_ruby_prepare() {
79 # Remove newgem requirement from the Rakefile since it is not
80 # needed for our purposes and we don't have it in CVS.
81 sed -i '/newgem/d' Rakefile || die "Unable to remove unneeded newgem support."
82
83 rm -f test/test_generate_builtin_application.rb || die "Unable to remove broken test."
84 }
85
86 each_ruby_test() {
87 each_fakegem_test
88
89 # Run all features not related to creating and distributing the gem itself
90 ${RUBY} -S cucumber features/help.feature features/rubigen_cli.feature
91 }