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