| 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.41 2003/06/10 22:06:18 danarmak 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.18 2002/09/15 14:15:54 danarmak Exp $ |
6 | # |
| 5 | # This eclass provides the generic cvs fetching functions. |
7 | # This eclass provides the generic cvs fetching functions. |
|
|
8 | # to use from an ebuild, set the 'ebuild-configurable settings' below in your ebuild before inheriting. |
|
|
9 | # then either leave the default src_unpack or extend over cvs_src_unpack. |
|
|
10 | # if you find that you need to call the cvs_* functions directly, i'd be interested to hear about it. |
| 6 | |
11 | |
| 7 | ECLASS=cvs |
12 | ECLASS=cvs |
| 8 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 9 | |
14 | |
| 10 | # You shouldn't change these settings yourself! The ebuild/eclass inheriting this eclass |
15 | # You shouldn't change these settings yourself! The ebuild/eclass inheriting this eclass |
| … | |
… | |
| 16 | # cvs command to run. you can set fex. "cvs -t" for extensive debug information |
21 | # cvs command to run. you can set fex. "cvs -t" for extensive debug information |
| 17 | # on the cvs onnection. the default of "cvs -q -f -z4" means to be quiet, to disregard |
22 | # on the cvs onnection. the default of "cvs -q -f -z4" means to be quiet, to disregard |
| 18 | # the ~/.cvsrc config file and to use maximum compression. |
23 | # the ~/.cvsrc config file and to use maximum compression. |
| 19 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
24 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
| 20 | |
25 | |
| 21 | # cvs options given after the command (i.e. cvs update foo) |
26 | # cvs options given after the cvs command (update or checkout) |
| 22 | # don't remove -dP or things won't work |
27 | # don't remove -dP from update or things won't work |
|
|
28 | [ -z "$ECVS_UP_OPTS" ] && ECVS_UP_OPTS="-dP" |
| 23 | [ -z "$ECVS_CVS_OPTIONS" ] && ECVS_CVS_OPTIONS="-dP" |
29 | [ -z "$ECVS_CO_OPTS" ] && ECVS_CO_OPTS="" |
| 24 | |
30 | |
| 25 | # set this for the module/subdir to be fetched non-recursively |
31 | # set this to some value for the module/subdir to be fetched non-recursively: ECVS_LOCAL |
| 26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
|
|
| 27 | |
32 | |
| 28 | # Where the cvs modules are stored/accessed |
33 | # Where the cvs modules are stored/accessed |
| 29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
34 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
| 30 | |
35 | |
| 31 | # Name of cvs server, set to "offline" to disable fetching |
36 | # 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). |
37 | # (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 |
38 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
| 34 | # parts of the full CVSROOT (which looks like |
39 | # parts of the full CVSROOT (which looks like |
| 35 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
40 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
| 36 | # other settings |
41 | # other settings |
|
|
42 | # the special value 'offline' disables fetching, assumes sources are alread in ECVS_TOP_DIR |
| 37 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
43 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
| 38 | |
44 | |
| 39 | # Username to use |
45 | # Authentication method to use - possible values are "pserver" and "ext" |
|
|
46 | # WARNING ext is NOT supported! (never was, despite what earlier version of this file said) |
|
|
47 | [ -z "$ECVS_AUTH" ] && ECVS_AUTH="pserver" |
|
|
48 | [ "$ECVS_AUTH" == ext ] && die "ERROR: ext auth not supported. If you want it, please contact danarmak@gentoo.org." |
|
|
49 | |
|
|
50 | # Use su to run cvs as user |
|
|
51 | # Currently b0rked and wouldn't work with portage userpriv anyway without special magic |
|
|
52 | # [ -z "$ECVS_RUNAS" ] && ECVS_RUNAS="`whoami`" |
|
|
53 | |
|
|
54 | # Username to give to the server |
| 40 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
55 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
| 41 | |
56 | |
| 42 | # Password to use (NOT (YET) SUPPORTED, because cvs doesn't store passwords in plaintext in .cvspass) |
57 | # Password to use |
| 43 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
58 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
| 44 | |
59 | |
| 45 | # Module to be fetched, must be set explicitly - |
60 | # Module to be fetched, must be set when kde_src_unpack is called |
| 46 | # I don't like the former ="$PN" default setting |
61 | # can include several directory levels, ie foo/bar/baz |
| 47 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
62 | #[ -z "$ECVS_MODULE" ] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
| 48 | |
63 | |
| 49 | # Branch/tag to use, default is HEAD |
64 | # Branch/tag to use, default is HEAD |
| 50 | # uncomment the following line to enable the reset-branch-to-HEAD behaviour |
65 | # the following default _will_ reset your branch checkout to head if used |
| 51 | [ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
66 | #[ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
| 52 | |
67 | |
| 53 | # Subdirectory in module to be fetched, default is not defined = whole module |
68 | # deprecated - do not use |
| 54 | # DO NOT set default to "", if it's defined at all code will break! |
69 | [ -n "$ECVS_SUBDIR" ] && die "ERROR: deprecated ECVS_SUBDIR defined. Please fix this ebuild." |
| 55 | # don't uncomment following line! |
|
|
| 56 | #[ -z "$ECVS_SUBDIR" ] && ECVS_SUBDIR="" |
|
|
| 57 | |
70 | |
| 58 | # --- end ebuild-configurable settings --- |
71 | # --- end ebuild-configurable settings --- |
| 59 | |
72 | |
| 60 | # add cvs to deps |
73 | # add cvs to deps |
|
|
74 | # ssh is used for ext auth |
|
|
75 | # sudo is used to run as a specified user |
| 61 | DEPEND="$DEPEND dev-util/cvs" |
76 | DEPEND="$DEPEND dev-util/cvs app-admin/sudo" |
|
|
77 | #[ "$ECVS_AUTH" == "ext" ] && DEPEND="$DEPEND net-misc/openssh" |
| 62 | |
78 | |
| 63 | # since we now longer have src_fetch as a redefinable ebuild function, |
79 | # calls cvs_contorl, is called from cvs_src_unpack |
| 64 | # we are forced to call this function from cvs_src_unpack |
|
|
| 65 | cvs_fetch() { |
80 | cvs_fetch() { |
|
|
81 | |
|
|
82 | debug-print-function $FUNCNAME $* |
|
|
83 | |
|
|
84 | # parameters modifying other parameters that should be effective every time cvs_fetch is called, |
|
|
85 | # and not just every time cvs.eclas is inherited |
|
|
86 | # 1. parameter for local (non-recursive) fetching |
|
|
87 | if [ -n "$ECVS_LOCAL" ]; then |
|
|
88 | ECVS_UP_OPTS="$ECVS_UP_OPTS -l" |
|
|
89 | ECVS_CO_OPTS="$ECVS_CO_OPTS -l" |
|
|
90 | fi |
|
|
91 | # 2. cvs auto-switches branches, we just have to pass the correct -rBRANCH option to it when updating. |
|
|
92 | # doing it this way we get multiple -rX options - harmless afaik |
|
|
93 | if [ -n "$ECVS_BRANCH" ]; then |
|
|
94 | ECVS_UP_OPTS="$ECVS_UP_OPTS -r$ECVS_BRANCH" |
|
|
95 | ECVS_CO_OPTS="$ECVS_CO_OPTS -r$ECVS_BRANCH" |
|
|
96 | fi |
|
|
97 | |
|
|
98 | # it's easiest to always be in "run-as mode", logic-wise |
|
|
99 | # or would be if sudo didn't ask for a password even when sudo'ing to `whoami` |
|
|
100 | if [ -z "$ECVS_RUNAS" ]; then |
|
|
101 | run="" |
|
|
102 | else |
|
|
103 | run="sudo -u $ECVS_RUNAS" |
|
|
104 | fi |
|
|
105 | |
|
|
106 | # create the top dir if needed |
|
|
107 | if [ ! -d "$ECVS_TOP_DIR" ]; then |
|
|
108 | # note that the addwrite statements in this block are only there to allow creating ECVS_TOP_DIR; |
|
|
109 | # we've already allowed writing inside it |
|
|
110 | # this is because it's simpler than trying to find out the parent path of the directory, which |
|
|
111 | # would need to be the real path and not a symlink for things to work (so we can't just remove |
|
|
112 | # the last path element in the string) |
|
|
113 | debug-print "$FUNCNAME: checkout mode. creating cvs directory" |
|
|
114 | addwrite /foobar |
|
|
115 | addwrite / |
|
|
116 | $run mkdir -p "/$ECVS_TOP_DIR" |
|
|
117 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
|
|
118 | fi |
|
|
119 | |
|
|
120 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
|
|
121 | # otherwise addwrite() doesn't work. |
|
|
122 | cd -P "$ECVS_TOP_DIR" > /dev/null |
|
|
123 | ECVS_TOP_DIR="`/bin/pwd`" |
|
|
124 | |
|
|
125 | # determine checkout or update mode |
|
|
126 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
|
|
127 | mode=checkout |
|
|
128 | else |
|
|
129 | mode=update |
|
|
130 | fi |
|
|
131 | |
|
|
132 | # disable the sandbox for this dir |
|
|
133 | addwrite "$ECVS_TOP_DIR" |
|
|
134 | |
|
|
135 | # chowning the directory and all contents |
|
|
136 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
137 | $run chown -R "$ECVS_RUNAS" "/$ECVS_TOP_DIR" |
|
|
138 | fi |
|
|
139 | |
|
|
140 | # our server string (aka CVSROOT), without the password so it can be put in Root |
|
|
141 | server=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
142 | |
|
|
143 | # switch servers automagically if needed |
|
|
144 | if [ "$mode" == "update" ]; then |
|
|
145 | cd /$ECVS_TOP_DIR/$ECVS_MODULE |
|
|
146 | oldserver="`$run cat CVS/Root`" |
|
|
147 | if [ "$server" != "$oldserver" ]; then |
|
|
148 | |
|
|
149 | einfo "Changing CVS server from $oldserver to $server:" |
|
|
150 | debug-print "$FUNCNAME: Changing CVS server from $oldserver to $server:" |
|
|
151 | |
|
|
152 | einfo "Searching for CVS dirs..." |
|
|
153 | cvsdirs="`$run find . -iname CVS -print`" |
|
|
154 | debug-print "$FUNCNAME: CVS dirs found:" |
|
|
155 | debug-print "$cvsdirs" |
|
|
156 | |
|
|
157 | einfo "Modifying CVS dirs..." |
|
|
158 | for x in $cvsdirs; do |
|
|
159 | debug-print "In $x" |
|
|
160 | $run echo "$server" > "$x/Root" |
|
|
161 | done |
|
|
162 | |
|
|
163 | fi |
|
|
164 | fi |
|
|
165 | |
|
|
166 | # prepare a cvspass file just for this session, we don't want to mess with ~/.cvspass |
|
|
167 | touch "${T}/cvspass" |
|
|
168 | export CVS_PASSFILE="${T}/cvspass" |
|
|
169 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
170 | chown "$ECVS_RUNAS" "${T}/cvspass" |
|
|
171 | fi |
|
|
172 | |
|
|
173 | # the server string with the password in it, for login |
|
|
174 | cvsroot_pass=":${ECVS_AUTH}:${ECVS_USER}:${ECVS_PASS}@${ECVS_SERVER}" |
|
|
175 | # ditto without the password, for checkout/update after login, so that |
|
|
176 | # the CVS/Root files don't contain the password in plaintext |
|
|
177 | cvsroot_nopass=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
178 | |
|
|
179 | # commands to run |
|
|
180 | cmdlogin="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_pass}\" login" |
|
|
181 | cmdupdate="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\" update ${ECVS_UP_OPTS} ${ECVS_MODULE}" |
|
|
182 | cmdcheckout="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\" checkout ${ECVS_CO_OPTS} ${ECVS_MODULE}" |
|
|
183 | |
|
|
184 | cd "${ECVS_TOP_DIR}" |
|
|
185 | if [ "${ECVS_AUTH}" == "pserver" ]; then |
|
|
186 | einfo "Running $cmdlogin" |
|
|
187 | eval $cmdlogin || die "cvs login command failed" |
|
|
188 | if [ "${mode}" == "update" ]; then |
|
|
189 | einfo "Running $cmdupdate" |
|
|
190 | eval $cmdupdate || die "cvs update command failed" |
|
|
191 | elif [ "${mode}" == "checkout" ]; then |
|
|
192 | einfo "Running $cmdcheckout" |
|
|
193 | eval $cmdcheckout|| die "cvs checkout command failed" |
|
|
194 | fi |
|
|
195 | # elif [ "${ECVS_AUTH}" == "ext" ]; then |
|
|
196 | # # for ext there's also a possible ssh prompt, code not yet written |
|
|
197 | # echo "${ECVS_DELAY} continue connecting&yes" >> "$instruct" |
|
|
198 | # echo "${ECVS_DELAY} CVS password:&${ECVS_PASS}" >> "$instruct" |
|
|
199 | # if [ "$mode" == "update" ]; then |
|
|
200 | # expect "$cvsout" "$instruct" | $cmdupdate > "$cvsout" |
|
|
201 | # elif [ "$mode" == "checkout" ]; then |
|
|
202 | # expect "$cvsout" "$instruct" | $cmdcheckout > "$cvsout" |
|
|
203 | # fi |
|
|
204 | fi |
|
|
205 | |
|
|
206 | # restore ownership. not sure why this is needed, but someone added it in the orig ECVS_RUNAS stuff. |
|
|
207 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
208 | chown `whoami` "${T}/cvspass" |
|
|
209 | fi |
|
|
210 | |
|
|
211 | } |
|
|
212 | |
|
|
213 | |
|
|
214 | cvs_src_unpack() { |
| 66 | |
215 | |
| 67 | debug-print-function $FUNCNAME $* |
216 | debug-print-function $FUNCNAME $* |
| 68 | |
217 | |
| 69 | debug-print "$FUNCNAME: init: |
218 | debug-print "$FUNCNAME: init: |
| 70 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
219 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
|
|
220 | ECVS_UP_OPTS=$ECVS_UP_OPTS |
| 71 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
221 | ECVS_CO_OPTS=$ECVS_CO_OPTS |
| 72 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
222 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
| 73 | ECVS_SERVER=$ECVS_SERVER |
223 | ECVS_SERVER=$ECVS_SERVER |
| 74 | ECVS_USER=$ECVS_USER |
224 | ECVS_USER=$ECVS_USER |
| 75 | ECVS_PASS=$ECVS_PASS |
225 | ECVS_PASS=$ECVS_PASS |
| 76 | ECS_MODULE=$ECVS_MODULE |
226 | ECS_MODULE=$ECVS_MODULE |
| 77 | ECVS_SUBDIR=$ECVS_SUBDIR |
|
|
| 78 | ECVS_LOCAL=$ECVS_LOCAL |
227 | ECVS_LOCAL=$ECVS_LOCAL |
| 79 | DIR=$DIR" |
228 | ECVS_RUNAS=$ECVS_RUNAS" |
| 80 | |
229 | |
| 81 | # a shorthand |
230 | [ -z "$ECVS_MODULE" ] && die "ERROR: CVS module not set, cannot continue." |
| 82 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
|
|
| 83 | debug-print "$FUNCNAME: now DIR=$DIR" |
|
|
| 84 | |
231 | |
| 85 | if [ "$ECVS_SERVER" == "offline" ]; then |
232 | if [ "$ECVS_SERVER" == "offline" ]; then |
| 86 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
233 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
| 87 | if [ -d "$DIR" ]; then |
234 | if [ -d "${ECVS_TOP_DIR}/${ECVS_MODULE}" ]; then |
| 88 | debug-print "$FUNCNAME: offline mode, exiting" |
235 | debug-print "$FUNCNAME: offline mode" |
| 89 | return 0 |
236 | else |
| 90 | else |
|
|
| 91 | 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" |
237 | debug-print "$FUNCNAME: offline mode specified but directory ${ECVS_TOP_DIR}/${ECVS_MODULE} not found, exiting with error" |
| 93 | return 1 |
238 | die "ERROR: Offline mode specified, but dir ${ECVS_TOP_DIR}/${ECVS_MODULE} not found. Aborting." |
| 94 | fi |
|
|
| 95 | fi |
239 | fi |
| 96 | |
240 | elif [ -n "$ECVS_SERVER" ]; then # ECVS_SERVER!=offline --> real fetching mode |
| 97 | # create target directory as needed |
241 | einfo "Fetching cvs module $ECVS_MODULE into $ECVS_TOP_DIR..." |
| 98 | if [ ! -d "$DIR" ]; then |
242 | cvs_fetch |
| 99 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
243 | else # ECVS_SERVER not set |
| 100 | #export SANDBOX_WRITE="$SANDBOX_WRITE:/foobar:/" |
244 | die "ERROR: CVS server not set, cannot continue." |
| 101 | addwrite /foobar |
|
|
| 102 | addwrite / |
|
|
| 103 | mkdir -p /$DIR |
|
|
| 104 | export SANDBOX_WRITE=${SANDBOX_WRITE//:\/foobar:\/} |
|
|
| 105 | fi |
245 | fi |
| 106 | |
246 | |
| 107 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
247 | einfo "Copying $ECVS_MODULE from $ECVS_TOP_DIR..." |
| 108 | # otherwise addwrite() doesn't work. |
248 | debug-print "Copying module $ECVS_MODULElocal_mode=$ECVS_LOCAL from $ECVS_TOP_DIR..." |
| 109 | cd -P $ECVS_TOP_DIR > /dev/null |
|
|
| 110 | ECVS_TOP_DIR="`/bin/pwd`" |
|
|
| 111 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
|
|
| 112 | cd $OLDPWD |
|
|
| 113 | |
|
|
| 114 | debug-print "$FUNCNAME: now DIR=$DIR" |
|
|
| 115 | |
|
|
| 116 | # disable the sandbox for this dir |
|
|
| 117 | # not just $DIR because we want to create moduletopdir/CVS too |
|
|
| 118 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
|
|
| 119 | |
249 | |
| 120 | # add option for local (non-recursive) fetching |
250 | # probably redundant, but best to make sure |
| 121 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
251 | mkdir -p "$WORKDIR/$ECVS_MODULE" |
| 122 | |
252 | |
| 123 | # 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. |
|
|
| 125 | echo ":pserver:${ECVS_SERVER} A" > ${T}/cvspass |
|
|
| 126 | export CVS_PASSFILE="${T}/cvspass" |
|
|
| 127 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
|
|
| 128 | |
|
|
| 129 | # Note: cvs update and checkout commands are unified. |
|
|
| 130 | # we make sure a CVS/ dir exists in our module subdir with the right |
|
|
| 131 | # Root and Repository entries in it and cvs update. |
|
|
| 132 | |
|
|
| 133 | newserver=":pserver:${ECVS_USER}@${ECVS_SERVER}" |
|
|
| 134 | |
|
|
| 135 | # CVS/Repository files can't (I think) contain two concatenated slashes |
|
|
| 136 | if [ -n "$ECVS_SUBDIR" ]; then |
253 | if [ -n "$ECVS_LOCAL" ]; then |
| 137 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
254 | mkdir -p "$WORKDIR/$ECVS_MODULE" |
|
|
255 | cp -f "$ECVS_TOP_DIR/$ECVS_MODULE"/* "$WORKDIR/$ECVS_MODULE" |
| 138 | else |
256 | else |
| 139 | repository="${ECVS_MODULE}" |
|
|
| 140 | fi |
|
|
| 141 | |
|
|
| 142 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
|
|
| 143 | debug-print "$FUNCNAME: entering directory $DIR" |
|
|
| 144 | cd /$DIR |
|
|
| 145 | |
|
|
| 146 | if [ ! -d "CVS" ]; then |
|
|
| 147 | # create a new CVS/ directory (checkout) |
|
|
| 148 | debug-print "$FUNCNAME: creating new cvs directory" |
|
|
| 149 | |
|
|
| 150 | mkdir CVS |
|
|
| 151 | echo $newserver > CVS/Root |
|
|
| 152 | echo $repository > CVS/Repository |
|
|
| 153 | touch CVS/Entries |
|
|
| 154 | |
|
|
| 155 | # 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 |
|
|
| 157 | # from there to get the full module. |
|
|
| 158 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
|
|
| 159 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
|
|
| 160 | cp -r CVS $ECVS_TOP_DIR/$ECVS_MODULE/ |
|
|
| 161 | echo $ECVS_MODULE > $ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository |
|
|
| 162 | fi |
|
|
| 163 | |
|
|
| 164 | else |
|
|
| 165 | #update existing module |
|
|
| 166 | debug-print "$FUNCNAME: updating existing module/subdir" |
|
|
| 167 | |
|
|
| 168 | # Switch servers if needed |
|
|
| 169 | # cvs keeps the server info in the CVS/Root file in every checked-out dir; |
|
|
| 170 | # we can fix those files to point to the new server |
|
|
| 171 | oldserver="`cat CVS/Root`" |
|
|
| 172 | if [ "$newserver" != "$oldserver" ]; then |
|
|
| 173 | |
|
|
| 174 | einfo "Changing CVS server from $oldserver to $newserver:" |
|
|
| 175 | debug-print "$FUNCNAME: Changing CVS server from $oldserver to $newserver:" |
|
|
| 176 | |
|
|
| 177 | einfo "Searching for CVS dirs..." |
|
|
| 178 | cvsdirs="`find . -iname CVS -print`" |
|
|
| 179 | debug-print "$FUNCNAME: CVS dirs found:" |
|
|
| 180 | debug-print "$cvsdirs" |
|
|
| 181 | |
|
|
| 182 | einfo "Modifying CVS dirs..." |
|
|
| 183 | for x in $cvsdirs; do |
|
|
| 184 | debug-print "In $x" |
|
|
| 185 | echo $newserver > $x/Root |
|
|
| 186 | done |
|
|
| 187 | |
|
|
| 188 | fi |
|
|
| 189 | |
|
|
| 190 | fi |
|
|
| 191 | |
|
|
| 192 | # cvs auto-switches branches, how nice |
|
|
| 193 | # 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" |
|
|
| 195 | |
|
|
| 196 | # finally run the cvs update command |
|
|
| 197 | 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" |
|
|
| 199 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
|
|
| 200 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
|
|
| 201 | |
|
|
| 202 | } |
|
|
| 203 | |
|
|
| 204 | cvs_src_unpack() { |
|
|
| 205 | |
|
|
| 206 | debug-print-function $FUNCNAME $* |
|
|
| 207 | cvs_fetch || die "died running cvs_fetch" |
|
|
| 208 | |
|
|
| 209 | einfo "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
|
|
| 210 | debug-print "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
|
|
| 211 | |
|
|
| 212 | if [ -n "$ECVS_SUBDIR" ]; then |
|
|
| 213 | mkdir -p $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR |
|
|
| 214 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR/* $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/ |
|
|
| 215 | else |
|
|
| 216 | if [ -n "$ECVS_LOCAL" ]; then |
|
|
| 217 | cp -f $ECVS_TOP_DIR/$ECVS_MODULE/* $WORKDIR/$ECVS_MODULE |
257 | cp -Rf "$ECVS_TOP_DIR/$ECVS_MODULE" "$WORKDIR/$ECVS_MODULE/.." |
| 218 | else |
|
|
| 219 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE $WORKDIR |
|
|
| 220 | fi |
258 | fi |
| 221 | fi |
259 | |
| 222 | |
|
|
| 223 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
260 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
| 224 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
261 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
| 225 | # still create the empty directory in workdir though. |
262 | # still create the empty directory in workdir though. |
| 226 | if [ "`ls -A $DIR`" == "CVS" ]; then |
263 | if [ "`ls -A \"${ECVS_TOP_DIR}/${ECVS_MODULE}\"`" == "CVS" ]; then |
| 227 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
264 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE" |
| 228 | rm -rf $DIR |
265 | rm -rf "${ECVS_TOP_DIR}/${ECVS_MODULE}" |
| 229 | fi |
266 | fi |
| 230 | |
267 | |
| 231 | # implement some of base_src_unpack's functionality; |
268 | # implement some of base_src_unpack's functionality; |
| 232 | # note however that base.eclass may not have been inherited! |
269 | # note however that base.eclass may not have been inherited! |
| 233 | if [ -n "$PATCHES" ]; then |
270 | if [ -n "$PATCHES" ]; then |
| 234 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
271 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
| 235 | cd $S |
272 | cd "$S" |
| 236 | for x in $PATCHES; do |
273 | for x in $PATCHES; do |
| 237 | debug-print "patching from $x" |
274 | debug-print "patching from $x" |
| 238 | patch -p0 < $x |
275 | patch -p0 < "$x" |
| 239 | done |
276 | done |
| 240 | # make sure we don't try to apply patches more than once, since |
277 | # make sure we don't try to apply patches more than once, since |
| 241 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
278 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
| 242 | export PATCHES="" |
279 | export PATCHES="" |
| 243 | fi |
280 | fi |
| 244 | |
281 | |
| 245 | } |
282 | } |
| 246 | |
283 | |
| 247 | EXPORT_FUNCTIONS src_unpack |
284 | EXPORT_FUNCTIONS src_unpack |
| 248 | |
|
|
| 249 | |
|
|