Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/oauth2: metadata.xml ChangeLog oauth2-0.0.8.ebuild
Date: Fri, 30 Apr 2010 18:18:20
Message-Id: 20100430181816.E2A1F2C04C@corvid.gentoo.org
1 flameeyes 10/04/30 18:18:16
2
3 Added: metadata.xml ChangeLog oauth2-0.0.8.ebuild
4 Log:
5 Initial impor of the OAuth2 gem, to use the new Facebook authentication APIs.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/oauth2/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>ruby</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-ruby/oauth2/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/oauth2
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/ChangeLog,v 1.1 2010/04/30 18:18:16 flameeyes Exp $
34
35 *oauth2-0.0.8 (30 Apr 2010)
36
37 30 Apr 2010; Diego E. Pettenò <flameeyes@g.o>
38 +oauth2-0.0.8.ebuild, +metadata.xml:
39 Initial impor of the OAuth2 gem, to use the new Facebook authentication
40 APIs.
41
42
43
44
45 1.1 dev-ruby/oauth2/oauth2-0.0.8.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/oauth2-0.0.8.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/oauth2/oauth2-0.0.8.ebuild?rev=1.1&content-type=text/plain
49
50 Index: oauth2-0.0.8.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/oauth2/oauth2-0.0.8.ebuild,v 1.1 2010/04/30 18:18:16 flameeyes Exp $
55
56 EAPI="2"
57
58 USE_RUBY="ruby18 jruby"
59
60 RUBY_FAKEGEM_TASK_TEST="spec"
61 RUBY_FAKEGEM_TASK_DOC="rerdoc"
62
63 RUBY_FAKEGEM_DOCDIR="rdoc"
64 RUBY_FAKEGEM_EXTRADOC="README.rdoc CHANGELOG.rdoc"
65
66 inherit ruby-fakegem eutils
67
68 DESCRIPTION="Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth gem."
69 HOMEPAGE="http://github.com/intridea/oauth2"
70
71 LICENSE="MIT"
72 SLOT="0"
73 KEYWORDS="~amd64"
74 IUSE=""
75
76 ruby_add_rdepend "dev-ruby/faraday"
77 ruby_add_bdepend test ">=dev-ruby/rspec-1.2.9"
78
79 all_ruby_prepare() {
80 sed -i -e '/check_dependencies/d' Rakefile || die
81 }