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