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/async_sinatra: metadata.xml ChangeLog async_sinatra-0.1.5.ebuild
Date: Mon, 19 Apr 2010 18:09:25
Message-Id: 20100419180922.A8A512C04B@corvid.gentoo.org
1 flameeyes 10/04/19 18:09:22
2
3 Added: metadata.xml ChangeLog async_sinatra-0.1.5.ebuild
4 Log:
5 Initial import of async_sinatra gem.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/async_sinatra/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/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/async_sinatra/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/async_sinatra
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v 1.1 2010/04/19 18:09:22 flameeyes Exp $
34
35 *async_sinatra-0.1.5 (19 Apr 2010)
36
37 19 Apr 2010; Diego E. Pettenò <flameeyes@g.o>
38 +async_sinatra-0.1.5.ebuild, +metadata.xml:
39 Initial import of async_sinatra gem.
40
41
42
43
44 1.1 dev-ruby/async_sinatra/async_sinatra-0.1.5.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-0.1.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-0.1.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: async_sinatra-0.1.5.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/async_sinatra/async_sinatra-0.1.5.ebuild,v 1.1 2010/04/19 18:09:22 flameeyes Exp $
54
55 EAPI="2"
56 USE_RUBY="ruby18"
57
58 RUBY_FAKEGEM_DOCDIR="html"
59 RUBY_FAKEGEM_EXTRADOC="README.rdoc"
60
61 # there are no tests
62 RUBY_FAKEGEM_TASK_TEST=""
63
64 # the documentation-building requires the gemspec file that is not
65 # packaged, this is very unfortunate for us, but the doc does not
66 # really tell us much so we're not going out of our way to get this
67 # from GIT.
68 RUBY_FAKEGEM_TASK_DOC=""
69
70 inherit ruby-fakegem
71
72 DESCRIPTION="Asynchronous response API for Sinatra and Thin"
73 HOMEPAGE="http://rubyeventmachine.com"
74
75 LICENSE="MIT"
76 SLOT="0"
77 KEYWORDS="~amd64"
78 IUSE=""
79
80 ruby_add_rdepend '>=dev-ruby/sinatra-0.9.1
81 >=www-servers/thin-1.2.0'
82
83 all_ruby_install() {
84 all_fakegem_install
85
86 insinto /usr/share/doc/${PF}/
87 doins -r examples || die "Failed to install examples"
88 }