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/fxruby: ChangeLog fxruby-1.6.19.ebuild
Date: Sat, 22 Aug 2009 21:10:31
Message-Id: E1Mexr4-0004n1-4S@stork.gentoo.org
1 graaff 09/08/22 21:10:30
2
3 Modified: ChangeLog fxruby-1.6.19.ebuild
4 Log:
5 QA: fix quotation.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.81 dev-ruby/fxruby/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/ChangeLog?rev=1.81&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/ChangeLog?rev=1.81&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/ChangeLog?r1=1.80&r2=1.81
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/ChangeLog,v
18 retrieving revision 1.80
19 retrieving revision 1.81
20 diff -u -r1.80 -r1.81
21 --- ChangeLog 1 Apr 2009 04:58:49 -0000 1.80
22 +++ ChangeLog 22 Aug 2009 21:10:29 -0000 1.81
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-ruby/fxruby
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/ChangeLog,v 1.80 2009/04/01 04:58:49 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/ChangeLog,v 1.81 2009/08/22 21:10:29 graaff Exp $
28 +
29 + 22 Aug 2009; Hans de Graaff <graaff@g.o> fxruby-1.6.19.ebuild:
30 + QA: fix quotation.
31
32 01 Apr 2009; Jeroen Roovers <jer@g.o> fxruby-1.6.18-r1.ebuild:
33 Stable for HPPA (bug #263282). Fix one quoting issue.
34
35
36
37 1.2 dev-ruby/fxruby/fxruby-1.6.19.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild?r1=1.1&r2=1.2
42
43 Index: fxruby-1.6.19.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- fxruby-1.6.19.ebuild 21 Mar 2009 18:56:10 -0000 1.1
50 +++ fxruby-1.6.19.ebuild 22 Aug 2009 21:10:29 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v 1.1 2009/03/21 18:56:10 mabi Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v 1.2 2009/08/22 21:10:29 graaff Exp $
56
57 EAPI="1"
58
59 @@ -50,7 +50,7 @@
60
61 insinto ${rdbase}
62 [ -n "${rdfiles}" ] && doins ${rdfiles}
63 - rmdir ${D}${rdbase} 2>/dev/null || true
64 + rmdir "${D}"${rdbase} 2>/dev/null || true
65 if [ -d doc -o -d docs ] ; then
66 dohtml -x html -r {doc,docs}/*
67 dohtml -r {doc,docs}/html/*
68 @@ -67,7 +67,7 @@
69 for dir in sample samples example examples; do
70 if [ -d ${dir} ] ; then
71 dodir /usr/share/doc/${PF}
72 - cp -pPR ${dir} ${D}/usr/share/doc/${PF} || die "cp failed"
73 + cp -pPR ${dir} "${D}"/usr/share/doc/${PF} || die "cp failed"
74 fi
75 done
76 fi