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/activeresource: ChangeLog activeresource-4.0.0.ebuild
Date: Tue, 24 Dec 2013 15:45:14
Message-Id: 20131224154511.340D42004C@flycatcher.gentoo.org
1 graaff 13/12/24 15:45:11
2
3 Modified: ChangeLog
4 Added: activeresource-4.0.0.ebuild
5 Log:
6 Add version compatible with and removed from Rails 4.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.166 dev-ruby/activeresource/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activeresource/ChangeLog?rev=1.166&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activeresource/ChangeLog?rev=1.166&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activeresource/ChangeLog?r1=1.165&r2=1.166
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v
20 retrieving revision 1.165
21 retrieving revision 1.166
22 diff -u -r1.165 -r1.166
23 --- ChangeLog 16 Dec 2013 20:10:55 -0000 1.165
24 +++ ChangeLog 24 Dec 2013 15:45:11 -0000 1.166
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/activeresource
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.165 2013/12/16 20:10:55 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.166 2013/12/24 15:45:11 graaff Exp $
30 +
31 +*activeresource-4.0.0 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Hans de Graaff <graaff@g.o> +activeresource-4.0.0.ebuild:
34 + Add version compatible with and removed from Rails 4.
35
36 16 Dec 2013; Hans de Graaff <graaff@g.o>
37 -activeresource-3.2.15.ebuild:
38
39
40
41 1.1 dev-ruby/activeresource/activeresource-4.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activeresource/activeresource-4.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activeresource/activeresource-4.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: activeresource-4.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-4.0.0.ebuild,v 1.1 2013/12/24 15:45:11 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
59
60 RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec"
61
62 inherit ruby-fakegem versionator
63
64 DESCRIPTION="Think Active Record for web resources.."
65 HOMEPAGE="http://rubyforge.org/projects/activeresource/"
66 SRC_URI="http://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
67
68 LICENSE="MIT"
69 SLOT="$(get_version_component_range 1-2)"
70 KEYWORDS="~amd64"
71 IUSE=""
72
73 #RUBY_S="rails-${PV}/${PN}"
74
75 ruby_add_rdepend "=dev-ruby/activesupport-4*
76 =dev-ruby/activemodel-4*
77 >=dev-ruby/rails-observers-0.1.1:0.1"
78
79 ruby_add_bdepend "
80 test? (
81 dev-ruby/test-unit:2
82 >=dev-ruby/mocha-0.13.0:0.13
83 )"
84
85 all_ruby_prepare() {
86 # Set test environment to our hand.
87 rm Gemfile || die "Unable to remove Gemfile"
88
89 # Pull in the correct version of minitest since we don't use bundler.
90 sed -i -e '1igem "minitest", "~>4.0"' test/abstract_unit.rb || die
91
92 }