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/async_sinatra: async_sinatra-0.3.0.ebuild ChangeLog
Date: Sun, 02 Jan 2011 08:36:27
Message-Id: 20110102083617.80E0020054@flycatcher.gentoo.org
1 graaff 11/01/02 08:36:17
2
3 Modified: ChangeLog
4 Added: async_sinatra-0.3.0.ebuild
5 Log:
6 Version bump. Run new test suite.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-ruby/async_sinatra/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 19 Apr 2010 18:10:10 -0000 1.2
24 +++ ChangeLog 2 Jan 2011 08:36:17 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/async_sinatra
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v 1.2 2010/04/19 18:10:10 flameeyes Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v 1.3 2011/01/02 08:36:17 graaff Exp $
31 +
32 +*async_sinatra-0.3.0 (02 Jan 2011)
33 +
34 + 02 Jan 2011; Hans de Graaff <graaff@g.o>
35 + +async_sinatra-0.3.0.ebuild:
36 + Version bump. Run new test suite.
37
38 19 Apr 2010; Diego E. Pettenò <flameeyes@g.o>
39 async_sinatra-0.1.5.ebuild:
40
41
42
43 1.1 dev-ruby/async_sinatra/async_sinatra-0.3.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-0.3.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-0.3.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: async_sinatra-0.3.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-0.3.0.ebuild,v 1.1 2011/01/02 08:36:17 graaff Exp $
53
54 EAPI="2"
55 USE_RUBY="ruby18 ree18"
56
57 RUBY_FAKEGEM_DOCDIR="html"
58 RUBY_FAKEGEM_EXTRADOC="README.rdoc"
59
60 RUBY_FAKEGEM_TASK_TEST=""
61
62 # the documentation-building requires the gemspec file that is not
63 # packaged, this is very unfortunate for us, but the doc does not
64 # really tell us much so we're not going out of our way to get this
65 # from GIT. Upstream bug filed.
66 RUBY_FAKEGEM_TASK_DOC=""
67
68 inherit ruby-fakegem
69
70 DESCRIPTION="Asynchronous response API for Sinatra and Thin"
71 HOMEPAGE="http://libraggi.rubyforge.org/async_sinatra"
72
73 LICENSE="MIT"
74 SLOT="0"
75 KEYWORDS="~amd64"
76 IUSE="test"
77
78 ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/eventmachine )"
79
80 ruby_add_rdepend '>=dev-ruby/sinatra-1.0
81 >=www-servers/thin-1.2.0'
82
83 each_ruby_test() {
84 ${RUBY} -Ilib test/test_async.rb || die "Tests failed."
85 }
86
87 all_ruby_install() {
88 all_fakegem_install
89
90 insinto /usr/share/doc/${PF}/
91 doins -r examples || die "Failed to install examples"
92 }