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-1.1.0.ebuild ChangeLog
Date: Wed, 25 Dec 2013 06:48:15
Message-Id: 20131225064812.A4A6E2004C@flycatcher.gentoo.org
1 graaff 13/12/25 06:48:12
2
3 Modified: ChangeLog
4 Added: async_sinatra-1.1.0.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.8 dev-ruby/async_sinatra/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 11 Aug 2013 07:17:12 -0000 1.7
24 +++ ChangeLog 25 Dec 2013 06:48:12 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/async_sinatra
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v 1.7 2013/08/11 07:17:12 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/ChangeLog,v 1.8 2013/12/25 06:48:12 graaff Exp $
30 +
31 +*async_sinatra-1.1.0 (25 Dec 2013)
32 +
33 + 25 Dec 2013; Hans de Graaff <graaff@g.o> +async_sinatra-1.1.0.ebuild:
34 + Version bump.
35
36 11 Aug 2013; Hans de Graaff <graaff@g.o> -async_sinatra-0.4.0.ebuild:
37 Cleanup.
38
39
40
41 1.1 dev-ruby/async_sinatra/async_sinatra-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: async_sinatra-1.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/async_sinatra/async_sinatra-1.1.0.ebuild,v 1.1 2013/12/25 06:48:12 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 RUBY_FAKEGEM_DOCDIR="doc"
56 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"
57 RUBY_FAKEGEM_TASK_DOC="docs"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Asynchronous response API for Sinatra and Thin"
62 HOMEPAGE="http://libraggi.rubyforge.org/async_sinatra"
63 SRC_URI="https://github.com/raggi/async_sinatra/archive/v${PV}.tar.gz -> ${P}-git.tgz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="test"
69
70 ruby_add_bdepend "test? (
71 >=dev-ruby/hoe-2.9.1
72 >=dev-ruby/minitest-2.5.1
73 >=dev-ruby/rubyforge-2.0.4
74 >=dev-ruby/eventmachine-0.12.11
75 )"
76 ruby_add_bdepend "doc? ( >=dev-ruby/hoe-2.9.1 )"
77
78 ruby_add_rdepend ">=dev-ruby/sinatra-1.3.2
79 >=dev-ruby/rack-1.4.1"
80
81 all_ruby_prepare() {
82 # Remove development dependencies that we don't have from the gemspec
83 sed -i -e '/\(hoe\|rdoc\|rubyforge\)/d' async_sinatra.gemspec || die
84 }
85
86 all_ruby_install() {
87 all_fakegem_install
88
89 insinto /usr/share/doc/${PF}/
90 doins -r examples || die "Failed to install examples"
91 }