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/right_aws: metadata.xml ChangeLog right_aws-1.10.0.ebuild
Date: Thu, 28 Jan 2010 00:26:59
Message-Id: E1NaIDo-0007Xz-Ky@stork.gentoo.org
1 flameeyes 10/01/28 00:26:56
2
3 Added: metadata.xml ChangeLog right_aws-1.10.0.ebuild
4 Log:
5 Initial import of RightScale AWS library.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/right_aws/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/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/right_aws/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/right_aws
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/right_aws/ChangeLog,v 1.1 2010/01/28 00:26:55 flameeyes Exp $
34
35 *right_aws-1.10.0 (28 Jan 2010)
36
37 28 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
38 +right_aws-1.10.0.ebuild, +metadata.xml:
39 Initial import of RightScale AWS library.
40
41
42
43
44 1.1 dev-ruby/right_aws/right_aws-1.10.0.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/right_aws-1.10.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/right_aws/right_aws-1.10.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: right_aws-1.10.0.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/right_aws/right_aws-1.10.0.ebuild,v 1.1 2010/01/28 00:26:55 flameeyes Exp $
54
55 EAPI=2
56 USE_RUBY="ruby18 ruby19 jruby"
57
58 RUBY_FAKEGEM_TASK_DOC="docs"
59 RUBY_FAKEGEM_DOCDIR="doc"
60 RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="A robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront."
65 HOMEPAGE="http://www.rightscale.com/"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64"
70 IUSE=""
71
72 # Tests require you to set up Amazon AWS access so we have no way to
73 # handle this from within the ebuild :(
74 RESTRICT="test"
75
76 # uuidtools is just needed for sdb, but still better to add it to the
77 # dependencies.
78 # libxml is also optionally supported.
79 ruby_add_rdepend '>=dev-ruby/right_http_connection-1.2.4 dev-ruby/uuidtools'
80
81 all_ruby_prepare() {
82 # by default the Rakefile will require rcovtask from rcov to allow
83 # coverage testing; since we don't care about that we'll just be
84 # ignoring it for now.
85 sed -i \
86 -e '/rcovtask/s:^:#:' \
87 Rakefile || die
88 }