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/oauth2: ChangeLog oauth2-0.9.4.ebuild
Date: Sat, 24 May 2014 05:44:37
Message-Id: 20140524054434.BBAAA2004E@flycatcher.gentoo.org
1 graaff 14/05/24 05:44:34
2
3 Modified: ChangeLog
4 Added: oauth2-0.9.4.ebuild
5 Log:
6 Version bump. Add ruby20.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.20 dev-ruby/oauth2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/oauth2/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/oauth2/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/oauth2/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 22 Jan 2014 06:59:40 -0000 1.19
24 +++ ChangeLog 24 May 2014 05:44:34 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/oauth2
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/ChangeLog,v 1.19 2014/01/22 06:59:40 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/ChangeLog,v 1.20 2014/05/24 05:44:34 graaff Exp $
30 +
31 +*oauth2-0.9.4 (24 May 2014)
32 +
33 + 24 May 2014; Hans de Graaff <graaff@g.o> +oauth2-0.9.4.ebuild:
34 + Version bump. Add ruby20.
35
36 *oauth2-0.9.3 (22 Jan 2014)
37
38
39
40
41 1.1 dev-ruby/oauth2/oauth2-0.9.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/oauth2/oauth2-0.9.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/oauth2/oauth2-0.9.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: oauth2-0.9.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/oauth2-0.9.4.ebuild,v 1.1 2014/05/24 05:44:34 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20"
55
56 RUBY_FAKEGEM_TASK_TEST="none"
57 RUBY_FAKEGEM_TASK_DOC="doc:rdoc"
58
59 RUBY_FAKEGEM_DOCDIR="rdoc"
60 RUBY_FAKEGEM_EXTRADOC="README.md"
61
62 inherit ruby-fakegem eutils
63
64 DESCRIPTION="Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth gem."
65 HOMEPAGE="http://github.com/intridea/oauth2"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 ruby_add_rdepend ">=dev-ruby/faraday-0.8
73 >=dev-ruby/jwt-0.1.8
74 >=dev-ruby/multi_json-1.0.3
75 >=dev-ruby/multi_xml-0.5
76 >=dev-ruby/rack-1.2"
77 ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.5.0:2 )"
78
79 all_ruby_prepare() {
80 sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die
81
82 sed -i -e '/yardstick/,/^end/ s:^:#:' Rakefile || die
83 }
84
85 each_ruby_test() {
86 CI=true ${RUBY} -S rspec spec || die
87 }