Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-proto/glproto: glproto-1.4.7.ebuild glproto-1.4.8.ebuild ChangeLog
Date: Tue, 09 Oct 2007 07:59:53
Message-Id: E1If9r2-000796-Cq@stork.gentoo.org
1 dberkholz 07/10/09 07:50:12
2
3 Modified: glproto-1.4.7.ebuild glproto-1.4.8.ebuild ChangeLog
4 Log:
5 Fix quoting issues caught by latest repoman.
6 (Portage version: 2.1.3.12)
7
8 Revision Changes Path
9 1.11 x11-proto/glproto/glproto-1.4.7.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild?r1=1.10&r2=1.11
14
15 Index: glproto-1.4.7.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- glproto-1.4.7.ebuild 30 Jul 2007 08:16:11 -0000 1.10
22 +++ glproto-1.4.7.ebuild 9 Oct 2007 07:50:11 -0000 1.11
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild,v 1.10 2007/07/30 08:16:11 dberkholz Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.7.ebuild,v 1.11 2007/10/09 07:50:11 dberkholz Exp $
28
29 # Must be before x-modular eclass is inherited
30 #SNAPSHOT="yes"
31 @@ -34,9 +34,9 @@
32 dodir /usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
33 local x=""
34 # glext.h added for #54984
35 - for x in ${D}/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
36 - if [ -f ${x} -o -L ${x} ]; then
37 - mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
38 + for x in "${D}"/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
39 + if [[ -f ${x} || -L ${x} ]]; then
40 + mv -f "${x}" "${D}"/usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
41 fi
42 done
43 eend 0
44
45
46
47 1.9 x11-proto/glproto/glproto-1.4.8.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild?rev=1.9&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild?rev=1.9&content-type=text/plain
51 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild?r1=1.8&r2=1.9
52
53 Index: glproto-1.4.8.ebuild
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild,v
56 retrieving revision 1.8
57 retrieving revision 1.9
58 diff -u -r1.8 -r1.9
59 --- glproto-1.4.8.ebuild 30 Jul 2007 08:16:11 -0000 1.8
60 +++ glproto-1.4.8.ebuild 9 Oct 2007 07:50:11 -0000 1.9
61 @@ -1,6 +1,6 @@
62 # Copyright 1999-2007 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild,v 1.8 2007/07/30 08:16:11 dberkholz Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.8.ebuild,v 1.9 2007/10/09 07:50:11 dberkholz Exp $
66
67 # Must be before x-modular eclass is inherited
68 #SNAPSHOT="yes"
69 @@ -34,9 +34,9 @@
70 dodir /usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
71 local x=""
72 # glext.h added for #54984
73 - for x in ${D}/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
74 - if [ -f ${x} -o -L ${x} ]; then
75 - mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
76 + for x in "${D}"/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
77 + if [[ -f ${x} || -L ${x} ]]; then
78 + mv -f "${x}" "${D}"/usr/$(get_libdir)/opengl/${OPENGL_DIR}/include
79 fi
80 done
81 eend 0
82
83
84
85 1.44 x11-proto/glproto/ChangeLog
86
87 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/ChangeLog?rev=1.44&view=markup
88 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/ChangeLog?rev=1.44&content-type=text/plain
89 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/glproto/ChangeLog?r1=1.43&r2=1.44
90
91 Index: ChangeLog
92 ===================================================================
93 RCS file: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v
94 retrieving revision 1.43
95 retrieving revision 1.44
96 diff -u -r1.43 -r1.44
97 --- ChangeLog 30 Jul 2007 08:16:11 -0000 1.43
98 +++ ChangeLog 9 Oct 2007 07:50:11 -0000 1.44
99 @@ -1,6 +1,10 @@
100 # ChangeLog for x11-proto/glproto
101 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
102 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v 1.43 2007/07/30 08:16:11 dberkholz Exp $
103 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v 1.44 2007/10/09 07:50:11 dberkholz Exp $
104 +
105 + 09 Oct 2007; Donnie Berkholz <dberkholz@g.o>; glproto-1.4.7.ebuild,
106 + glproto-1.4.8.ebuild:
107 + Fix quoting issues caught by latest repoman.
108
109 30 Jul 2007; Donnie Berkholz <dberkholz@g.o>; glproto-1.4.7.ebuild,
110 glproto-1.4.8.ebuild:
111
112
113
114 --
115 gentoo-commits@g.o mailing list