Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-sis: xf86-video-sis-0.9.3.ebuild xf86-video-sis-0.9.4.ebuild xf86-video-sis-0.10.0.ebuild xf86-video-sis-0.10.1.ebuild ChangeLog xf86-video-sis-0.9.1-r1.ebuild
Date: Mon, 04 May 2009 16:33:46
Message-Id: E1M115w-00027P-La@stork.gentoo.org
1 ssuominen 09/05/04 16:32:44
2
3 Modified: xf86-video-sis-0.9.3.ebuild
4 xf86-video-sis-0.9.4.ebuild
5 xf86-video-sis-0.10.0.ebuild
6 xf86-video-sis-0.10.1.ebuild ChangeLog
7 xf86-video-sis-0.9.1-r1.ebuild
8 Log:
9 Move use_ functions out of global scope.
10 (Portage version: 2.1.6.13/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.9 x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild?rev=1.9&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild?rev=1.9&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild?r1=1.8&r2=1.9
18
19 Index: xf86-video-sis-0.9.3.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild,v
22 retrieving revision 1.8
23 retrieving revision 1.9
24 diff -u -r1.8 -r1.9
25 --- xf86-video-sis-0.9.3.ebuild 13 Mar 2009 16:03:55 -0000 1.8
26 +++ xf86-video-sis-0.9.3.ebuild 4 May 2009 16:32:44 -0000 1.9
27 @@ -1,6 +1,6 @@
28 # Copyright 1999-2009 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild,v 1.8 2009/03/13 16:03:55 armin76 Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.3.ebuild,v 1.9 2009/05/04 16:32:44 ssuominen Exp $
32
33 # Must be before x-modular eclass is inherited
34 #SNAPSHOT="yes"
35 @@ -25,4 +25,6 @@
36 dri? ( x11-proto/xf86driproto
37 >=x11-libs/libdrm-2 )"
38
39 -CONFIGURE_OPTIONS="$(use_enable dri)"
40 +pkg_setup() {
41 + CONFIGURE_OPTIONS="$(use_enable dri)"
42 +}
43
44
45
46 1.6 x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild?rev=1.6&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild?rev=1.6&content-type=text/plain
50 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild?r1=1.5&r2=1.6
51
52 Index: xf86-video-sis-0.9.4.ebuild
53 ===================================================================
54 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild,v
55 retrieving revision 1.5
56 retrieving revision 1.6
57 diff -u -r1.5 -r1.6
58 --- xf86-video-sis-0.9.4.ebuild 13 Mar 2009 16:03:55 -0000 1.5
59 +++ xf86-video-sis-0.9.4.ebuild 4 May 2009 16:32:44 -0000 1.6
60 @@ -1,6 +1,6 @@
61 # Copyright 1999-2009 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild,v 1.5 2009/03/13 16:03:55 armin76 Exp $
64 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild,v 1.6 2009/05/04 16:32:44 ssuominen Exp $
65
66 # Must be before x-modular eclass is inherited
67 #SNAPSHOT="yes"
68 @@ -25,4 +25,6 @@
69 dri? ( x11-proto/xf86driproto
70 >=x11-libs/libdrm-2 )"
71
72 -CONFIGURE_OPTIONS="$(use_enable dri)"
73 +pkg_setup() {
74 + CONFIGURE_OPTIONS="$(use_enable dri)"
75 +}
76
77
78
79 1.6 x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild
80
81 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild?rev=1.6&view=markup
82 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild?rev=1.6&content-type=text/plain
83 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild?r1=1.5&r2=1.6
84
85 Index: xf86-video-sis-0.10.0.ebuild
86 ===================================================================
87 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild,v
88 retrieving revision 1.5
89 retrieving revision 1.6
90 diff -u -r1.5 -r1.6
91 --- xf86-video-sis-0.10.0.ebuild 5 Apr 2009 22:05:13 -0000 1.5
92 +++ xf86-video-sis-0.10.0.ebuild 4 May 2009 16:32:44 -0000 1.6
93 @@ -1,6 +1,6 @@
94 # Copyright 1999-2009 Gentoo Foundation
95 # Distributed under the terms of the GNU General Public License v2
96 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild,v 1.5 2009/04/05 22:05:13 maekke Exp $
97 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.0.ebuild,v 1.6 2009/05/04 16:32:44 ssuominen Exp $
98
99 # Must be before x-modular eclass is inherited
100 #SNAPSHOT="yes"
101 @@ -25,4 +25,6 @@
102 dri? ( x11-proto/xf86driproto
103 >=x11-libs/libdrm-2 )"
104
105 -CONFIGURE_OPTIONS="$(use_enable dri)"
106 +pkg_setup() {
107 + CONFIGURE_OPTIONS="$(use_enable dri)"
108 +}
109
110
111
112 1.3 x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild
113
114 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild?rev=1.3&view=markup
115 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild?rev=1.3&content-type=text/plain
116 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild?r1=1.2&r2=1.3
117
118 Index: xf86-video-sis-0.10.1.ebuild
119 ===================================================================
120 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild,v
121 retrieving revision 1.2
122 retrieving revision 1.3
123 diff -u -r1.2 -r1.3
124 --- xf86-video-sis-0.10.1.ebuild 13 Mar 2009 16:03:55 -0000 1.2
125 +++ xf86-video-sis-0.10.1.ebuild 4 May 2009 16:32:44 -0000 1.3
126 @@ -1,6 +1,6 @@
127 # Copyright 1999-2009 Gentoo Foundation
128 # Distributed under the terms of the GNU General Public License v2
129 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild,v 1.2 2009/03/13 16:03:55 armin76 Exp $
130 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.10.1.ebuild,v 1.3 2009/05/04 16:32:44 ssuominen Exp $
131
132 # Must be before x-modular eclass is inherited
133 #SNAPSHOT="yes"
134 @@ -25,4 +25,6 @@
135 dri? ( x11-proto/xf86driproto
136 >=x11-libs/libdrm-2 )"
137
138 -CONFIGURE_OPTIONS="$(use_enable dri)"
139 +pkg_setup() {
140 + CONFIGURE_OPTIONS="$(use_enable dri)"
141 +}
142
143
144
145 1.39 x11-drivers/xf86-video-sis/ChangeLog
146
147 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog?rev=1.39&view=markup
148 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog?rev=1.39&content-type=text/plain
149 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog?r1=1.38&r2=1.39
150
151 Index: ChangeLog
152 ===================================================================
153 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog,v
154 retrieving revision 1.38
155 retrieving revision 1.39
156 diff -u -r1.38 -r1.39
157 --- ChangeLog 5 Apr 2009 22:05:13 -0000 1.38
158 +++ ChangeLog 4 May 2009 16:32:44 -0000 1.39
159 @@ -1,6 +1,12 @@
160 # ChangeLog for x11-drivers/xf86-video-sis
161 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
162 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog,v 1.38 2009/04/05 22:05:13 maekke Exp $
163 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog,v 1.39 2009/05/04 16:32:44 ssuominen Exp $
164 +
165 + 04 May 2009; Samuli Suominen <ssuominen@g.o>
166 + xf86-video-sis-0.9.1-r1.ebuild, xf86-video-sis-0.9.3.ebuild,
167 + xf86-video-sis-0.9.4.ebuild, xf86-video-sis-0.10.0.ebuild,
168 + xf86-video-sis-0.10.1.ebuild:
169 + Move use_ functions out of global scope.
170
171 05 Apr 2009; Markus Meier <maekke@g.o>
172 xf86-video-sis-0.10.0.ebuild:
173
174
175
176 1.8 x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild
177
178 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild?rev=1.8&view=markup
179 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild?rev=1.8&content-type=text/plain
180 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild?r1=1.7&r2=1.8
181
182 Index: xf86-video-sis-0.9.1-r1.ebuild
183 ===================================================================
184 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild,v
185 retrieving revision 1.7
186 retrieving revision 1.8
187 diff -u -r1.7 -r1.8
188 --- xf86-video-sis-0.9.1-r1.ebuild 13 Mar 2009 16:03:55 -0000 1.7
189 +++ xf86-video-sis-0.9.1-r1.ebuild 4 May 2009 16:32:44 -0000 1.8
190 @@ -1,6 +1,6 @@
191 # Copyright 1999-2009 Gentoo Foundation
192 # Distributed under the terms of the GNU General Public License v2
193 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild,v 1.7 2009/03/13 16:03:55 armin76 Exp $
194 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.1-r1.ebuild,v 1.8 2009/05/04 16:32:44 ssuominen Exp $
195
196 # Must be before x-modular eclass is inherited
197 #SNAPSHOT="yes"
198 @@ -24,6 +24,8 @@
199 dri? ( x11-proto/xf86driproto
200 >=x11-libs/libdrm-2 )"
201
202 -CONFIGURE_OPTIONS="$(use_enable dri)"
203 +pkg_setup() {
204 + CONFIGURE_OPTIONS="$(use_enable dri)"
205 +}
206
207 PATCHES="${FILESDIR}/${PN}-assert.patch"