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