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/cocaine: cocaine-0.5.4.ebuild ChangeLog
Date: Mon, 31 Mar 2014 01:17:21
Message-Id: 20140331011713.2362420057@flycatcher.gentoo.org
1 mrueg 14/03/31 01:17:13
2
3 Modified: ChangeLog
4 Added: cocaine-0.5.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.11 dev-ruby/cocaine/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cocaine/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cocaine/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cocaine/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 28 Dec 2013 07:34:28 -0000 1.10
24 +++ ChangeLog 31 Mar 2014 01:17:12 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/cocaine
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/ChangeLog,v 1.10 2013/12/28 07:34:28 graaff Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/ChangeLog,v 1.11 2014/03/31 01:17:12 mrueg Exp $
31 +
32 +*cocaine-0.5.4 (31 Mar 2014)
33 +
34 + 31 Mar 2014; Manuel RĂ¼ger <mrueg@g.o> +cocaine-0.5.4.ebuild:
35 + Version bump.
36
37 28 Dec 2013; Hans de Graaff <graaff@g.o> cocaine-0.5.3.ebuild:
38 Add missing test dependency on activesupport, fixing bug 454930.
39
40
41
42 1.1 dev-ruby/cocaine/cocaine-0.5.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cocaine/cocaine-0.5.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cocaine/cocaine-0.5.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cocaine-0.5.4.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/cocaine/cocaine-0.5.4.ebuild,v 1.1 2014/03/31 01:17:12 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_EXTRADOC="README.md"
58
59 RUBY_FAKEGEM_RECIPE_TEST="rspec"
60
61 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="A small library for doing command lines"
66 HOMEPAGE="http://www.thoughtbot.com/projects/cocaine"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64"
71 IUSE=""
72
73 ruby_add_rdepend "dev-ruby/climate_control:0"
74
75 ruby_add_bdepend "
76 test? (
77 >=dev-ruby/activesupport-3 <dev-ruby/activesupport-5
78 dev-ruby/bourne
79 dev-ruby/mocha
80 )"
81
82 all_ruby_prepare() {
83 sed -i \
84 -e '/git ls-files/d' \
85 "${RUBY_FAKEGEM_GEMSPEC}" || die
86
87 rm Gemfile* || die
88
89 sed -i -e '/bundler/d' Rakefile || die
90
91 sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die
92 }