Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/shotgun: shotgun-0.9.1.ebuild ChangeLog
Date: Wed, 04 Mar 2015 15:57:08
Message-Id: 20150304155702.CB44B1307F@oystercatcher.gentoo.org
1 mrueg 15/03/04 15:57:02
2
3 Modified: ChangeLog
4 Added: shotgun-0.9.1.ebuild
5 Log:
6 Version bump. Add ruby22 target.
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.12 dev-ruby/shotgun/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shotgun/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shotgun/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shotgun/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 9 Oct 2014 22:18:49 -0000 1.11
24 +++ ChangeLog 4 Mar 2015 15:57:02 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/shotgun
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/ChangeLog,v 1.11 2014/10/09 22:18:49 mrueg Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/ChangeLog,v 1.12 2015/03/04 15:57:02 mrueg Exp $
31 +
32 +*shotgun-0.9.1 (04 Mar 2015)
33 +
34 + 04 Mar 2015; Manuel Rüger <mrueg@g.o> +shotgun-0.9.1.ebuild:
35 + Version bump. Add ruby22 target.
36
37 09 Oct 2014; Manuel Rüger <mrueg@g.o> shotgun-0.9-r1.ebuild:
38 Add ruby21 support.
39
40
41
42 1.1 dev-ruby/shotgun/shotgun-0.9.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shotgun/shotgun-0.9.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/shotgun/shotgun-0.9.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: shotgun-0.9.1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/shotgun/shotgun-0.9.1.ebuild,v 1.1 2015/03/04 15:57:02 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
55
56 # No documentation task
57 RUBY_FAKEGEM_TASK_DOC=""
58
59 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Forking implementation of rackup"
64 HOMEPAGE="https://github.com/rtomayko/shotgun"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 # Warning: the code does not use gem versioning to make sure to load
72 # only the right rack version so we might need to patch it to work :/
73 ruby_add_rdepend 'dev-ruby/rack'
74 ruby_add_bdepend "test? ( dev-ruby/bacon )"
75
76
77 each_ruby_test() {
78 ${RUBY} -Ilib test/test_shotgun_static.rb || die
79 ${RUBY} -Ilib test/test_shotgun_loader.rb || die
80 }
81
82 all_ruby_install() {
83 all_fakegem_install
84
85 doman man/shotgun.1
86 }