| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License, v2 or later |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
3 | # Author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.13 2002/08/19 16:56:49 danarmak Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.14 2002/09/08 16:17:15 danarmak Exp $ |
| 5 | # This eclass provides the generic cvs fetching functions. |
5 | # This eclass provides the generic cvs fetching functions. |
| 6 | |
6 | |
| 7 | ECLASS=cvs |
7 | ECLASS=cvs |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | INHERITED="$INHERITED $ECLASS" |
| 9 | |
9 | |
| … | |
… | |
| 24 | |
24 | |
| 25 | # set this for the module/subdir to be fetched non-recursively |
25 | # set this for the module/subdir to be fetched non-recursively |
| 26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
26 | #[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l" |
| 27 | |
27 | |
| 28 | # Where the cvs modules are stored/accessed |
28 | # Where the cvs modules are stored/accessed |
| 29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="/usr/src" |
29 | [ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="${DISTDIR}/cvs-src" |
| 30 | |
30 | |
| 31 | # Name of cvs server, set to "offline" to disable fetching |
31 | # Name of cvs server, set to "offline" to disable fetching |
| 32 | # (i.e. to assume module is checked out already and don't update it). |
32 | # (i.e. to assume module is checked out already and don't update it). |
| 33 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
33 | # Format is server:/dir e.g. "anoncvs.kde.org:/home/kde". remove the other |
| 34 | # parts of the full CVSROOT (which looks like |
34 | # parts of the full CVSROOT (which looks like |
| … | |
… | |
| 43 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
43 | [ -z "$ECVS_PASS" ] && ECVS_PASS="" |
| 44 | |
44 | |
| 45 | # Module to be fetched, must be set explicitly - |
45 | # Module to be fetched, must be set explicitly - |
| 46 | # I don't like the former ="$PN" default setting |
46 | # I don't like the former ="$PN" default setting |
| 47 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
47 | [ -z "$ECVS_MODULE" ] && debug-print "$ECLASS: error: ECVS_MODULE not set, cannot continue" |
|
|
48 | |
|
|
49 | # Branch/tag to use, default is HEAD |
|
|
50 | # uncomment the following line to enable the reset-branch-to-HEAD behaviour |
|
|
51 | [ -z "$ECVS_BRANCH" ] && ECVS_BRANCH="HEAD" |
| 48 | |
52 | |
| 49 | # Subdirectory in module to be fetched, default is not defined = whole module |
53 | # Subdirectory in module to be fetched, default is not defined = whole module |
| 50 | # DO NOT set default to "", if it's defined at all code will break! |
54 | # DO NOT set default to "", if it's defined at all code will break! |
| 51 | # don't uncomment following line! |
55 | # don't uncomment following line! |
| 52 | #[ -z "$ECVS_MODULE_SUBDIR" ] && ECVS_MODULE_SUBDIR="" |
56 | #[ -z "$ECVS_MODULE_SUBDIR" ] && ECVS_MODULE_SUBDIR="" |
| … | |
… | |
| 71 | ECVS_PASS=$ECVS_PASS |
75 | ECVS_PASS=$ECVS_PASS |
| 72 | ECS_MODULE=$ECVS_MODULE |
76 | ECS_MODULE=$ECVS_MODULE |
| 73 | ECVS_MODULE_SUBDIR=$ECVS_SUBDIR |
77 | ECVS_MODULE_SUBDIR=$ECVS_SUBDIR |
| 74 | ECVS_LOCAL=$ECVS_LOCAL |
78 | ECVS_LOCAL=$ECVS_LOCAL |
| 75 | DIR=$DIR" |
79 | DIR=$DIR" |
|
|
80 | |
|
|
81 | # if ECVS_TOP_DIR is a symlink to a dir, get the real dir's path, |
|
|
82 | # otherwise addwrite() doesn't work |
|
|
83 | if [ -n "$ECVS_TOP_DIR" ]; then |
|
|
84 | cd -P $ECVS_TOP_DIR |
|
|
85 | ECVS_TOP_DIR="`pwd`" |
|
|
86 | cd $OLDPWD |
|
|
87 | fi |
| 76 | |
88 | |
| 77 | # a shorthand |
89 | # a shorthand |
| 78 | [ -n "$ECVS_SUBDIR" ] && DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" || \ |
90 | [ -n "$ECVS_SUBDIR" ] && DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" || \ |
| 79 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}" |
91 | DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}" |
| 80 | |
92 | |
| … | |
… | |
| 93 | return 1 |
105 | return 1 |
| 94 | fi |
106 | fi |
| 95 | fi |
107 | fi |
| 96 | |
108 | |
| 97 | # disable the sandbox for this dir |
109 | # disable the sandbox for this dir |
| 98 | |
|
|
| 99 | # not just $DIR because we want to create moduletopdir/CVS too |
110 | # not just $DIR because we want to create moduletopdir/CVS too |
| 100 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
111 | addwrite $ECVS_TOP_DIR/$ECVS_MODULE |
| 101 | |
112 | |
| 102 | if [ ! -d "$DIR" ]; then |
113 | if [ ! -d "$DIR" ]; then |
| 103 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
114 | debug-print "$FUNCNAME: creating cvs directory $DIR" |
| … | |
… | |
| 172 | done |
183 | done |
| 173 | |
184 | |
| 174 | fi |
185 | fi |
| 175 | |
186 | |
| 176 | fi |
187 | fi |
|
|
188 | |
|
|
189 | # cvs auto-switches branches, how nice |
|
|
190 | # warning: if we do it this way we get multiple -rX options - harmless i think |
|
|
191 | [ -n "$ECVS_BRANCH" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -r$ECVS_BRANCH" |
| 177 | |
192 | |
| 178 | # finally run the cvs update command |
193 | # finally run the cvs update command |
| 179 | debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR" |
194 | debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR" |
| 180 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
195 | einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..." |
| 181 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |
196 | $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update" |