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/amq-client: ChangeLog amq-client-1.0.4.ebuild
Date: Sat, 07 Dec 2013 07:14:55
Message-Id: 20131207071447.6006F2004B@flycatcher.gentoo.org
1 graaff 13/12/07 07:14:47
2
3 Modified: ChangeLog
4 Added: amq-client-1.0.4.ebuild
5 Log:
6 Version bump. Add ruby20.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.9 dev-ruby/amq-client/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amq-client/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amq-client/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amq-client/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amq-client/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 23 May 2013 04:49:53 -0000 1.8
24 +++ ChangeLog 7 Dec 2013 07:14:47 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/amq-client
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amq-client/ChangeLog,v 1.8 2013/05/23 04:49:53 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amq-client/ChangeLog,v 1.9 2013/12/07 07:14:47 graaff Exp $
30 +
31 +*amq-client-1.0.4 (07 Dec 2013)
32 +
33 + 07 Dec 2013; Hans de Graaff <graaff@g.o> +amq-client-1.0.4.ebuild:
34 + Version bump. Add ruby20.
35
36 *amq-client-1.0.2 (23 May 2013)
37
38
39
40
41 1.1 dev-ruby/amq-client/amq-client-1.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amq-client/amq-client-1.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amq-client/amq-client-1.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: amq-client-1.0.4.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/amq-client/amq-client-1.0.4.ebuild,v 1.1 2013/12/07 07:14:47 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_EXTRADOC="README.textile"
57
58 RUBY_FAKEGEM_RECIPE_TEST="rspec"
59
60 RUBY_FAKEGEM_BINWRAP=""
61
62 inherit versionator ruby-fakegem
63
64 DESCRIPTION="A fully-featured, low-level AMQP 0.9.1 client."
65 HOMEPAGE="http://github.com/ruby-amqp/amq-client"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="test"
71
72 ruby_add_rdepend ">=dev-ruby/amq-protocol-1.2.0 dev-ruby/eventmachine"
73
74 ruby_add_bdepend "test? ( dev-ruby/evented-spec )"
75
76 all_ruby_prepare() {
77 rm Gemfile || die
78 sed -i -e '/[Bb]undler/ s:^:#:' -e '/effin_utf8/ s:^:#:' spec/spec_helper.rb || die
79 sed -i -e '7i require "evented-spec"' spec/spec_helper.rb || die
80
81 # Drop integration tests since these require a running AMQP server.
82 rm -rf spec/integration spec/regression/bad_frame_slicing_in_adapters_spec.rb spec/unit/client_spec.rb || die
83 }