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/uconv: uconv-0.6.1.ebuild ChangeLog
Date: Tue, 02 Jul 2013 06:14:55
Message-Id: 20130702061448.AD2B12171C@flycatcher.gentoo.org
1 graaff 13/07/02 06:14:48
2
3 Modified: ChangeLog
4 Added: uconv-0.6.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.22 dev-ruby/uconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 1 May 2012 18:24:03 -0000 1.21
24 +++ ChangeLog 2 Jul 2013 06:14:48 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/uconv
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v 1.21 2012/05/01 18:24:03 armin76 Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uconv/ChangeLog,v 1.22 2013/07/02 06:14:48 graaff Exp $
31 +
32 +*uconv-0.6.1 (02 Jul 2013)
33 +
34 + 02 Jul 2013; Hans de Graaff <graaff@g.o> +uconv-0.6.1.ebuild:
35 + Version bump.
36
37 01 May 2012; Raúl Porcel <armin76@g.o> uconv-0.5.3.ebuild:
38 Drop ia64/sparc keywords
39
40
41
42 1.1 dev-ruby/uconv/uconv-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/uconv-0.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/uconv/uconv-0.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uconv-0.6.1.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/uconv/uconv-0.6.1.ebuild,v 1.1 2013/07/02 06:14:48 graaff Exp $
52
53 EAPI=5
54 USE_RUBY="ruby18 ruby19"
55
56 inherit ruby-ng
57
58 DESCRIPTION="A module to convert ISO/IEC 10646 (Unicode) string and Japanese strings"
59 HOMEPAGE="http://www.yoshidam.net/Ruby.html#uconv"
60 SRC_URI="http://www.yoshidam.net/${P}.tar.gz"
61 LICENSE="Ruby"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE=""
65
66 RUBY_S=${PN}
67
68 all_ruby_prepare() {
69 sed -i -e '/^\$CFLAGS = ""/d' extconf.rb || die "Unable to remove CFLAGS line"
70 }
71
72 each_ruby_configure() {
73 ${RUBY} extconf.rb || die
74 }
75
76 each_ruby_compile() {
77 emake V=1 || die
78 }
79
80 each_ruby_install() {
81 emake V=1 DESTDIR="${D}" install || die
82 }
83
84 all_ruby_install() {
85 dodoc README*
86 }