| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.46 2003/08/07 02:58:18 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # 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. |
| 8 | |
11 | |
| 9 | ECLASS=cvs |
12 | ECLASS=cvs |
| 10 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 11 | |
14 | |
| 12 | # 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 |
| … | |
… | |
| 18 | # 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 |
| 19 | # 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 |
| 20 | # the ~/.cvsrc config file and to use maximum compression. |
23 | # the ~/.cvsrc config file and to use maximum compression. |
| 21 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
24 | [ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -q -f -z4" |
| 22 | |
25 | |
| 23 | # cvs options given after the command (i.e. cvs update foo) |
26 | # cvs options given after the cvs command (update or checkout) |
| 24 | # 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" |
| 25 | [ -z "$ECVS_CVS_OPTIONS" ] && ECVS_CVS_OPTIONS="-dP" |
29 | [ -z "$ECVS_CO_OPTS" ] && ECVS_CO_OPTS="" |
| 26 | |
30 | |
| 27 | # 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 |
| 28 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
32 | |
|
|
33 | # local name of module. useful if the module on the server is called |
|
|
34 | # something common like 'driver' or is nested deep in a tree, and you don't |
|
|
35 | # like useless empty directories. |
|
|
36 | # WARNING: to be set only from within ebuilds! if set in your shell or some such, |
|
|
37 | # things wil break because the ebuild won't expect it and have e.g. a wrong $S setting. |
|
|
38 | # ECVS_LOCALNAME |
| 29 | |
39 | |
| 30 | # Where the cvs modules are stored/accessed |
40 | # Where the cvs modules are stored/accessed |
| 31 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
41 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
| 32 | |
42 | |
| 33 | # Name of cvs server, set to "offline" to disable fetching |
43 | # Name of cvs server, set to "offline" to disable fetching |
| 34 | # (i.e. to assume module is checked out already and don't update it). |
44 | # (i.e. to assume module is checked out already and don't update it). |
| 35 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
45 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
| 36 | # parts of the full CVSROOT (which looks like |
46 | # parts of the full CVSROOT (which looks like |
| 37 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
47 | # ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from |
| 38 | # other settings |
48 | # other settings |
|
|
49 | # the special value 'offline' disables fetching, assumes sources are alread in ECVS_TOP_DIR |
| 39 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
50 | [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" |
| 40 | |
51 | |
| 41 | # Anonymous cvs login? |
|
|
| 42 | # if 'yes' uses :pserver: with empty password, if 'no' uses :ext: with $ECVS_PASS, other values not allowed |
|
|
| 43 | [ -z "$ECVS_ANON" ] && ECVS_ANON="yes" |
|
|
| 44 | |
|
|
| 45 | # Authentication method to use on ECVS_ANON="no" - possible values are "pserver" and "ext" |
52 | # Authentication method to use - possible values are "pserver" and "ext" |
|
|
53 | # WARNING ext is NOT supported! (never was, despite what earlier version of this file said) |
| 46 | [ -z "$ECVS_AUTH" ] && ECVS_AUTH="ext" |
54 | [ -z "$ECVS_AUTH" ] && ECVS_AUTH="pserver" |
|
|
55 | [ "$ECVS_AUTH" == ext ] && die "ERROR: ext auth not supported. If you want it, please contact danarmak@gentoo.org." |
| 47 | |
56 | |
| 48 | # Use su to run cvs as user |
57 | # Use su to run cvs as user |
|
|
58 | # Currently b0rked and wouldn't work with portage userpriv anyway without special magic |
| 49 | [ -z "$ECVS_RUNAS" ] && ECVS_RUNAS="`whoami`" |
59 | # [ -z "$ECVS_RUNAS" ] && ECVS_RUNAS="`whoami`" |
| 50 | |
60 | |
| 51 | # Username to use |
61 | # Username to give to the server |
| 52 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
62 | [ -z "$ECVS_USER" ] && ECVS_USER="anonymous" |
| 53 | |
63 | |
| 54 | # Password to use if anonymous login is off |
64 | # Password to use |
| 55 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
65 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
| 56 | |
66 | |
| 57 | # Module to be fetched, must be set explicitly - |
67 | # Module to be fetched, must be set when kde_src_unpack is called |
| 58 | # I don't like the former ="$PN" default setting |
68 | # can include several directory levels, ie foo/bar/baz |
| 59 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
69 | #[ -z "$ECVS_MODULE" ] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
| 60 | |
70 | |
| 61 | # Branch/tag to use, default is HEAD |
71 | # Branch/tag to use, default is HEAD |
| 62 | # uncomment the following line to enable the reset-branch-to-HEAD behaviour |
72 | # the following default _will_ reset your branch checkout to head if used |
| 63 | [ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
73 | #[ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
| 64 | |
74 | |
| 65 | # Subdirectory in module to be fetched, default is not defined = whole module |
75 | # deprecated - do not use |
| 66 | # DO NOT set default to "", if it's defined at all code will break! |
76 | [ -n "$ECVS_SUBDIR" ] && die "ERROR: deprecated ECVS_SUBDIR defined. Please fix this ebuild." |
| 67 | # don't uncomment following line! |
|
|
| 68 | #[ -z "$ECVS_SUBDIR" ] && ECVS_SUBDIR="" |
|
|
| 69 | |
77 | |
| 70 | # --- end ebuild-configurable settings --- |
78 | # --- end ebuild-configurable settings --- |
| 71 | |
79 | |
| 72 | # add cvs to deps |
80 | # add cvs to deps |
| 73 | DEPEND="$DEPEND dev-util/cvs dev-python/pexpect" |
81 | # ssh is used for ext auth |
|
|
82 | # sudo is used to run as a specified user |
|
|
83 | DEPEND="$DEPEND dev-util/cvs app-admin/sudo" |
|
|
84 | #[ "$ECVS_AUTH" == "ext" ] && DEPEND="$DEPEND net-misc/openssh" |
| 74 | |
85 | |
| 75 | # since we now longer have src_fetch as a redefinable ebuild function, |
86 | # calls cvs_contorl, is called from cvs_src_unpack |
| 76 | # we are forced to call this function from cvs_src_unpack |
|
|
| 77 | cvs_fetch() { |
87 | cvs_fetch() { |
| 78 | |
88 | |
|
|
89 | # fix for sourceforge which doesnt want -z>3 anymore. |
|
|
90 | |
|
|
91 | (echo $ECVS_SERVER | grep sourceforge) && [ "$ECVS_CVS_COMMAND" == "cvs -q -f -z4" ] && ECVS_CVS_COMMAND="cvs -q -f -z3" |
|
|
92 | |
| 79 | debug-print-function $FUNCNAME $* |
93 | debug-print-function $FUNCNAME $* |
| 80 | |
94 | |
| 81 | debug-print "$FUNCNAME: init: |
95 | # parameters modifying other parameters that should be effective every time cvs_fetch is called, |
| 82 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
96 | # and not just every time cvs.eclas is inherited |
| 83 | ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS |
97 | # 1. parameter for local (non-recursive) fetching |
| 84 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
98 | if [ -n "$ECVS_LOCAL" ]; then |
| 85 | ECVS_SERVER=$ECVS_SERVER |
99 | ECVS_UP_OPTS="$ECVS_UP_OPTS -l" |
| 86 | ECVS_ANON=$ECVS_ANON |
100 | ECVS_CO_OPTS="$ECVS_CO_OPTS -l" |
| 87 | ECVS_USER=$ECVS_USER |
101 | fi |
| 88 | ECVS_PASS=$ECVS_PASS |
102 | # 2. cvs auto-switches branches, we just have to pass the correct -rBRANCH option to it when updating. |
| 89 | ECS_MODULE=$ECVS_MODULE |
103 | # doing it this way we get multiple -rX options - harmless afaik |
| 90 | ECVS_SUBDIR=$ECVS_SUBDIR |
104 | if [ -n "$ECVS_BRANCH" ]; then |
| 91 | ECVS_LOCAL=$ECVS_LOCAL |
105 | ECVS_UP_OPTS="$ECVS_UP_OPTS -r$ECVS_BRANCH" |
| 92 | DIR=$DIR" |
106 | ECVS_CO_OPTS="$ECVS_CO_OPTS -r$ECVS_BRANCH" |
|
|
107 | fi |
| 93 | |
108 | |
| 94 | # a shorthand |
109 | if [ "$ECVS_LOCALNAME" != "$ECVS_MODULE" ]; then |
| 95 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
110 | # the option to cvs on which this is based. note this isn't the same as the |
| 96 | debug-print "$FUNCNAME: now DIR=$DIR" |
111 | # global -d option to cvs, which specifies the cvs server. ugh @ cvs syntax. |
|
|
112 | ECVS_CO_OPTS="$ECVS_CO_OPTS -d $ECVS_LOCALNAME" |
|
|
113 | fi |
| 97 | |
114 | |
| 98 | if [ "$ECVS_SERVER" == "offline" ]; then |
115 | # it's easiest to always be in "run-as mode", logic-wise |
| 99 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
116 | # or would be if sudo didn't ask for a password even when sudo'ing to `whoami` |
| 100 | if [ -d "$DIR" ]; then |
117 | if [ -z "$ECVS_RUNAS" ]; then |
| 101 | debug-print "$FUNCNAME: offline mode, exiting" |
118 | run="" |
| 102 | return 0 |
|
|
| 103 | else |
119 | else |
| 104 | einfo "ERROR: Offline mode specified, but module/subdir not found. Aborting." |
120 | 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 |
121 | fi |
| 108 | fi |
|
|
| 109 | |
122 | |
| 110 | # create target directory as needed |
123 | # create the top dir if needed |
| 111 | if [ ! -d "$DIR" ]; then |
124 | if [ ! -d "$ECVS_TOP_DIR" ]; then |
|
|
125 | # note that the addwrite statements in this block are only there to allow creating ECVS_TOP_DIR; |
|
|
126 | # we've already allowed writing inside it |
|
|
127 | # this is because it's simpler than trying to find out the parent path of the directory, which |
|
|
128 | # would need to be the real path and not a symlink for things to work (so we can't just remove |
|
|
129 | # the last path element in the string) |
| 112 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
130 | debug-print "$FUNCNAME: checkout mode. creating cvs directory" |
| 113 | #export SANDBOX_WRITE="$SANDBOX_WRITE:/foobar:/" |
|
|
| 114 | addwrite /foobar |
131 | addwrite /foobar |
| 115 | addwrite / |
132 | addwrite / |
| 116 | mkdir -p "/$DIR" |
133 | $run mkdir -p "/$ECVS_TOP_DIR" |
| 117 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
134 | export SANDBOX_WRITE="${SANDBOX_WRITE//:\/foobar:\/}" |
| 118 | fi |
135 | fi |
| 119 | |
136 | |
| 120 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
137 | # in case ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
| 121 | # otherwise addwrite() doesn't work. |
138 | # otherwise addwrite() doesn't work. |
| 122 | cd -P "$ECVS_TOP_DIR" > /dev/null |
139 | cd -P "$ECVS_TOP_DIR" > /dev/null |
| 123 | ECVS_TOP_DIR="`/bin/pwd`" |
140 | ECVS_TOP_DIR="`/bin/pwd`" |
| 124 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" |
141 | |
| 125 | cd "$OLDPWD" |
142 | # determine checkout or update mode |
| 126 | |
143 | if [ ! -d "$ECVS_TOP_DIR/$ECVS_LOCALNAME/CVS" ]; then |
| 127 | debug-print "$FUNCNAME: now DIR=$DIR" |
144 | mode=checkout |
| 128 | |
145 | else |
|
|
146 | mode=update |
|
|
147 | fi |
|
|
148 | |
| 129 | # disable the sandbox for this dir |
149 | # 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" |
150 | addwrite "$ECVS_TOP_DIR" |
| 132 | |
151 | |
| 133 | # add option for local (non-recursive) fetching |
152 | # chowning the directory and all contents |
| 134 | [ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
153 | if [ -n "$ECVS_RUNAS" ]; then |
| 135 | |
154 | $run chown -R "$ECVS_RUNAS" "/$ECVS_TOP_DIR" |
| 136 | # prepare a cvspass file just for this session so that cvs thinks we're logged |
155 | fi |
| 137 | # in at the cvs server. we don't want to mess with ~/.cvspass. |
156 | |
| 138 | echo ":pserver:${ECVS_SERVER} A" > "${T}/cvspass" |
157 | # our server string (aka CVSROOT), without the password so it can be put in Root |
| 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}" |
158 | server=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
| 150 | |
159 | |
| 151 | |
|
|
| 152 | # CVS/Repository files can't (I think) contain two concatenated slashes |
|
|
| 153 | if [ -n "$ECVS_SUBDIR" ]; then |
|
|
| 154 | repository="${ECVS_MODULE}/${ECVS_SUBDIR}" |
|
|
| 155 | else |
|
|
| 156 | repository="${ECVS_MODULE}" |
|
|
| 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 |
|
|
| 180 | |
|
|
| 181 | else |
|
|
| 182 | #update existing module |
|
|
| 183 | debug-print "$FUNCNAME: updating existing module/subdir" |
|
|
| 184 | |
|
|
| 185 | # Switch servers if needed |
160 | # switch servers automagically if needed |
| 186 | # cvs keeps the server info in the CVS/Root file in every checked-out dir; |
161 | if [ "$mode" == "update" ]; then |
| 187 | # we can fix those files to point to the new server |
162 | cd /$ECVS_TOP_DIR/$ECVS_LOCALNAME |
| 188 | oldserver="`cat CVS/Root`" |
163 | oldserver="`$run cat CVS/Root`" |
| 189 | if [ "$newserver" != "$oldserver" ]; then |
164 | if [ "$server" != "$oldserver" ]; then |
| 190 | |
|
|
| 191 | einfo "Changing CVS server from $oldserver to $newserver:" |
165 | einfo "Changing CVS server from $oldserver to $server:" |
| 192 | debug-print "$FUNCNAME: Changing CVS server from $oldserver to $newserver:" |
166 | debug-print "$FUNCNAME: Changing CVS server from $oldserver to $server:" |
| 193 | |
167 | |
| 194 | einfo "Searching for CVS dirs..." |
168 | einfo "Searching for CVS dirs ..." |
| 195 | cvsdirs="`find . -iname CVS -print`" |
169 | cvsdirs="`$run find . -iname CVS -print`" |
| 196 | debug-print "$FUNCNAME: CVS dirs found:" |
170 | debug-print "$FUNCNAME: CVS dirs found:" |
| 197 | debug-print "$cvsdirs" |
171 | debug-print "$cvsdirs" |
| 198 | |
172 | |
| 199 | einfo "Modifying CVS dirs..." |
173 | einfo "Modifying CVS dirs ..." |
| 200 | for x in $cvsdirs; do |
174 | for x in $cvsdirs; do |
| 201 | debug-print "In $x" |
175 | debug-print "In $x" |
| 202 | echo $newserver > "$x/Root" |
176 | $run echo "$server" > "$x/Root" |
| 203 | done |
177 | done |
| 204 | |
|
|
| 205 | fi |
178 | fi |
|
|
179 | fi |
| 206 | |
180 | |
|
|
181 | # prepare a cvspass file just for this session, we don't want to mess with ~/.cvspass |
|
|
182 | touch "${T}/cvspass" |
|
|
183 | export CVS_PASSFILE="${T}/cvspass" |
|
|
184 | if [ -n "$ECVS_RUNAS" ]; then |
|
|
185 | chown "$ECVS_RUNAS" "${T}/cvspass" |
|
|
186 | fi |
|
|
187 | |
|
|
188 | # the server string with the password in it, for login |
|
|
189 | cvsroot_pass=":${ECVS_AUTH}:${ECVS_USER}:${ECVS_PASS}@${ECVS_SERVER}" |
|
|
190 | # ditto without the password, for checkout/update after login, so that |
|
|
191 | # the CVS/Root files don't contain the password in plaintext |
|
|
192 | cvsroot_nopass=":${ECVS_AUTH}:${ECVS_USER}@${ECVS_SERVER}" |
|
|
193 | |
|
|
194 | # commands to run |
|
|
195 | cmdlogin="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_pass}\"" |
|
|
196 | cmdlogin_opts="login" |
|
|
197 | cmdupdate="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\"" |
|
|
198 | cmdupdate_opts="update ${ECVS_UP_OPTS} ${ECVS_LOCALNAME}" |
|
|
199 | cmdcheckout="${run} ${ECVS_CVS_COMMAND} -d \"${cvsroot_nopass}\"" |
|
|
200 | cmdcheckout_opts="checkout ${ECVS_CO_OPTS} ${ECVS_MODULE}" |
|
|
201 | |
|
|
202 | cd "${ECVS_TOP_DIR}" |
|
|
203 | if [ "${ECVS_AUTH}" == "pserver" ]; then |
|
|
204 | debug-print "$FUNCNAME: logging into cvs ${cmdlogin} ${cmdlogin_opts}" |
|
|
205 | einfo "Logging in: ${cmdlogin}" |
|
|
206 | eval ${cmdlogin} ${cmdlogin_opts} >/dev/null || die "cvs login command failed" |
|
|
207 | if [ "${mode}" == "update" ]; then |
|
|
208 | debug-print "$FUNCNAME: updating cvs tree ${cmdupdate} ${cmdupdate_opts}" |
|
|
209 | einfo "Updating existing source tree: ${cmdupdate_opts}" |
|
|
210 | eval ${cmdupdate} ${cmdupdate_opts} || die "cvs update command failed" |
|
|
211 | elif [ "${mode}" == "checkout" ]; then |
|
|
212 | debug-print "$FUNCNAME: checking out from cvs tree ${cmdcheckout} ${cmdcheckout_opts}" |
|
|
213 | einfo "Checking out source tree (${cmdcheckout_opts})" |
|
|
214 | eval ${cmdcheckout} ${cmdcheckout_opts} || die "cvs checkout command failed" |
| 207 | fi |
215 | fi |
|
|
216 | # elif [ "${ECVS_AUTH}" == "ext" ]; then |
|
|
217 | # # for ext there's also a possible ssh prompt, code not yet written |
|
|
218 | # echo "${ECVS_DELAY} continue connecting&yes" >> "$instruct" |
|
|
219 | # echo "${ECVS_DELAY} CVS password:&${ECVS_PASS}" >> "$instruct" |
|
|
220 | # if [ "$mode" == "update" ]; then |
|
|
221 | # expect "$cvsout" "$instruct" | $cmdupdate > "$cvsout" |
|
|
222 | # elif [ "$mode" == "checkout" ]; then |
|
|
223 | # expect "$cvsout" "$instruct" | $cmdcheckout > "$cvsout" |
|
|
224 | # fi |
|
|
225 | fi |
| 208 | |
226 | |
| 209 | # cvs auto-switches branches, how nice |
227 | # restore ownership. not sure why this is needed, but someone added it in the orig ECVS_RUNAS stuff. |
| 210 | # warning: if we do it this way we get multiple -rX options - harmless i think |
228 | if [ -n "$ECVS_RUNAS" ]; then |
| 211 | [ -n "$ECVS_BRANCH" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -r$ECVS_BRANCH" |
229 | chown `whoami` "${T}/cvspass" |
|
|
230 | fi |
|
|
231 | } |
| 212 | |
232 | |
| 213 | # Chowning the directory |
233 | |
| 214 | if [ "${ECVS_RUNAS}" != "`whoami`" ]; then |
234 | cvs_src_unpack() { |
| 215 | chown -R "$ECVS_RUNAS" "/$DIR" |
235 | debug-print-function $FUNCNAME $* |
|
|
236 | |
|
|
237 | debug-print "$FUNCNAME: init: |
|
|
238 | ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND |
|
|
239 | ECVS_UP_OPTS=$ECVS_UP_OPTS |
|
|
240 | ECVS_CO_OPTS=$ECVS_CO_OPTS |
|
|
241 | ECVS_TOP_DIR=$ECVS_TOP_DIR |
|
|
242 | ECVS_SERVER=$ECVS_SERVER |
|
|
243 | ECVS_USER=$ECVS_USER |
|
|
244 | ECVS_PASS=$ECVS_PASS |
|
|
245 | ECVS_MODULE=$ECVS_MODULE |
|
|
246 | ECVS_LOCAL=$ECVS_LOCAL |
|
|
247 | ECVS_RUNAS=$ECVS_RUNAS |
|
|
248 | ECVS_LOCALNAME=$ECVS_LOCALNAME" |
|
|
249 | |
|
|
250 | [ -z "$ECVS_MODULE" ] && die "ERROR: CVS module not set, cannot continue." |
|
|
251 | |
|
|
252 | # merely setting this default value makes things fail when cvs_src_unpack is called |
|
|
253 | # more than once per ebuild (eg kdenonbeta submodules); so if we set a default value, |
|
|
254 | # we disable it again at the function's end. |
|
|
255 | # of course, we could instead always reference it with the bash syntax for 'take default |
|
|
256 | # value from this other variable if undefined', but i'm lazy. |
|
|
257 | if [ -z "$ECVS_LOCALNAME" ]; then |
|
|
258 | ECVS_LOCALNAME="$ECVS_MODULE" |
|
|
259 | ECVS_LOCALNAME_SETDEFAULT=true |
|
|
260 | fi |
|
|
261 | |
|
|
262 | if [ "$ECVS_SERVER" == "offline" ]; then |
|
|
263 | # we're not required to fetch anything, the module already exists and shouldn't be updated |
|
|
264 | if [ -d "${ECVS_TOP_DIR}/${ECVS_LOCALNAME}" ]; then |
|
|
265 | debug-print "$FUNCNAME: offline mode" |
|
|
266 | else |
|
|
267 | debug-print "$FUNCNAME: offline mode specified but directory ${ECVS_TOP_DIR}/${ECVS_LOCALNAME} not found, exiting with error" |
|
|
268 | die "ERROR: Offline mode specified, but dir ${ECVS_TOP_DIR}/${ECVS_LOCALNAME} not found. Aborting." |
| 216 | fi |
269 | fi |
|
|
270 | elif [ -n "$ECVS_SERVER" ]; then # ECVS_SERVER!=offline --> real fetching mode |
|
|
271 | einfo "Fetching module '$ECVS_MODULE' and saving in $ECVS_TOP_DIR ..." |
|
|
272 | cvs_fetch |
|
|
273 | else # ECVS_SERVER not set |
|
|
274 | die "ERROR: CVS server not set, cannot continue." |
|
|
275 | fi |
| 217 | |
276 | |
| 218 | # finally run the cvs update command |
277 | einfo "Copying $ECVS_MODULE from $ECVS_TOP_DIR ..." |
| 219 | debug-print "$FUNCNAME: is in dir `/bin/pwd`" |
278 | debug-print "Copying module $ECVS_MODULE local_mode=$ECVS_LOCAL from $ECVS_TOP_DIR ..." |
| 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 | |
279 | |
| 223 | if [ "${ECVS_ANON}" == "no" ]; then |
280 | # probably redundant, but best to make sure |
| 224 | |
281 | mkdir -p "$WORKDIR/$ECVS_LOCALNAME" |
| 225 | debug-print "$FUNCNAME: starting non-anonymous cvs login..." |
|
|
| 226 | # CVS Login - written in python :: the right way ;) |
|
|
| 227 | # Tilman Klar, <phoenix@gentoo.org> |
|
|
| 228 | |
282 | |
| 229 | export CVS_RSH="/usr/bin/ssh" |
283 | if [ -n "$ECVS_LOCAL" ]; then |
| 230 | |
284 | cp -f "$ECVS_TOP_DIR/$ECVS_LOCALNAME"/* "$WORKDIR/$ECVS_LOCALNAME" |
| 231 | ############################## inline-python ##################################### |
|
|
| 232 | /usr/bin/env python << EndOfFile |
|
|
| 233 | |
|
|
| 234 | import pexpect,os |
|
|
| 235 | |
|
|
| 236 | mypasswd = "${ECVS_PASS}" |
|
|
| 237 | myauth = "${ECVS_AUTH}" |
|
|
| 238 | mytimeout = 10 |
|
|
| 239 | |
|
|
| 240 | if "${ECVS_RUNAS}" == "`whoami`": |
|
|
| 241 | mycommand = "${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}" |
|
|
| 242 | else: |
|
|
| 243 | mycommand = "su ${ECVS_RUNAS} -c \"${ECVS_CVS_COMMAND} update ${ECVS_CVS_OPTIONS}\"" |
|
|
| 244 | |
|
|
| 245 | if myauth == "ext": |
|
|
| 246 | child = pexpect.spawn(mycommand) |
|
|
| 247 | |
|
|
| 248 | index = child.expect(['continue connecting','word:'], mytimeout) |
|
|
| 249 | if index == 0: |
|
|
| 250 | child.sendline('yes') |
|
|
| 251 | ## Added server to ~/.ssh/known_hosts |
|
|
| 252 | child.expect('word:', mytimeout) |
|
|
| 253 | else: |
|
|
| 254 | ## Server already is in ~/.ssh/known_hosts |
|
|
| 255 | pass |
|
|
| 256 | |
|
|
| 257 | child.sendline(mypasswd) |
|
|
| 258 | child.expect(pexpect.EOF) |
|
|
| 259 | |
|
|
| 260 | elif myauth == "pserver": |
|
|
| 261 | if "${ECVS_RUNAS}" == "`whoami`": |
|
|
| 262 | mycommand2 = "cvs login" |
|
|
| 263 | else: |
|
|
| 264 | mycommand2 = "su ${ECVS_RUNAS} -c \"cvs login\"" |
|
|
| 265 | child = pexpect.spawn(mycommand2) |
|
|
| 266 | child.expect("CVS password:",mytimeout) |
|
|
| 267 | child.sendline(mypasswd) |
|
|
| 268 | child.expect(pexpect.EOF) |
|
|
| 269 | |
|
|
| 270 | # Logged in - checking out |
|
|
| 271 | os.system(mycommand) |
|
|
| 272 | |
|
|
| 273 | EndOfFile |
|
|
| 274 | ########################### End of inline-python ################################## |
|
|
| 275 | else |
285 | else |
| 276 | debug-print "$FUNCNAME: using anonymous cvs login" |
286 | 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 |
287 | fi |
| 312 | fi |
288 | |
| 313 | |
|
|
| 314 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
289 | # if the directory is empty, remove it; empty directories cannot exist in cvs. |
| 315 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
290 | # this happens when fex. kde-source requests module/doc/subdir which doesn't exist. |
| 316 | # still create the empty directory in workdir though. |
291 | # still create the empty directory in workdir though. |
| 317 | if [ "`ls -A \"$DIR\"`" == "CVS" ]; then |
292 | if [ "`ls -A \"${ECVS_TOP_DIR}/${ECVS_LOCALNAME}\"`" == "CVS" ]; then |
| 318 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_MODULE/$ECVS_SUBDIR" |
293 | debug-print "$FUNCNAME: removing cvs-empty directory $ECVS_LOCALNAME" |
| 319 | rm -rf "$DIR" |
294 | rm -rf "${ECVS_TOP_DIR}/${ECVS_LOCALNAME}" |
| 320 | fi |
295 | fi |
| 321 | |
296 | |
| 322 | # implement some of base_src_unpack's functionality; |
297 | # implement some of base_src_unpack's functionality; |
| 323 | # note however that base.eclass may not have been inherited! |
298 | # note however that base.eclass may not have been inherited! |
| 324 | if [ -n "$PATCHES" ]; then |
299 | if [ -n "$PATCHES" ]; then |
| 325 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
300 | debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" |
| 326 | cd "$S" |
301 | cd "$S" |
| … | |
… | |
| 330 | done |
305 | done |
| 331 | # make sure we don't try to apply patches more than once, since |
306 | # make sure we don't try to apply patches more than once, since |
| 332 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
307 | # cvs_src_unpack is usually called several times from e.g. kde-source_src_unpack |
| 333 | export PATCHES="" |
308 | export PATCHES="" |
| 334 | fi |
309 | fi |
|
|
310 | |
|
|
311 | if [ -n "$ECVS_LOCALNAME_SETDEFAULT" ]; then |
|
|
312 | unset ECVS_LOCALNAME |
|
|
313 | unset ECVS_LOCALNAME_SETDEFAULT |
|
|
314 | fi |
| 335 | |
315 | |
|
|
316 | einfo "Module $ECVS_MODULE is now in ${WORKDIR}" |
| 336 | } |
317 | } |
| 337 | |
318 | |
| 338 | EXPORT_FUNCTIONS src_unpack |
319 | EXPORT_FUNCTIONS src_unpack |