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/ruby-inifile: ruby-inifile-2.0.0-r2.ebuild ChangeLog
Date: Tue, 29 Oct 2013 23:30:06
Message-Id: 20131029232959.0A21E20047@flycatcher.gentoo.org
1 mrueg 13/10/29 23:29:58
2
3 Modified: ChangeLog
4 Added: ruby-inifile-2.0.0-r2.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.7 dev-ruby/ruby-inifile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 16 Sep 2012 08:26:13 -0000 1.6
24 +++ ChangeLog 29 Oct 2013 23:29:58 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ruby-inifile
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog,v 1.6 2012/09/16 08:26:13 graaff Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-inifile/ChangeLog,v 1.7 2013/10/29 23:29:58 mrueg Exp $
31 +
32 +*ruby-inifile-2.0.0-r2 (30 Oct 2013)
33 +
34 + 30 Oct 2013; Manuel RĂ¼ger <mrueg@g.o> +ruby-inifile-2.0.0-r2.ebuild:
35 + Add ruby20 target.
36
37 16 Sep 2012; Hans de Graaff <graaff@g.o> ruby-inifile-2.0.0-r1.ebuild:
38 Convert to EAPI=4; add all ruby targets.
39
40
41
42 1.1 dev-ruby/ruby-inifile/ruby-inifile-2.0.0-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-inifile/ruby-inifile-2.0.0-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-inifile/ruby-inifile-2.0.0-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ruby-inifile-2.0.0-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-inifile/ruby-inifile-2.0.0-r2.ebuild,v 1.1 2013/10/29 23:29:58 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby18 ruby19 ruby20 jruby"
55
56 inherit ruby-ng
57
58 DESCRIPTION="Small library to parse INI-files in Ruby"
59 HOMEPAGE="http://raa.ruby-lang.org/project/ruby-inifile/"
60 SRC_URI="http://gregoire.lejeune.free.fr/${PN}_${PV}.tar.gz"
61
62 SLOT="0"
63 IUSE=""
64 LICENSE="Ruby"
65 KEYWORDS="~x86 ~amd64"
66 RUBY_S=${PN}
67
68 each_ruby_test() {
69 cd tests
70 for test in *.rb ; do
71 ${RUBY} -I../lib $test || die
72 done
73 }
74
75 each_ruby_install() {
76 ${RUBY} setup.rb config --prefix="${D}"/usr || die
77 ${RUBY} setup.rb install || die
78 }
79
80 all_ruby_install() {
81 dodoc AUTHORS README
82 }