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