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/acts_as_list: ChangeLog acts_as_list-0.4.0.ebuild
Date: Mon, 24 Feb 2014 06:48:28
Message-Id: 20140224064822.741952004C@flycatcher.gentoo.org
1 graaff 14/02/24 06:48:22
2
3 Modified: ChangeLog
4 Added: acts_as_list-0.4.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.5 dev-ruby/acts_as_list/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/acts_as_list/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/acts_as_list/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/acts_as_list/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/acts_as_list/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 24 Dec 2013 15:47:07 -0000 1.4
24 +++ ChangeLog 24 Feb 2014 06:48:22 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/acts_as_list
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/acts_as_list/ChangeLog,v 1.4 2013/12/24 15:47:07 graaff Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/acts_as_list/ChangeLog,v 1.5 2014/02/24 06:48:22 graaff Exp $
31 +
32 +*acts_as_list-0.4.0 (24 Feb 2014)
33 +
34 + 24 Feb 2014; Hans de Graaff <graaff@g.o> +acts_as_list-0.4.0.ebuild:
35 + Version bump.
36
37 24 Dec 2013; Hans de Graaff <graaff@g.o> -acts_as_list-0.1.9.ebuild,
38 -acts_as_list-0.2.0.ebuild:
39
40
41
42 1.1 dev-ruby/acts_as_list/acts_as_list-0.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/acts_as_list/acts_as_list-0.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/acts_as_list/acts_as_list-0.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: acts_as_list-0.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/acts_as_list/acts_as_list-0.4.0.ebuild,v 1.1 2014/02/24 06:48:22 graaff Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19"
55
56 RUBY_FAKEGEM_RECIPE_TEST="none"
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58
59 inherit ruby-fakegem
60
61 RUBY_FAKEGEM_EXTRADOC="README.md"
62 RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
63
64 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
65
66 DESCRIPTION="Capabilities for sorting and reordering a number of objects in a list."
67 HOMEPAGE="http://rake.rubyforge.org/"
68
69 LICENSE="MIT"
70 SLOT="3"
71 KEYWORDS="~amd64 ~x86 ~x86-macos"
72 IUSE=""
73
74 ruby_add_rdepend ">=dev-ruby/activerecord-3"
75
76 ruby_add_bdepend "
77 test? (
78 dev-ruby/test-unit:2
79 dev-ruby/activerecord[sqlite3]
80 )"
81
82 all_ruby_prepare() {
83 rm Gemfile || die
84 sed -i -e '/[Bb]undler/d' Rakefile || die
85 sed -i -e '1,9 s:^:#:' test/helper.rb || die
86 sed -i -e '/git ls/d' ${RUBY_FAKEGEM_GEMSPEC} || die
87 }
88
89 each_ruby_test() {
90 ruby-ng_testrb-2 -Ilib test/test_*.rb
91 }