| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
3 | # Author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.22 2002/10/25 19:55:52 vapier Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.29 2002/12/22 12:06:00 danarmak Exp $ |
| 5 | # This eclass provides the generic cvs fetching functions. |
5 | # This eclass provides the generic cvs fetching functions. |
| 6 | |
6 | |
| 7 | ECLASS=cvs |
7 | ECLASS=cvs |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | INHERITED="$INHERITED $ECLASS" |
| 9 | |
9 | |
| … | |
… | |
| 34 | # parts of the full CVSROOT (which looks like |
34 | # parts of the full CVSROOT (which looks like |
| 35 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
35 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
| 36 | # other settings |
36 | # other settings |
| 37 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
37 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
| 38 | |
38 | |
|
|
39 | # Anonymous cvs login? |
|
|
40 | # if 'yes' uses :pserver: with empty password, if 'no' uses :ext: with $ECVS_PASS, other values not allowed |
|
|
41 | [ -z "$ECVS_ANON" ] && ECVS_ANON="yes" |
|
|
42 | |
|
|
43 | # Authentication method to use on ECVS_ANON="no" - possible values are "pserver" and "ext" |
|
|
44 | [ -z "$ECVS_AUTH" ] && ECVS_AUTH="ext" |
|
|
45 | |
|
|
46 | # Use su to run cvs as user |
|
|
47 | [ -z "$ECVS_RUNAS" ] && ECVS_RUNAS="`whoami`" |
|
|
48 | |
| 39 | # Username to use |
49 | # Username to use |
| 40 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
50 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
| 41 | |
51 | |
| 42 | # Password to use (NOT (YET) SUPPORTED, because cvs doesn't store passwords in plaintext in .cvspass) |
52 | # Password to use if anonymous login is off |
| 43 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
53 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
| 44 | |
54 | |
| 45 | # Module to be fetched, must be set explicitly - |
55 | # Module to be fetched, must be set explicitly - |
| 46 | # I don't like the former ="$PN" default setting |
56 | # I don't like the former ="$PN" default setting |
| 47 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
57 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
| … | |
… | |
| 56 | #[ -z "$ECVS_SUBDIR" ] && ECVS_SUBDIR="" |
66 | #[ -z "$ECVS_SUBDIR" ] && ECVS_SUBDIR="" |
| 57 | |
67 | |
| 58 | # --- end ebuild-configurable settings --- |
68 | # --- end ebuild-configurable settings --- |
| 59 | |
69 | |
| 60 | # add cvs to deps |
70 | # add cvs to deps |
| 61 | DEPEND="$DEPEND dev-util/cvs" |
71 | DEPEND="$DEPEND dev-util/cvs dev-python/pexpect" |
| 62 | |
72 | |
| 63 | # since we now longer have src_fetch as a redefinable ebuild function, |
73 | # since we now longer have src_fetch as a redefinable ebuild function, |
| 64 | # we are forced to call this function from cvs_src_unpack |
74 | # we are forced to call this function from cvs_src_unpack |
| 65 | cvs_fetch() { |
75 | cvs_fetch() { |
| 66 | |
76 | |
| … | |
… | |
| 69 | debug-print "$FUNCNAME: init: |
79 | debug-print "$FUNCNAME: init: |
| 70 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
80 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
| 71 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
81 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
| 72 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
82 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
| 73 | ECVS_SERVER=$ECVS_SERVER |
83 | ECVS_SERVER=$ECVS_SERVER |
|
|
84 | ECVS_ANON=$ECVS_ANON |
| 74 | ECVS_USER=$ECVS_USER |
85 | ECVS_USER=$ECVS_USER |
| 75 | ECVS_PASS=$ECVS_PASS |
86 | ECVS_PASS=$ECVS_PASS |
| 76 | ECS_MODULE=$ECVS_MODULE |
87 | ECS_MODULE=$ECVS_MODULE |
| 77 | ECVS_SUBDIR=$ECVS_SUBDIR |
88 | ECVS_SUBDIR=$ECVS_SUBDIR |
| 78 | ECVS_LOCAL=$ECVS_LOCAL |
89 | ECVS_LOCAL=$ECVS_LOCAL |
| … | |
… | |
| 98 | if [ ! -d "$DIR" ]; then |
109 | if [ ! -d "$DIR" ]; then |
| 99 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
110 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
| 100 | #export SANDBOX_WRITE="$SANDBOX_WRITE:/foobar:/" |
111 | #export SANDBOX_WRITE="$SANDBOX_WRITE:/foobar:/" |
| 101 | addwrite /foobar |
112 | addwrite /foobar |
| 102 | addwrite / |
113 | addwrite / |
| 103 | mkdir -p /$DIR |
114 | mkdir -p "/$DIR" |
| 104 | export SANDBOX_WRITE=${SANDBOX_WRITE//:\/foobar:\/} |
115 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
| 105 | fi |
116 | fi |
| 106 | |
117 | |
| 107 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
118 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
| 108 | # otherwise addwrite() doesn't work. |
119 | # otherwise addwrite() doesn't work. |
| 109 | cd -P $ECVS_TOP_DIR > /dev/null |
120 | cd -P "$ECVS_TOP_DIR" > /dev/null |
| 110 | ECVS_TOP_DIR="`/bin/pwd`" |
121 | ECVS_TOP_DIR="`/bin/pwd`" |
| 111 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
122 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
| 112 | cd $OLDPWD |
123 | cd "$OLDPWD" |
| 113 | |
124 | |
| 114 | debug-print "$FUNCNAME: now DIR=$DIR" |
125 | debug-print "$FUNCNAME: now DIR=$DIR" |
| 115 | |
126 | |
| 116 | # disable the sandbox for this dir |
127 | # disable the sandbox for this dir |
| 117 | # not just $DIR because we want to create moduletopdir/CVS too |
128 | # not just $DIR because we want to create moduletopdir/CVS too |
| 118 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
129 | addwrite "$ECVS_TOP_DIR/$ECVS_MODULE" |
| 119 | |
130 | |
| 120 | # add option for local (non-recursive) fetching |
131 | # add option for local (non-recursive) fetching |
| 121 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
132 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
| 122 | |
133 | |
| 123 | # prepare a cvspass file just for this session so that cvs thinks we're logged |
134 | # prepare a cvspass file just for this session so that cvs thinks we're logged |
| 124 | # in at the cvs server. we don't want to mess with ~/.cvspass. |
135 | # in at the cvs server. we don't want to mess with ~/.cvspass. |
| 125 | echo ":pserver:${ECVS_SERVER} A" > ${T}/cvspass |
136 | echo ":pserver:${ECVS_SERVER} A" > "${T}/cvspass" |
| 126 | export CVS_PASSFILE="${T}/cvspass" |
137 | export CVS_PASSFILE="${T}/cvspass" |
|
|
138 | chown $ECVS_RUNAS "${T}/cvspass" |
| 127 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
139 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
| 128 | |
140 | |
| 129 | # Note: cvs update and checkout commands are unified. |
141 | # Note: cvs update and checkout commands are unified. |
| 130 | # we make sure a CVS/ dir exists in our module subdir with the right |
142 | # we make sure a CVS/ dir exists in our module subdir with the right |
| 131 | # Root and Repository entries in it and cvs update. |
143 | # Root and Repository entries in it and cvs update. |
| 132 | |
144 | |
|
|
145 | [ "${ECVS_ANON}" == "yes" ] && \ |
| 133 | newserver=":pserver:${ECVS_USER}@${ECVS_SERVER}" |
146 | newserver=":pserver:${ECVS_USER}@${ECVS_SERVER}" || \ |
|
|
147 | newserver=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
148 | |
| 134 | |
149 | |
| 135 | # CVS/Repository files can't (I think) contain two concatenated slashes |
150 | # CVS/Repository files can't (I think) contain two concatenated slashes |
| 136 | if [ -n "$ECVS_SUBDIR" ]; then |
151 | if [ -n "$ECVS_SUBDIR" ]; then |
| 137 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
152 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
| 138 | else |
153 | else |
| 139 | repository="${ECVS_MODULE}" |
154 | repository="${ECVS_MODULE}" |
| 140 | fi |
155 | fi |
| 141 | |
156 | |
| 142 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
157 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
| 143 | debug-print "$FUNCNAME: entering directory $DIR" |
158 | debug-print "$FUNCNAME: entering directory $DIR" |
| 144 | cd /$DIR |
159 | cd "/$DIR" |
| 145 | |
160 | |
| 146 | if [ ! -d "CVS" ]; then |
161 | if [ ! -d "CVS" ]; then |
| 147 | # create a new CVS/ directory (checkout) |
162 | # create a new CVS/ directory (checkout) |
| 148 | debug-print "$FUNCNAME: creating new cvs directory" |
163 | debug-print "$FUNCNAME: creating new cvs directory" |
| 149 | |
164 | |
| … | |
… | |
| 155 | # if we're checking out a subdirectory only, create a CVS/ dir |
170 | # if we're checking out a subdirectory only, create a CVS/ dir |
| 156 | # in the module's top dir so that the user (and we) can cvs update |
171 | # in the module's top dir so that the user (and we) can cvs update |
| 157 | # from there to get the full module. |
172 | # from there to get the full module. |
| 158 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
173 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
| 159 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
174 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
| 160 | cp -r CVS $ECVS_TOP_DIR/$ECVS_MODULE/ |
175 | cp -r CVS "$ECVS_TOP_DIR/$ECVS_MODULE/" |
| 161 | echo $ECVS_MODULE > $ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository |
176 | echo $ECVS_MODULE > "$ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository" |
| 162 | fi |
177 | fi |
| 163 | |
178 | |
| 164 | else |
179 | else |
| 165 | #update existing module |
180 | #update existing module |
| 166 | debug-print "$FUNCNAME: updating existing module/subdir" |
181 | debug-print "$FUNCNAME: updating existing module/subdir" |
| … | |
… | |
| 180 | debug-print "$cvsdirs" |
195 | debug-print "$cvsdirs" |
| 181 | |
196 | |
| 182 | einfo "Modifying CVS dirs..." |
197 | einfo "Modifying CVS dirs..." |
| 183 | for x in $cvsdirs; do |
198 | for x in $cvsdirs; do |
| 184 | debug-print "In $x" |
199 | debug-print "In $x" |
| 185 | echo $newserver > $x/Root |
200 | echo $newserver > "$x/Root" |
| 186 | done |
201 | done |
| 187 | |
202 | |
| 188 | fi |
203 | fi |
| 189 | |
204 | |
| 190 | fi |
205 | fi |
| 191 | |
206 | |
| 192 | # cvs auto-switches branches, how nice |
207 | # cvs auto-switches branches, how nice |
| 193 | # warning: if we do it this way we get multiple -rX options - harmless i think |
208 | # warning: if we do it this way we get multiple -rX options - harmless i think |
| 194 | [ -n "$ECVS_BRANCH" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -r$ECVS_BRANCH" |
209 | [ -n "$ECVS_BRANCH" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -r$ECVS_BRANCH" |
|
|
210 | |
|
|
211 | # Chowning the directory |
|
|
212 | if [ "${ECVS_RUNAS}" != "`whoami`" ]; then |
|
|
213 | chown -R "$ECVS_RUNAS" "/$DIR" |
|
|
214 | fi |
| 195 | |
215 | |
| 196 | # finally run the cvs update command |
216 | # finally run the cvs update command |
| 197 | debug-print "$FUNCNAME: is in dir `/bin/pwd`" |
217 | debug-print "$FUNCNAME: is in dir `/bin/pwd`" |
| 198 | debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR" |
218 | debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR" |
| 199 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
219 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
|
|
220 | |
|
|
221 | if [ "${ECVS_ANON}" == "no" ]; then |
|
|
222 | |
|
|
223 | debug-print "$FUNCNAME: starting non-anonymous cvs login..." |
|
|
224 | # CVS Login - written in python :: the right way ;) |
|
|
225 | # Tilman Klar, <phoenix@gentoo.org> |
|
|
226 | |
|
|
227 | export CVS_RSH="/usr/bin/ssh" |
|
|
228 | |
|
|
229 | ############################## inline-python ##################################### |
|
|
230 | /usr/bin/env python << EndOfFile |
|
|
231 | |
|
|
232 | import pexpect,os |
|
|
233 | |
|
|
234 | mypasswd = "${ECVS_PASS}" |
|
|
235 | myauth = "${ECVS_AUTH}" |
|
|
236 | mytimeout = 10 |
|
|
237 | |
|
|
238 | if "${ECVS_RUNAS}" == "`whoami`": |
|
|
239 | mycommand = "${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}" |
|
|
240 | else: |
|
|
241 | mycommand = "su ${ECVS_RUNAS} -c \"${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}\"" |
|
|
242 | |
|
|
243 | if myauth == "ext": |
|
|
244 | child = pexpect.spawn(mycommand) |
|
|
245 | |
|
|
246 | index = child.expect(['continue connecting','word:'], mytimeout) |
|
|
247 | if index == 0: |
|
|
248 | child.sendline('yes') |
|
|
249 | ## Added server to ~/.ssh/known_hosts |
|
|
250 | child.expect('word:', mytimeout) |
|
|
251 | else: |
|
|
252 | ## Server already is in ~/.ssh/known_hosts |
|
|
253 | pass |
|
|
254 | |
|
|
255 | child.sendline(mypasswd) |
|
|
256 | child.expect(pexpect.EOF) |
|
|
257 | |
|
|
258 | elif myauth == "pserver": |
|
|
259 | mycommand = "su ${ECVS_RUNAS} -c \"cvs login\"" |
|
|
260 | child = pexpect.spawn(mycommand) |
|
|
261 | child.expect("CVS password:",mytimeout) |
|
|
262 | child.sendline(mypasswd) |
|
|
263 | child.expect(pexpect.EOF) |
|
|
264 | |
|
|
265 | # Logged in - checking out |
|
|
266 | os.system(mycommand) |
|
|
267 | |
|
|
268 | EndOfFile |
|
|
269 | ########################### End of inline-python ################################## |
|
|
270 | else |
|
|
271 | debug-print "$FUNCNAME: using anonymous cvs login" |
| 200 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
272 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
|
|
273 | fi |
| 201 | |
274 | |
|
|
275 | # log out and restore ownership |
|
|
276 | if [ "$ECVS_RUNAS" == "`whoami`" ]; then |
|
|
277 | cvs logout &> /dev/null |
|
|
278 | else |
|
|
279 | su $ECVS_RUNAS -c "cvs logout" &> /dev/null |
|
|
280 | fi |
|
|
281 | chown `whoami` "${T}/cvspass" |
| 202 | } |
282 | } |
| 203 | |
283 | |
| 204 | cvs_src_unpack() { |
284 | cvs_src_unpack() { |
| 205 | |
285 | |
| 206 | debug-print-function $FUNCNAME $* |
286 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 208 | |
288 | |
| 209 | einfo "Copying $ECVS_MODULE/$ECVS_SUBDIR from $ECVS_TOP_DIR..." |
289 | einfo "Copying $ECVS_MODULE/$ECVS_SUBDIR from $ECVS_TOP_DIR..." |
| 210 | debug-print "Copying module $ECVS_MODULE subdir $ECVS_SUBDIR local_mode=$ECVS_LOCAL from $ECVS_TOP_DIR..." |
290 | debug-print "Copying module $ECVS_MODULE subdir $ECVS_SUBDIR local_mode=$ECVS_LOCAL from $ECVS_TOP_DIR..." |
| 211 | |
291 | |
| 212 | # probably redundant, but best to make sure |
292 | # probably redundant, but best to make sure |
| 213 | mkdir -p $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR |
293 | mkdir -p "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR" |
| 214 | |
294 | |
| 215 | if [ -n "$ECVS_SUBDIR" ]; then |
295 | if [ -n "$ECVS_SUBDIR" ]; then |
| 216 | if [ -n "$ECVS_LOCAL" ]; then |
296 | if [ -n "$ECVS_LOCAL" ]; then |
| 217 | cp -f $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR/* $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR |
297 | cp -f "$ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR"/* "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR" |
| 218 | else |
298 | else |
| 219 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/.. |
299 | cp -Rf "$ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR" "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/.." |
| 220 | fi |
300 | fi |
| 221 | else |
301 | else |
| 222 | if [ -n "$ECVS_LOCAL" ]; then |
302 | if [ -n "$ECVS_LOCAL" ]; then |
| 223 | cp -f $ECVS_TOP_DIR/$ECVS_MODULE/* $WORKDIR/$ECVS_MODULE |
303 | cp -f "$ECVS_TOP_DIR/$ECVS_MODULE"/* $WORKDIR/$ECVS_MODULE |
| 224 | else |
304 | else |
| 225 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE $WORKDIR |
305 | cp -Rf "$ECVS_TOP_DIR/$ECVS_MODULE" "$WORKDIR" |
| 226 | fi |
306 | fi |
| 227 | fi |
307 | fi |
| 228 | |
308 | |
| 229 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
309 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
| 230 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
310 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
| 231 | # still create the empty directory in workdir though. |
311 | # still create the empty directory in workdir though. |
| 232 | if [ "`ls -A $DIR`" == "CVS" ]; then |
312 | if [ "`ls -A \"$DIR\"`" == "CVS" ]; then |
| 233 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
313 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
| 234 | rm -rf $DIR |
314 | rm -rf "$DIR" |
| 235 | fi |
315 | fi |
| 236 | |
316 | |
| 237 | # implement some of base_src_unpack's functionality; |
317 | # implement some of base_src_unpack's functionality; |
| 238 | # note however that base.eclass may not have been inherited! |
318 | # note however that base.eclass may not have been inherited! |
| 239 | if [ -n "$PATCHES" ]; then |
319 | if [ -n "$PATCHES" ]; then |
| 240 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
320 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
| 241 | cd $S |
321 | cd "$S" |
| 242 | for x in $PATCHES; do |
322 | for x in $PATCHES; do |
| 243 | debug-print "patching from $x" |
323 | debug-print "patching from $x" |
| 244 | patch -p0 < $x |
324 | patch -p0 < "$x" |
| 245 | done |
325 | done |
| 246 | # make sure we don't try to apply patches more than once, since |
326 | # make sure we don't try to apply patches more than once, since |
| 247 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
327 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
| 248 | export PATCHES="" |
328 | export PATCHES="" |
| 249 | fi |
329 | fi |