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/amatch: amatch-0.2.11-r1.ebuild ChangeLog
Date: Sat, 02 Nov 2013 20:01:46
Message-Id: 20131102200141.0E4AB2004B@flycatcher.gentoo.org
1 mrueg 13/11/02 20:01:39
2
3 Modified: ChangeLog
4 Added: amatch-0.2.11-r1.ebuild
5 Log:
6 Add ruby20 target.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.37 dev-ruby/amatch/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amatch/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amatch/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amatch/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amatch/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 10 Sep 2013 14:46:41 -0000 1.36
24 +++ ChangeLog 2 Nov 2013 20:01:39 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/amatch
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/ChangeLog,v 1.36 2013/09/10 14:46:41 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/ChangeLog,v 1.37 2013/11/02 20:01:39 mrueg Exp $
30 +
31 +*amatch-0.2.11-r1 (02 Nov 2013)
32 +
33 + 02 Nov 2013; Manuel Rüger <mrueg@g.o> +amatch-0.2.11-r1.ebuild:
34 + Add ruby20 target.
35
36 10 Sep 2013; Manuel Rüger <mrueg@g.o> -amatch-0.2.10.ebuild:
37 Cleanup old.
38
39
40
41 1.1 dev-ruby/amatch/amatch-0.2.11-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amatch/amatch-0.2.11-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/amatch/amatch-0.2.11-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: amatch-0.2.11-r1.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/amatch/amatch-0.2.11-r1.ebuild,v 1.1 2013/11/02 20:01:38 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc"
57
58 inherit multilib ruby-fakegem
59
60 DESCRIPTION="Approximate Matching Extension for Ruby"
61 HOMEPAGE="http://flori.github.com/amatch/"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
66 IUSE=""
67
68 ruby_add_rdepend ">=dev-ruby/tins-0.3"
69
70 each_ruby_configure() {
71 ${RUBY} -Cext extconf.rb || die
72 }
73
74 each_ruby_compile() {
75 emake -Cext V=1
76 cp ext/amatch_ext$(get_modname) lib/ || die
77 }
78
79 each_ruby_test() {
80 ${RUBY} -Ilib -S testrb tests/* || die
81 }