| 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 or later |
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.12 2002/08/18 23:54:59 danarmak Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.26 2002/11/23 21:37:40 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 | |
| … | |
… | |
| 24 | |
24 | |
| 25 | # set this for the module/subdir to be fetched non-recursively |
25 | # set this for the module/subdir to be fetched non-recursively |
| 26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
| 27 | |
27 | |
| 28 | # Where the cvs modules are stored/accessed |
28 | # Where the cvs modules are stored/accessed |
| 29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="/usr/src" |
29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
| 30 | |
30 | |
| 31 | # Name of cvs server, set to "offline" to disable fetching |
31 | # Name of cvs server, set to "offline" to disable fetching |
| 32 | # (i.e. to assume module is checked out already and don't update it). |
32 | # (i.e. to assume module is checked out already and don't update it). |
| 33 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
33 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
| 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" |
| 48 | |
58 | |
|
|
59 | # Branch/tag to use, default is HEAD |
|
|
60 | # uncomment the following line to enable the reset-branch-to-HEAD behaviour |
|
|
61 | [ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
|
|
62 | |
| 49 | # Subdirectory in module to be fetched, default is not defined = whole module |
63 | # Subdirectory in module to be fetched, default is not defined = whole module |
| 50 | # DO NOT set default to "", if it's defined at all code will break! |
64 | # DO NOT set default to "", if it's defined at all code will break! |
| 51 | # don't uncomment following line! |
65 | # don't uncomment following line! |
| 52 | #[ -z "$ECVS_MODULE_SUBDIR" ] && ECVS_MODULE_SUBDIR="" |
66 | #[ -z "$ECVS_SUBDIR" ] && ECVS_SUBDIR="" |
| 53 | |
67 | |
| 54 | # --- end ebuild-configurable settings --- |
68 | # --- end ebuild-configurable settings --- |
| 55 | |
69 | |
| 56 | # add cvs to deps |
70 | # add cvs to deps |
| 57 | DEPEND="$DEPEND dev-util/cvs" |
71 | DEPEND="$DEPEND dev-util/cvs dev-python/pexpect" |
| 58 | |
72 | |
| 59 | # 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, |
| 60 | # we are forced to call this function from cvs_src_unpack |
74 | # we are forced to call this function from cvs_src_unpack |
| 61 | cvs_fetch() { |
75 | cvs_fetch() { |
| 62 | |
76 | |
| … | |
… | |
| 65 | debug-print "$FUNCNAME: init: |
79 | debug-print "$FUNCNAME: init: |
| 66 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
80 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
| 67 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
81 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
| 68 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
82 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
| 69 | ECVS_SERVER=$ECVS_SERVER |
83 | ECVS_SERVER=$ECVS_SERVER |
|
|
84 | ECVS_ANON=$ECVS_ANON |
| 70 | ECVS_USER=$ECVS_USER |
85 | ECVS_USER=$ECVS_USER |
| 71 | ECVS_PASS=$ECVS_PASS |
86 | ECVS_PASS=$ECVS_PASS |
| 72 | ECS_MODULE=$ECVS_MODULE |
87 | ECS_MODULE=$ECVS_MODULE |
| 73 | ECVS_MODULE_SUBDIR=$ECVS_SUBDIR |
88 | ECVS_SUBDIR=$ECVS_SUBDIR |
| 74 | ECVS_LOCAL=$ECVS_LOCAL |
89 | ECVS_LOCAL=$ECVS_LOCAL |
| 75 | DIR=$DIR" |
90 | DIR=$DIR" |
| 76 | |
91 | |
| 77 | # a shorthand |
92 | # a shorthand |
| 78 | [ -n "$ECVS_SUBDIR" ] && DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" || \ |
|
|
| 79 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}" |
93 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
|
|
94 | debug-print "$FUNCNAME: now DIR=$DIR" |
| 80 | |
95 | |
| 81 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
|
|
| 82 | |
|
|
| 83 | addread $DIR |
|
|
| 84 | |
|
|
| 85 | if [ "$ECVS_SERVER" == "offline" ]; then |
96 | if [ "$ECVS_SERVER" == "offline" ]; then |
| 86 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
97 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
| 87 | if [ -d "$DIR" ]; then |
98 | if [ -d "$DIR" ]; then |
| 88 | debug-print "$FUNCNAME: offline mode, exiting" |
99 | debug-print "$FUNCNAME: offline mode, exiting" |
| 89 | return 0 |
100 | return 0 |
| 90 | else |
101 | else |
| 91 | einfo "ERROR: Offline mode specified, but module/subdir not found. Aborting." |
102 | einfo "ERROR: Offline mode specified, but module/subdir not found. Aborting." |
| 92 | debug-print "$FUNCNAME: offline mode specified but module/subdir not found, exiting with error" |
103 | debug-print "$FUNCNAME: offline mode specified but module/subdir not found, exiting with error" |
| 93 | return 1 |
104 | return 1 |
| 94 | fi |
|
|
| 95 | fi |
105 | fi |
|
|
106 | fi |
| 96 | |
107 | |
| 97 | # disable the sandbox for this dir |
108 | # create target directory as needed |
| 98 | |
|
|
| 99 | # not just $DIR because we want to create moduletopdir/CVS too |
|
|
| 100 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
|
|
| 101 | |
|
|
| 102 | if [ ! -d "$DIR" ]; then |
109 | if [ ! -d "$DIR" ]; then |
| 103 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
110 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
| 104 | einfo "Creating directory $DIR" |
|
|
| 105 | export SANDBOX_WRITE="$SANDBOX_WRITE:/foo:/" |
111 | #export SANDBOX_WRITE="$SANDBOX_WRITE:/foobar:/" |
|
|
112 | addwrite /foobar |
|
|
113 | addwrite / |
| 106 | mkdir -p /$DIR |
114 | mkdir -p "/$DIR" |
| 107 | export SANDBOX_WRITE=${SANDBOX_WRITE//:\/foo:\/} |
115 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
| 108 | fi |
116 | fi |
| 109 | |
117 | |
|
|
118 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
|
|
119 | # otherwise addwrite() doesn't work. |
|
|
120 | cd -P "$ECVS_TOP_DIR" > /dev/null |
|
|
121 | ECVS_TOP_DIR="`/bin/pwd`" |
|
|
122 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
|
|
123 | cd "$OLDPWD" |
|
|
124 | |
|
|
125 | debug-print "$FUNCNAME: now DIR=$DIR" |
|
|
126 | |
|
|
127 | # disable the sandbox for this dir |
|
|
128 | # not just $DIR because we want to create moduletopdir/CVS too |
|
|
129 | addwrite "$ECVS_TOP_DIR/$ECVS_MODULE" |
|
|
130 | |
|
|
131 | # add option for local (non-recursive) fetching |
|
|
132 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
|
|
133 | |
| 110 | # 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 |
| 111 | # 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. |
| 112 | echo ":pserver:${ECVS_SERVER} A" > ${T}/cvspass |
136 | echo ":pserver:${ECVS_SERVER} A" > "${T}/cvspass" |
| 113 | export CVS_PASSFILE="${T}/cvspass" |
137 | export CVS_PASSFILE="${T}/cvspass" |
|
|
138 | chown $ECVS_RUNAS "${T}/cvspass" |
| 114 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
139 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
| 115 | |
140 | |
| 116 | # Note: cvs update and checkout commands are unified. |
141 | # Note: cvs update and checkout commands are unified. |
| 117 | # 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 |
| 118 | # Root and Repository entries in it and cvs update. |
143 | # Root and Repository entries in it and cvs update. |
| 119 | |
144 | |
| 120 | newserver=":pserver:anonymous@${ECVS_SERVER}" |
145 | [ "${ECVS_ANON}" == "yes" ] && \ |
|
|
146 | newserver=":pserver:${ECVS_USER}@${ECVS_SERVER}" || \ |
|
|
147 | newserver=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
148 | |
| 121 | |
149 | |
| 122 | # CVS/Repository files can't (I think) contain two concatenated slashes |
150 | # CVS/Repository files can't (I think) contain two concatenated slashes |
| 123 | if [ -n "$ECVS_SUBDIR" ]; then |
151 | if [ -n "$ECVS_SUBDIR" ]; then |
| 124 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
152 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
| 125 | else |
153 | else |
| 126 | repository="${ECVS_MODULE}" |
154 | repository="${ECVS_MODULE}" |
| 127 | fi |
155 | fi |
| 128 | |
156 | |
| 129 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
157 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
| 130 | |
158 | debug-print "$FUNCNAME: entering directory $DIR" |
| 131 | cd $DIR |
159 | cd "/$DIR" |
|
|
160 | |
| 132 | if [ ! -d "$DIR/CVS" ]; then |
161 | if [ ! -d "CVS" ]; then |
| 133 | # create a new CVS/ directory (checkout) |
162 | # create a new CVS/ directory (checkout) |
| 134 | debug-print "$FUNCNAME: creating new cvs directory" |
163 | debug-print "$FUNCNAME: creating new cvs directory" |
| 135 | |
164 | |
| 136 | mkdir CVS |
165 | mkdir CVS |
| 137 | echo $newserver > CVS/Root |
166 | echo $newserver > CVS/Root |
| … | |
… | |
| 141 | # 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 |
| 142 | # 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 |
| 143 | # from there to get the full module. |
172 | # from there to get the full module. |
| 144 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
173 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
| 145 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
174 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
| 146 | cp -r CVS $ECVS_TOP_DIR/$ECVS_MODULE/ |
175 | cp -r CVS "$ECVS_TOP_DIR/$ECVS_MODULE/" |
| 147 | echo $ECVS_MODULE > $ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository |
176 | echo $ECVS_MODULE > "$ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository" |
| 148 | fi |
177 | fi |
| 149 | |
178 | |
| 150 | else |
179 | else |
| 151 | #update existing module |
180 | #update existing module |
| 152 | debug-print "$FUNCNAME: updating existing module/subdir" |
181 | debug-print "$FUNCNAME: updating existing module/subdir" |
| … | |
… | |
| 166 | debug-print "$cvsdirs" |
195 | debug-print "$cvsdirs" |
| 167 | |
196 | |
| 168 | einfo "Modifying CVS dirs..." |
197 | einfo "Modifying CVS dirs..." |
| 169 | for x in $cvsdirs; do |
198 | for x in $cvsdirs; do |
| 170 | debug-print "In $x" |
199 | debug-print "In $x" |
| 171 | echo $newserver > $x/Root |
200 | echo $newserver > "$x/Root" |
| 172 | done |
201 | done |
| 173 | |
202 | |
| 174 | fi |
203 | fi |
| 175 | |
204 | |
| 176 | fi |
205 | fi |
| 177 | |
206 | |
|
|
207 | # cvs auto-switches branches, how nice |
|
|
208 | # warning: if we do it this way we get multiple -rX options - harmless i think |
|
|
209 | [ -n "$ECVS_BRANCH" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -r$ECVS_BRANCH" |
|
|
210 | |
|
|
211 | # Chowning the directory |
|
|
212 | if [ "${ECVS_RUNAS}" != "root" ]; then |
|
|
213 | chown -R "$ECVS_RUNAS" "/$DIR" |
|
|
214 | fi |
|
|
215 | |
| 178 | # finally run the cvs update command |
216 | # finally run the cvs update command |
|
|
217 | debug-print "$FUNCNAME: is in dir `/bin/pwd`" |
| 179 | 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" |
| 180 | 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 myauth == "ext": |
|
|
239 | mycommand = "su ${ECVS_RUNAS} -c \"${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}\"" |
|
|
240 | child = pexpect.spawn(mycommand) |
|
|
241 | |
|
|
242 | index = child.expect(['continue connecting','word:'], mytimeout) |
|
|
243 | if index == 0: |
|
|
244 | child.sendline('yes') |
|
|
245 | ## Added server to ~/.ssh/known_hosts |
|
|
246 | child.expect('word:', mytimeout) |
|
|
247 | else: |
|
|
248 | ## Server already is in ~/.ssh/known_hosts |
|
|
249 | pass |
|
|
250 | |
|
|
251 | child.sendline(mypasswd) |
|
|
252 | child.expect(pexpect.EOF) |
|
|
253 | |
|
|
254 | elif myauth == "pserver": |
|
|
255 | mycommand = "su ${ECVS_RUNAS} -c \"cvs login\"" |
|
|
256 | child = pexpect.spawn(mycommand) |
|
|
257 | child.expect("CVS password:",mytimeout) |
|
|
258 | child.sendline(mypasswd) |
|
|
259 | child.expect(pexpect.EOF) |
|
|
260 | |
|
|
261 | # Logged in - checking out |
|
|
262 | os.system("su ${ECVS_RUNAS} -c \"${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}\" &> /dev/null") |
|
|
263 | EndOfFile |
|
|
264 | ########################### End of inline-python ################################## |
|
|
265 | else |
|
|
266 | debug-print "$FUNCNAME: using anonymous cvs login" |
| 181 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
267 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
|
|
268 | fi |
| 182 | |
269 | |
|
|
270 | # log out and restore ownership |
|
|
271 | su $ECVS_RUNAS -c "cvs logout" &> /dev/null |
|
|
272 | chown `whoami` "${T}/cvspass" |
| 183 | } |
273 | } |
| 184 | |
274 | |
| 185 | cvs_src_unpack() { |
275 | cvs_src_unpack() { |
| 186 | |
276 | |
| 187 | debug-print-function $FUNCNAME $* |
277 | debug-print-function $FUNCNAME $* |
| 188 | cvs_fetch || die "died running cvs_fetch" |
278 | cvs_fetch || die "died running cvs_fetch" |
| 189 | |
279 | |
| 190 | einfo "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
280 | einfo "Copying $ECVS_MODULE/$ECVS_SUBDIR from $ECVS_TOP_DIR..." |
| 191 | debug-print "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
281 | debug-print "Copying module $ECVS_MODULE subdir $ECVS_SUBDIR local_mode=$ECVS_LOCAL from $ECVS_TOP_DIR..." |
|
|
282 | |
|
|
283 | # probably redundant, but best to make sure |
|
|
284 | mkdir -p "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR" |
| 192 | |
285 | |
| 193 | if [ -n "$ECVS_SUBDIR" ]; then |
286 | if [ -n "$ECVS_SUBDIR" ]; then |
| 194 | mkdir -p $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR |
287 | if [ -n "$ECVS_LOCAL" ]; then |
| 195 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR/* $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/ |
288 | cp -f "$ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR/*" "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR" |
|
|
289 | else |
|
|
290 | cp -Rf "$ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR" "$WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/.." |
|
|
291 | fi |
| 196 | else |
292 | else |
| 197 | if [ -n "$ECVS_LOCAL" ]; then |
293 | if [ -n "$ECVS_LOCAL" ]; then |
| 198 | cp -f $ECVS_TOP_DIR/$ECVS_MODULE/* $WORKDIR/$ECVS_MODULE |
294 | cp -f "$ECVS_TOP_DIR/$ECVS_MODULE/*" "$WORKDIR/$ECVS_MODULE" |
| 199 | else |
295 | else |
| 200 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE $WORKDIR |
296 | cp -Rf "$ECVS_TOP_DIR/$ECVS_MODULE" "$WORKDIR" |
| 201 | fi |
297 | fi |
| 202 | fi |
298 | fi |
| 203 | |
299 | |
| 204 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
300 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
| 205 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
301 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
| 206 | # still create the empty directory in workdir though. |
302 | # still create the empty directory in workdir though. |
| 207 | if [ "`ls -A $DIR`" == "CVS" ]; then |
303 | if [ "`ls -A $DIR`" == "CVS" ]; then |
| 208 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
304 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
| 209 | rm -rf $DIR |
305 | rm -rf "$DIR" |
| 210 | fi |
306 | fi |
| 211 | |
307 | |
| 212 | # implement some of base_src_unpack's functionality; |
308 | # implement some of base_src_unpack's functionality; |
| 213 | # note however that base.eclass may not have been inherited! |
309 | # note however that base.eclass may not have been inherited! |
| 214 | if [ -n "$PATCHES" ]; then |
310 | if [ -n "$PATCHES" ]; then |
| 215 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
311 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
| 216 | cd $S |
312 | cd "$S" |
| 217 | for x in $PATCHES; do |
313 | for x in $PATCHES; do |
| 218 | debug-print "patching from $x" |
314 | debug-print "patching from $x" |
| 219 | patch -p0 < $x |
315 | patch -p0 < "$x" |
| 220 | done |
316 | done |
| 221 | # make sure we don't try to apply patches more than once, since |
317 | # make sure we don't try to apply patches more than once, since |
| 222 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
318 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
| 223 | export PATCHES="" |
319 | export PATCHES="" |
| 224 | fi |
320 | fi |
| 225 | |
321 | |
| 226 | } |
322 | } |
| 227 | |
323 | |
| 228 | EXPORT_FUNCTIONS src_unpack |
324 | EXPORT_FUNCTIONS src_unpack |
| 229 | |
|
|
| 230 | |
|
|