| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 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> |
|
|
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.12 2002/08/18 23:54:59 danarmak Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.66 2006/12/11 00:09:31 vapier Exp $ |
|
|
4 | # |
|
|
5 | # Maintainer: vapier@gentoo.org (and anyone who wants to help) |
|
|
6 | |
|
|
7 | inherit eutils |
|
|
8 | |
| 5 | # This eclass provides the generic cvs fetching functions. |
9 | # This eclass provides the generic cvs fetching functions. To use |
|
|
10 | # this from an ebuild, set the `ebuild-configurable settings' as |
|
|
11 | # specified below in your ebuild before inheriting. Then either leave |
|
|
12 | # the default src_unpack or extend over cvs_src_unpack. If you find |
|
|
13 | # that you need to call the cvs_* functions directly, I'd be |
|
|
14 | # interested to hear about it. |
| 6 | |
15 | |
| 7 | ECLASS=cvs |
16 | # TODO: |
| 8 | INHERITED="$INHERITED $ECLASS" |
|
|
| 9 | |
17 | |
|
|
18 | # Implement more auth types (gserver?, kserver?) |
|
|
19 | |
|
|
20 | # Support additional remote shells with `ext' authentication (does |
|
|
21 | # anyone actually need to use it with anything other than SSH?) |
|
|
22 | |
|
|
23 | |
|
|
24 | |
| 10 | # You shouldn't change these settings yourself! The ebuild/eclass inheriting this eclass |
25 | # Users shouldn't change these settings! The ebuild/eclass inheriting |
| 11 | # will take care of that. If you want to set the global KDE cvs ebuilds' settings, |
26 | # this eclass will take care of that. If you want to set the global |
| 12 | # see the comments in kde-source.eclass. |
27 | # KDE cvs ebuilds' settings, see the comments in kde-source.eclass. |
| 13 | |
28 | |
| 14 | # --- begin ebuild-configurable settings |
29 | # --- begin ebuild-configurable settings |
| 15 | |
30 | |
|
|
31 | # ECVS_CVS_COMMAND -- CVS command to run |
|
|
32 | # |
| 16 | # cvs command to run. you can set fex. "cvs -t" for extensive debug information |
33 | # You can set, for example, "cvs -t" for extensive debug information |
| 17 | # on the cvs onnection. the default of "cvs -q -f -z4" means to be quiet, to disregard |
34 | # on the cvs connection. The default of "cvs -q -f -z4" means to be |
| 18 | # the ~/.cvsrc config file and to use maximum compression. |
35 | # quiet, to disregard the ~/.cvsrc config file and to use maximum |
|
|
36 | # compression. |
|
|
37 | |
| 19 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
38 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
| 20 | |
39 | |
| 21 | # cvs options given after the command (i.e. cvs update foo) |
40 | |
|
|
41 | # ECVS_UP_OPTS, ECVS_CO_OPTS -- CVS options given after the cvs |
|
|
42 | # command (update or checkout). |
|
|
43 | # |
| 22 | # don't remove -dP or things won't work |
44 | # Don't remove -dP from update or things won't work. |
|
|
45 | |
|
|
46 | [ -z "$ECVS_UP_OPTS" ] && ECVS_UP_OPTS="-dP" |
| 23 | [ -z "$ECVS_CVS_OPTIONS" ] && ECVS_CVS_OPTIONS="-dP" |
47 | [ -z "$ECVS_CO_OPTS" ] && ECVS_CO_OPTS="" |
| 24 | |
48 | |
| 25 | # set this for the module/subdir to be fetched non-recursively |
|
|
| 26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
|
|
| 27 | |
49 | |
| 28 | # Where the cvs modules are stored/accessed |
50 | # ECVS_LOCAL -- If this is set, the CVS module will be fetched |
| 29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="/usr/src" |
51 | # non-recursively. Refer to the information in the CVS man page |
|
|
52 | # regarding the -l command option (not the -l global option). |
| 30 | |
53 | |
| 31 | # Name of cvs server, set to "offline" to disable fetching |
54 | |
| 32 | # (i.e. to assume module is checked out already and don't update it). |
55 | # ECVS_LOCALNAME -- local name of checkout directory |
|
|
56 | # |
|
|
57 | # This is useful if the module on the server is called something |
|
|
58 | # common like 'driver' or is nested deep in a tree, and you don't like |
|
|
59 | # useless empty directories. |
|
|
60 | # |
|
|
61 | # WARNING: Set this only from within ebuilds! If set in your shell or |
|
|
62 | # some such, things will break because the ebuild won't expect it and |
|
|
63 | # have e.g. a wrong $S setting. |
|
|
64 | |
|
|
65 | |
|
|
66 | # ECVS_TOP_DIR -- The directory under which CVS modules are checked |
|
|
67 | # out. |
|
|
68 | |
|
|
69 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/cvs-src" |
|
|
70 | |
|
|
71 | # ECVS_SERVER -- CVS path |
|
|
72 | # |
| 33 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
73 | # The format is "server:/dir", e.g. "anoncvs.kde.org:/home/kde". |
| 34 | # parts of the full CVSROOT (which looks like |
74 | # Remove the other parts of the full CVSROOT, which might look like |
| 35 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
75 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"; this is generated |
| 36 | # other settings |
76 | # using other settings also. |
|
|
77 | # |
|
|
78 | # Set this to "offline" to disable fetching (i.e. to assume the module |
|
|
79 | # is already checked out in ECVS_TOP_DIR). |
|
|
80 | |
| 37 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
81 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
| 38 | |
82 | |
| 39 | # Username to use |
83 | |
|
|
84 | # ECVS_MODULE -- the name of the CVS module to be fetched |
|
|
85 | # |
|
|
86 | # This must be set when cvs_src_unpack is called. This can include |
|
|
87 | # several directory levels, i.e. "foo/bar/baz" |
|
|
88 | |
|
|
89 | #[ -z "$ECVS_MODULE" ] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
|
|
90 | |
|
|
91 | |
|
|
92 | # ECVS_BRANCH -- the name of the branch/tag to use |
|
|
93 | |
|
|
94 | # The default is "HEAD". The following default _will_ reset your |
|
|
95 | # branch checkout to head if used. |
|
|
96 | |
|
|
97 | #[ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
|
|
98 | |
|
|
99 | |
|
|
100 | # ECVS_AUTH -- authentication method to use |
|
|
101 | # |
|
|
102 | # Possible values are "pserver" and "ext". If `ext' authentication is |
|
|
103 | # used, the remote shell to use can be specified in CVS_RSH (SSH is |
|
|
104 | # used by default). Currently, the only supported remote shell for |
|
|
105 | # `ext' authentication is SSH. |
|
|
106 | # |
|
|
107 | # Armando Di Cianno <fafhrd@gentoo.org> 2004/09/27 |
|
|
108 | # - Added "no" as a server type, which uses no AUTH method, nor |
|
|
109 | # does it login |
|
|
110 | # e.g. |
|
|
111 | # "cvs -danoncvs@savannah.gnu.org:/cvsroot/backbone co System" |
|
|
112 | # ( from gnustep-apps/textedit ) |
|
|
113 | [ -z "$ECVS_AUTH" ] && ECVS_AUTH="pserver" |
|
|
114 | |
|
|
115 | # ECVS_USER -- Username to use for authentication on the remote server |
| 40 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
116 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
| 41 | |
117 | |
| 42 | # Password to use (NOT (YET) SUPPORTED, because cvs doesn't store passwords in plaintext in .cvspass) |
118 | # ECVS_PASS -- Password to use for authentication on the remote server |
| 43 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
119 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
| 44 | |
120 | |
| 45 | # Module to be fetched, must be set explicitly - |
|
|
| 46 | # I don't like the former ="$PN" default setting |
|
|
| 47 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
|
|
| 48 | |
121 | |
| 49 | # Subdirectory in module to be fetched, default is not defined = whole module |
122 | # ECVS_SSH_HOST_KEY |
| 50 | # DO NOT set default to "", if it's defined at all code will break! |
123 | # |
| 51 | # don't uncomment following line! |
124 | # If SSH is used for `ext' authentication, use this variable to |
| 52 | #[ -z "$ECVS_MODULE_SUBDIR" ] && ECVS_MODULE_SUBDIR="" |
125 | # specify the host key of the remote server. The format of the value |
|
|
126 | # should be the same format that is used for the SSH known hosts file. |
|
|
127 | # |
|
|
128 | # WARNING: If a SSH host key is not specified using this variable, the |
|
|
129 | # remote host key will not be verified. |
|
|
130 | |
|
|
131 | |
|
|
132 | # ECVS_CLEAN -- Set this to get a clean copy when updating (passes the |
|
|
133 | # -C option to cvs update) |
|
|
134 | |
|
|
135 | |
|
|
136 | # ECVS_RUNAS |
|
|
137 | # |
|
|
138 | # Specifies an alternate (non-root) user to use to run cvs. Currently |
|
|
139 | # b0rked and wouldn't work with portage userpriv anyway without |
|
|
140 | # special magic. |
|
|
141 | |
|
|
142 | # [ -z "$ECVS_RUNAS" ] && ECVS_RUNAS="`whoami`" |
|
|
143 | |
|
|
144 | |
|
|
145 | # ECVS_SUBDIR -- deprecated, do not use |
|
|
146 | [ -n "$ECVS_SUBDIR" ] && die "ERROR: deprecated ECVS_SUBDIR defined. Please fix this ebuild." |
|
|
147 | |
| 53 | |
148 | |
| 54 | # --- end ebuild-configurable settings --- |
149 | # --- end ebuild-configurable settings --- |
| 55 | |
150 | |
| 56 | # add cvs to deps |
151 | # add cvs to deps |
|
|
152 | # ssh is used for ext auth |
|
|
153 | # sudo is used to run as a specified user |
| 57 | DEPEND="$DEPEND dev-util/cvs" |
154 | DEPEND="dev-util/cvs" |
| 58 | |
155 | |
| 59 | # since we now longer have src_fetch as a redefinable ebuild function, |
156 | [ -n "$ECVS_RUNAS" ] && DEPEND="$DEPEND app-admin/sudo" |
| 60 | # we are forced to call this function from cvs_src_unpack |
157 | |
|
|
158 | if [ "$ECVS_AUTH" == "ext" ]; then |
|
|
159 | #default to ssh |
|
|
160 | [ -z "$CVS_RSH" ] && export CVS_RSH="ssh" |
|
|
161 | if [ "$CVS_RSH" != "ssh" ]; then |
|
|
162 | die "Support for ext auth with clients other than ssh has not been implemented yet" |
|
|
163 | fi |
|
|
164 | DEPEND="${DEPEND} net-misc/openssh" |
|
|
165 | fi |
|
|
166 | |
|
|
167 | # called from cvs_src_unpack |
| 61 | cvs_fetch() { |
168 | cvs_fetch() { |
| 62 | |
169 | |
|
|
170 | # Make these options local variables so that the global values are |
|
|
171 | # not affected by modifications in this function. |
|
|
172 | |
|
|
173 | local ECVS_COMMAND="${ECVS_COMMAND}" |
|
|
174 | local ECVS_UP_OPTS="${ECVS_UP_OPTS}" |
|
|
175 | local ECVS_CO_OPTS="${ECVS_CO_OPTS}" |
|
|
176 | |
|
|
177 | # Fix for sourceforge which doesnt want -z>3 anymore. |
|
|
178 | |
|
|
179 | (echo $ECVS_SERVER | grep -q sourceforge) \ |
|
|
180 | && [ "$ECVS_CVS_COMMAND" == "cvs -q -f -z4" ] \ |
|
|
181 | && ECVS_CVS_COMMAND="cvs -q -f -z3" |
|
|
182 | |
| 63 | debug-print-function $FUNCNAME $* |
183 | debug-print-function $FUNCNAME $* |
| 64 | |
184 | |
| 65 | debug-print "$FUNCNAME: init: |
185 | # Update variables that are modified by ebuild parameters, which |
| 66 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
186 | # should be effective every time cvs_fetch is called, and not just |
| 67 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
187 | # every time cvs.eclass is inherited |
| 68 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
|
|
| 69 | ECVS_SERVER=$ECVS_SERVER |
|
|
| 70 | ECVS_USER=$ECVS_USER |
|
|
| 71 | ECVS_PASS=$ECVS_PASS |
|
|
| 72 | ECS_MODULE=$ECVS_MODULE |
|
|
| 73 | ECVS_MODULE_SUBDIR=$ECVS_SUBDIR |
|
|
| 74 | ECVS_LOCAL=$ECVS_LOCAL |
|
|
| 75 | DIR=$DIR" |
|
|
| 76 | |
|
|
| 77 | # a shorthand |
|
|
| 78 | [ -n "$ECVS_SUBDIR" ] && DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" || \ |
|
|
| 79 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}" |
|
|
| 80 | |
188 | |
| 81 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
189 | # Handle parameter for local (non-recursive) fetching |
| 82 | |
|
|
| 83 | addread $DIR |
|
|
| 84 | |
|
|
| 85 | if [ "$ECVS_SERVER" == "offline" ]; then |
|
|
| 86 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
|
|
| 87 | if [ -d "$DIR" ]; then |
|
|
| 88 | debug-print "$FUNCNAME: offline mode, exiting" |
|
|
| 89 | return 0 |
|
|
| 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" |
|
|
| 93 | return 1 |
|
|
| 94 | fi |
|
|
| 95 | fi |
|
|
| 96 | |
190 | |
| 97 | # disable the sandbox for this dir |
191 | if [ -n "$ECVS_LOCAL" ]; then |
| 98 | |
192 | ECVS_UP_OPTS="$ECVS_UP_OPTS -l" |
| 99 | # not just $DIR because we want to create moduletopdir/CVS too |
193 | ECVS_CO_OPTS="$ECVS_CO_OPTS -l" |
| 100 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
|
|
| 101 | |
|
|
| 102 | if [ ! -d "$DIR" ]; then |
|
|
| 103 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
|
|
| 104 | einfo "Creating directory $DIR" |
|
|
| 105 | export SANDBOX_WRITE="$SANDBOX_WRITE:/foo:/" |
|
|
| 106 | mkdir -p /$DIR |
|
|
| 107 | export SANDBOX_WRITE=${SANDBOX_WRITE//:\/foo:\/} |
|
|
| 108 | fi |
194 | fi |
| 109 | |
195 | |
| 110 | # prepare a cvspass file just for this session so that cvs thinks we're logged |
196 | # Handle ECVS_BRANCH option |
| 111 | # in at the cvs server. we don't want to mess with ~/.cvspass. |
197 | # |
| 112 | echo ":pserver:${ECVS_SERVER} A" > ${T}/cvspass |
198 | # Because CVS auto-switches branches, we just have to pass the |
| 113 | export CVS_PASSFILE="${T}/cvspass" |
199 | # correct -rBRANCH option when updating. |
| 114 | #export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER} |
200 | |
| 115 | |
|
|
| 116 | # Note: cvs update and checkout commands are unified. |
|
|
| 117 | # we make sure a CVS/ dir exists in our module subdir with the right |
|
|
| 118 | # Root and Repository entries in it and cvs update. |
|
|
| 119 | |
|
|
| 120 | newserver=":pserver:anonymous@${ECVS_SERVER}" |
|
|
| 121 | |
|
|
| 122 | # CVS/Repository files can't (I think) contain two concatenated slashes |
|
|
| 123 | if [ -n "$ECVS_SUBDIR" ]; then |
201 | if [ -n "$ECVS_BRANCH" ]; then |
| 124 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
202 | ECVS_UP_OPTS="$ECVS_UP_OPTS -r$ECVS_BRANCH" |
|
|
203 | ECVS_CO_OPTS="$ECVS_CO_OPTS -r$ECVS_BRANCH" |
|
|
204 | fi |
|
|
205 | |
|
|
206 | # Handle ECVS_LOCALNAME, which specifies the local directory name |
|
|
207 | # to use. Note that the -d command option is not equivalent to |
|
|
208 | # the global -d option. |
|
|
209 | |
|
|
210 | if [ "$ECVS_LOCALNAME" != "$ECVS_MODULE" ]; then |
|
|
211 | ECVS_CO_OPTS="$ECVS_CO_OPTS -d $ECVS_LOCALNAME" |
|
|
212 | fi |
|
|
213 | |
|
|
214 | |
|
|
215 | if [ -n "$ECVS_CLEAN" ]; then |
|
|
216 | ECVS_UP_OPTS="$ECVS_UP_OPTS -C" |
|
|
217 | fi |
|
|
218 | |
|
|
219 | |
|
|
220 | # It would be easiest to always be in "run-as mode", logic-wise, |
|
|
221 | # if sudo didn't ask for a password even when sudo'ing to `whoami`. |
|
|
222 | |
|
|
223 | if [ -z "$ECVS_RUNAS" ]; then |
|
|
224 | run="" |
| 125 | else |
225 | else |
| 126 | repository="${ECVS_MODULE}" |
226 | run="sudo -u $ECVS_RUNAS" |
| 127 | fi |
227 | fi |
| 128 | |
|
|
| 129 | debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository" |
|
|
| 130 | |
228 | |
| 131 | cd $DIR |
229 | # Create the top dir if needed |
|
|
230 | |
| 132 | if [ ! -d "$DIR/CVS" ]; then |
231 | if [ ! -d "$ECVS_TOP_DIR" ]; then |
| 133 | # create a new CVS/ directory (checkout) |
232 | |
|
|
233 | # Note that the addwrite statements in this block are only |
|
|
234 | # there to allow creating ECVS_TOP_DIR; we allow writing |
|
|
235 | # inside it separately. |
|
|
236 | |
|
|
237 | # This is because it's simpler than trying to find out the |
|
|
238 | # parent path of the directory, which would need to be the |
|
|
239 | # real path and not a symlink for things to work (so we can't |
|
|
240 | # just remove the last path element in the string) |
|
|
241 | |
| 134 | debug-print "$FUNCNAME: creating new cvs directory" |
242 | debug-print "$FUNCNAME: checkout mode. creating cvs directory" |
| 135 | |
243 | addwrite /foobar |
| 136 | mkdir CVS |
244 | addwrite / |
| 137 | echo $newserver > CVS/Root |
245 | $run mkdir -p "/$ECVS_TOP_DIR" |
| 138 | echo $repository > CVS/Repository |
246 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
| 139 | touch CVS/Entries |
247 | fi |
| 140 | |
248 | |
| 141 | # if we're checking out a subdirectory only, create a CVS/ dir |
249 | # In case ECVS_TOP_DIR is a symlink to a dir, get the real path, |
| 142 | # in the module's top dir so that the user (and we) can cvs update |
250 | # otherwise addwrite() doesn't work. |
| 143 | # from there to get the full module. |
251 | |
|
|
252 | cd -P "$ECVS_TOP_DIR" > /dev/null |
|
|
253 | ECVS_TOP_DIR="`/bin/pwd`" |
|
|
254 | |
|
|
255 | # Disable the sandbox for this dir |
|
|
256 | addwrite "$ECVS_TOP_DIR" |
|
|
257 | |
|
|
258 | # Chown the directory and all of its contents |
|
|
259 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
260 | $run chown -R "$ECVS_RUNAS" "/$ECVS_TOP_DIR" |
|
|
261 | fi |
|
|
262 | |
|
|
263 | # Determine the CVS command mode (checkout or update) |
| 144 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then |
264 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_LOCALNAME/CVS" ]; then |
| 145 | debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir" |
265 | mode=checkout |
| 146 | cp -r CVS $ECVS_TOP_DIR/$ECVS_MODULE/ |
|
|
| 147 | echo $ECVS_MODULE > $ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository |
|
|
| 148 | fi |
|
|
| 149 | |
|
|
| 150 | else |
266 | else |
| 151 | #update existing module |
267 | mode=update |
| 152 | debug-print "$FUNCNAME: updating existing module/subdir" |
268 | fi |
| 153 | |
269 | |
|
|
270 | |
|
|
271 | # Our server string (i.e. CVSROOT) without the password so it can |
|
|
272 | # be put in Root |
|
|
273 | if [ "$ECVS_AUTH" == "no" ] |
|
|
274 | then |
|
|
275 | local server="${ECVS_USER}@${ECVS_SERVER}" |
|
|
276 | else |
|
|
277 | local connection="${ECVS_AUTH}" |
|
|
278 | [[ -n ${ECVS_PROXY} ]] && connection="${connection};proxy=${ECVS_PROXY}" |
|
|
279 | [[ -n ${ECVS_PROXY_PORT} ]] && connection="${connection};proxyport=${ECVS_PROXY_PORT}" |
|
|
280 | local server=":${connection}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
281 | fi |
|
|
282 | |
| 154 | # Switch servers if needed |
283 | # Switch servers automagically if needed |
| 155 | # cvs keeps the server info in the CVS/Root file in every checked-out dir; |
284 | if [ "$mode" == "update" ]; then |
| 156 | # we can fix those files to point to the new server |
285 | cd /$ECVS_TOP_DIR/$ECVS_LOCALNAME |
| 157 | oldserver="`cat CVS/Root`" |
286 | local oldserver="`$run cat CVS/Root`" |
| 158 | if [ "$newserver" != "$oldserver" ]; then |
287 | if [ "$server" != "$oldserver" ]; then |
| 159 | |
288 | |
| 160 | einfo "Changing CVS server from $oldserver to $newserver:" |
289 | einfo "Changing the CVS server from $oldserver to $server:" |
| 161 | debug-print "$FUNCNAME: Changing CVS server from $oldserver to $newserver:" |
290 | debug-print "$FUNCNAME: Changing the CVS server from $oldserver to $server:" |
| 162 | |
291 | |
| 163 | einfo "Searching for CVS dirs..." |
292 | einfo "Searching for CVS directories ..." |
| 164 | cvsdirs="`find . -iname CVS -print`" |
293 | local cvsdirs="`$run find . -iname CVS -print`" |
| 165 | debug-print "$FUNCNAME: CVS dirs found:" |
294 | debug-print "$FUNCNAME: CVS directories found:" |
| 166 | debug-print "$cvsdirs" |
295 | debug-print "$cvsdirs" |
| 167 | |
296 | |
| 168 | einfo "Modifying CVS dirs..." |
297 | einfo "Modifying CVS directories ..." |
| 169 | for x in $cvsdirs; do |
298 | for x in $cvsdirs; do |
| 170 | debug-print "In $x" |
299 | debug-print "In $x" |
| 171 | echo $newserver > $x/Root |
300 | $run echo "$server" > "$x/Root" |
| 172 | done |
301 | done |
| 173 | |
302 | |
| 174 | fi |
303 | fi |
|
|
304 | fi |
| 175 | |
305 | |
|
|
306 | # Prepare a cvspass file just for this session, we don't want to |
|
|
307 | # mess with ~/.cvspass |
|
|
308 | touch "${T}/cvspass" |
|
|
309 | export CVS_PASSFILE="${T}/cvspass" |
|
|
310 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
311 | chown "$ECVS_RUNAS" "${T}/cvspass" |
|
|
312 | fi |
|
|
313 | |
|
|
314 | # The server string with the password in it, for login |
|
|
315 | cvsroot_pass=":${ECVS_AUTH}:${ECVS_USER}:${ECVS_PASS}@${ECVS_SERVER}" |
|
|
316 | |
|
|
317 | # Ditto without the password, for checkout/update after login, so |
|
|
318 | # that the CVS/Root files don't contain the password in plaintext |
|
|
319 | if [ "$ECVS_AUTH" == "no" ] |
|
|
320 | then |
|
|
321 | cvsroot_nopass="${ECVS_USER}@${ECVS_SERVER}" |
|
|
322 | else |
|
|
323 | cvsroot_nopass=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | # Commands to run |
|
|
327 | cmdlogin="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_pass}\" login" |
|
|
328 | cmdupdate="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\" update ${ECVS_UP_OPTS} ${ECVS_LOCALNAME}" |
|
|
329 | cmdcheckout="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\" checkout ${ECVS_CO_OPTS} ${ECVS_MODULE}" |
|
|
330 | |
|
|
331 | # Execute commands |
|
|
332 | |
|
|
333 | cd "${ECVS_TOP_DIR}" |
|
|
334 | if [ "${ECVS_AUTH}" == "pserver" ]; then |
|
|
335 | einfo "Running $cmdlogin" |
|
|
336 | eval $cmdlogin || die "cvs login command failed" |
|
|
337 | if [ "${mode}" == "update" ]; then |
|
|
338 | einfo "Running $cmdupdate" |
|
|
339 | eval $cmdupdate || die "cvs update command failed" |
|
|
340 | elif [ "${mode}" == "checkout" ]; then |
|
|
341 | einfo "Running $cmdcheckout" |
|
|
342 | eval $cmdcheckout|| die "cvs checkout command failed" |
| 176 | fi |
343 | fi |
|
|
344 | elif [ "${ECVS_AUTH}" == "ext" ] || [ "${ECVS_AUTH}" == "no" ]; then |
| 177 | |
345 | |
| 178 | # finally run the cvs update command |
346 | # Hack to support SSH password authentication |
| 179 | debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR" |
347 | |
| 180 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
348 | # Backup environment variable values |
| 181 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
349 | local CVS_ECLASS_ORIG_CVS_RSH="${CVS_RSH}" |
|
|
350 | |
|
|
351 | if [ "${SSH_ASKPASS+set}" == "set" ]; then |
|
|
352 | local CVS_ECLASS_ORIG_SSH_ASKPASS="${SSH_ASKPASS}" |
|
|
353 | else |
|
|
354 | unset CVS_ECLASS_ORIG_SSH_ASKPASS |
|
|
355 | fi |
|
|
356 | |
|
|
357 | if [ "${DISPLAY+set}" == "set" ]; then |
|
|
358 | local CVS_ECLASS_ORIG_DISPLAY="${DISPLAY}" |
|
|
359 | else |
|
|
360 | unset CVS_ECLASS_ORIG_DISPLAY |
|
|
361 | fi |
|
|
362 | |
|
|
363 | if [ "${CVS_RSH}" == "ssh" ]; then |
|
|
364 | |
|
|
365 | # Force SSH to use SSH_ASKPASS by creating python wrapper |
|
|
366 | |
|
|
367 | export CVS_RSH="${T}/cvs_sshwrapper" |
|
|
368 | cat > "${CVS_RSH}"<<EOF |
|
|
369 | #!/usr/bin/python |
|
|
370 | import fcntl |
|
|
371 | import os |
|
|
372 | import sys |
|
|
373 | try: |
|
|
374 | fd = os.open('/dev/tty', 2) |
|
|
375 | TIOCNOTTY=0x5422 |
|
|
376 | try: |
|
|
377 | fcntl.ioctl(fd, TIOCNOTTY) |
|
|
378 | except: |
|
|
379 | pass |
|
|
380 | os.close(fd) |
|
|
381 | except: |
|
|
382 | pass |
|
|
383 | newarglist = sys.argv[:] |
|
|
384 | EOF |
|
|
385 | |
|
|
386 | # disable X11 forwarding which causes .xauth access violations |
|
|
387 | # - 20041205 Armando Di Cianno <fafhrd@gentoo.org> |
|
|
388 | echo "newarglist.insert(1, '-oClearAllForwardings=yes')" \ |
|
|
389 | >> "${CVS_RSH}" |
|
|
390 | echo "newarglist.insert(1, '-oForwardX11=no')" \ |
|
|
391 | >> "${CVS_RSH}" |
|
|
392 | |
|
|
393 | # Handle SSH host key checking |
|
|
394 | |
|
|
395 | local CVS_ECLASS_KNOWN_HOSTS="${T}/cvs_ssh_known_hosts" |
|
|
396 | echo "newarglist.insert(1, '-oUserKnownHostsFile=${CVS_ECLASS_KNOWN_HOSTS}')" \ |
|
|
397 | >> "${CVS_RSH}" |
|
|
398 | |
|
|
399 | if [ -z "${ECVS_SSH_HOST_KEY}" ]; then |
|
|
400 | ewarn "Warning: The SSH host key of the remote server will not be verified." |
|
|
401 | einfo "A temporary known hosts list will be used." |
|
|
402 | local CVS_ECLASS_STRICT_HOST_CHECKING="no" |
|
|
403 | touch "${CVS_ECLASS_KNOWN_HOSTS}" |
|
|
404 | else |
|
|
405 | local CVS_ECLASS_STRICT_HOST_CHECKING="yes" |
|
|
406 | echo "${ECVS_SSH_HOST_KEY}" > "${CVS_ECLASS_KNOWN_HOSTS}" |
|
|
407 | fi |
|
|
408 | |
|
|
409 | echo -n "newarglist.insert(1, '-oStrictHostKeyChecking=" \ |
|
|
410 | >> "${CVS_RSH}" |
|
|
411 | echo "${CVS_ECLASS_STRICT_HOST_CHECKING}')" \ |
|
|
412 | >> "${CVS_RSH}" |
|
|
413 | echo "os.execv('/usr/bin/ssh', newarglist)" \ |
|
|
414 | >> "${CVS_RSH}" |
|
|
415 | |
|
|
416 | chmod a+x "${CVS_RSH}" |
|
|
417 | |
|
|
418 | # Make sure DISPLAY is set (SSH will not use SSH_ASKPASS |
|
|
419 | # if DISPLAY is not set) |
|
|
420 | |
|
|
421 | [ -z "${DISPLAY}" ] && DISPLAY="DISPLAY" |
|
|
422 | export DISPLAY |
|
|
423 | |
|
|
424 | # Create a dummy executable to echo $ECVS_PASS |
|
|
425 | |
|
|
426 | export SSH_ASKPASS="${T}/cvs_sshechopass" |
|
|
427 | if [ "${ECVS_AUTH}" != "no" ]; then |
|
|
428 | echo -en "#!/bin/bash\necho \"$ECVS_PASS\"\n" \ |
|
|
429 | > "${SSH_ASKPASS}" |
|
|
430 | else |
|
|
431 | echo -en "#!/bin/bash\nreturn\n" \ |
|
|
432 | > "${SSH_ASKPASS}" |
|
|
433 | |
|
|
434 | fi |
|
|
435 | chmod a+x "${SSH_ASKPASS}" |
|
|
436 | fi |
|
|
437 | |
|
|
438 | if [ "${mode}" == "update" ]; then |
|
|
439 | einfo "Running $cmdupdate" |
|
|
440 | eval $cmdupdate || die "cvs update command failed" |
|
|
441 | elif [ "${mode}" == "checkout" ]; then |
|
|
442 | einfo "Running $cmdcheckout" |
|
|
443 | eval $cmdcheckout|| die "cvs checkout command failed" |
|
|
444 | fi |
|
|
445 | |
|
|
446 | # Restore environment variable values |
|
|
447 | export CVS_RSH="${CVS_ECLASS_ORIG_CVS_RSH}" |
|
|
448 | if [ "${CVS_ECLASS_ORIG_SSH_ASKPASS+set}" == "set" ]; then |
|
|
449 | export SSH_ASKPASS="${CVS_ECLASS_ORIG_SSH_ASKPASS}" |
|
|
450 | else |
|
|
451 | unset SSH_ASKPASS |
|
|
452 | fi |
|
|
453 | |
|
|
454 | if [ "${CVS_ECLASS_ORIG_DISPLAY+set}" == "set" ]; then |
|
|
455 | export DISPLAY="${CVS_ECLASS_ORIG_DISPLAY}" |
|
|
456 | else |
|
|
457 | unset DISPLAY |
|
|
458 | fi |
|
|
459 | fi |
|
|
460 | |
|
|
461 | # Restore ownership. Not sure why this is needed, but someone |
|
|
462 | # added it in the orig ECVS_RUNAS stuff. |
|
|
463 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
464 | chown `whoami` "${T}/cvspass" |
|
|
465 | fi |
| 182 | |
466 | |
| 183 | } |
467 | } |
| 184 | |
468 | |
|
|
469 | |
| 185 | cvs_src_unpack() { |
470 | cvs_src_unpack() { |
| 186 | |
471 | |
| 187 | debug-print-function $FUNCNAME $* |
472 | debug-print-function $FUNCNAME $* |
| 188 | cvs_fetch || die "died running cvs_fetch" |
|
|
| 189 | |
473 | |
|
|
474 | debug-print "$FUNCNAME: init: |
|
|
475 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
|
|
476 | ECVS_UP_OPTS=$ECVS_UP_OPTS |
|
|
477 | ECVS_CO_OPTS=$ECVS_CO_OPTS |
|
|
478 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
|
|
479 | ECVS_SERVER=$ECVS_SERVER |
|
|
480 | ECVS_USER=$ECVS_USER |
|
|
481 | ECVS_PASS=$ECVS_PASS |
|
|
482 | ECVS_MODULE=$ECVS_MODULE |
|
|
483 | ECVS_LOCAL=$ECVS_LOCAL |
|
|
484 | ECVS_RUNAS=$ECVS_RUNAS |
|
|
485 | ECVS_LOCALNAME=$ECVS_LOCALNAME" |
|
|
486 | |
|
|
487 | [ -z "$ECVS_MODULE" ] && die "ERROR: CVS module not set, cannot continue." |
|
|
488 | |
|
|
489 | local ECVS_LOCALNAME="${ECVS_LOCALNAME}" |
|
|
490 | |
|
|
491 | if [ -z "$ECVS_LOCALNAME" ]; then |
|
|
492 | ECVS_LOCALNAME="$ECVS_MODULE" |
|
|
493 | fi |
|
|
494 | |
|
|
495 | local offline_pkg_var="ECVS_OFFLINE_${PN}" |
|
|
496 | if [ "${!offline_pkg_var}" == "1" -o "$ECVS_OFFLINE" == "1" -o "$ECVS_SERVER" == "offline" ]; then |
|
|
497 | # We're not required to fetch anything; the module already |
|
|
498 | # exists and shouldn't be updated. |
|
|
499 | if [ -d "${ECVS_TOP_DIR}/${ECVS_LOCALNAME}" ]; then |
|
|
500 | debug-print "$FUNCNAME: offline mode" |
|
|
501 | else |
|
|
502 | debug-print "$FUNCNAME: Offline mode specified but directory ${ECVS_TOP_DIR}/${ECVS_LOCALNAME} not found, exiting with error" |
|
|
503 | die "ERROR: Offline mode specified, but directory ${ECVS_TOP_DIR}/${ECVS_LOCALNAME} not found. Aborting." |
|
|
504 | fi |
|
|
505 | elif [ -n "$ECVS_SERVER" ]; then # ECVS_SERVER!=offline --> real fetching mode |
|
|
506 | einfo "Fetching CVS module $ECVS_MODULE into $ECVS_TOP_DIR ..." |
|
|
507 | cvs_fetch |
|
|
508 | else # ECVS_SERVER not set |
|
|
509 | die "ERROR: CVS server not specified, cannot continue." |
|
|
510 | fi |
|
|
511 | |
| 190 | einfo "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
512 | einfo "Copying $ECVS_MODULE from $ECVS_TOP_DIR ..." |
| 191 | debug-print "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..." |
513 | debug-print "Copying module $ECVS_MODULE local_mode=$ECVS_LOCAL from $ECVS_TOP_DIR ..." |
| 192 | |
514 | |
|
|
515 | # This is probably redundant, but best to make sure. |
|
|
516 | mkdir -p "$WORKDIR/$ECVS_LOCALNAME" |
|
|
517 | |
| 193 | if [ -n "$ECVS_SUBDIR" ]; then |
518 | if [ -n "$ECVS_LOCAL" ]; then |
| 194 | mkdir -p $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR |
519 | cp -f "$ECVS_TOP_DIR/$ECVS_LOCALNAME"/* "$WORKDIR/$ECVS_LOCALNAME" |
| 195 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR/* $WORKDIR/$ECVS_MODULE/$ECVS_SUBDIR/ |
|
|
| 196 | else |
520 | else |
| 197 | if [ -n "$ECVS_LOCAL" ]; then |
521 | cp -Rf "$ECVS_TOP_DIR/$ECVS_LOCALNAME" "$WORKDIR/$ECVS_LOCALNAME/.." |
| 198 | cp -f $ECVS_TOP_DIR/$ECVS_MODULE/* $WORKDIR/$ECVS_MODULE |
|
|
| 199 | else |
|
|
| 200 | cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE $WORKDIR |
|
|
| 201 | fi |
522 | fi |
| 202 | fi |
523 | |
| 203 | |
|
|
| 204 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
524 | # If the directory is empty, remove it; empty directories cannot |
| 205 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
525 | # exist in cvs. This happens when, for example, kde-source |
|
|
526 | # requests module/doc/subdir which doesn't exist. Still create |
| 206 | # still create the empty directory in workdir though. |
527 | # the empty directory in workdir though. |
| 207 | if [ "`ls -A $DIR`" == "CVS" ]; then |
528 | if [ "`ls -A \"${ECVS_TOP_DIR}/${ECVS_LOCALNAME}\"`" == "CVS" ]; then |
| 208 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
529 | debug-print "$FUNCNAME: removing empty CVS directory $ECVS_LOCALNAME" |
| 209 | rm -rf $DIR |
530 | rm -rf "${ECVS_TOP_DIR}/${ECVS_LOCALNAME}" |
| 210 | fi |
531 | fi |
| 211 | |
532 | |
| 212 | # implement some of base_src_unpack's functionality; |
533 | # Implement some of base_src_unpack's functionality; note however |
| 213 | # note however that base.eclass may not have been inherited! |
534 | # that base.eclass may not have been inherited! |
| 214 | if [ -n "$PATCHES" ]; then |
535 | if [ -n "$PATCHES" ]; then |
| 215 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
536 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
| 216 | cd $S |
537 | cd "$S" |
| 217 | for x in $PATCHES; do |
538 | epatch ${PATCHES} |
| 218 | debug-print "patching from $x" |
|
|
| 219 | patch -p0 < $x |
|
|
| 220 | done |
|
|
| 221 | # make sure we don't try to apply patches more than once, since |
539 | # Make sure we don't try to apply patches more than once, |
| 222 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
540 | # since cvs_src_unpack is usually called several times from |
|
|
541 | # e.g. kde-source_src_unpack |
| 223 | export PATCHES="" |
542 | export PATCHES="" |
| 224 | fi |
543 | fi |
| 225 | |
544 | |
|
|
545 | einfo "CVS module ${ECVS_MODULE} is now in ${WORKDIR}" |
| 226 | } |
546 | } |
| 227 | |
547 | |
| 228 | EXPORT_FUNCTIONS src_unpack |
548 | EXPORT_FUNCTIONS src_unpack |
| 229 | |
|
|
| 230 | |
|
|