| 1 |
# Copyright 1999-2000 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License, v2 or later
|
| 3 |
# Author Dan Armak <danarmak@gentoo.org>
|
| 4 |
# $Header: /home/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.6 2002/08/01 19:16:31 danarmak Exp $
|
| 5 |
# This eclass provides the generic cvs fetching functions.
|
| 6 |
|
| 7 |
ECLASS=cvs
|
| 8 |
INHERITED="$INHERITED $ECLASS"
|
| 9 |
|
| 10 |
# You shouldn't change these settings yourself! The ebuild/eclass inheriting this eclass
|
| 11 |
# will take care of that. If you want to set the global KDE cvs ebuilds' settings,
|
| 12 |
# see the comments in kde-source.eclass.
|
| 13 |
|
| 14 |
# --- begin ebuild-configurable settings
|
| 15 |
|
| 16 |
# cvs command to run. you can set fex. "cvs -t" for extensive debug information
|
| 17 |
# on the cvs onnection. the default of "cvs -q -f -z4" means to be quiet, to disregard
|
| 18 |
# the ~/.cvsrc config file and to use maximum compression.
|
| 19 |
[ -z "$ECVS_CVS_COMMAND" ] && ECVS_CVS_COMMAND="cvs -f -z4"
|
| 20 |
|
| 21 |
# cvs options given after the command (i.e. cvs update foo)
|
| 22 |
# don't remove -dP or things won't work
|
| 23 |
[ -z "$ECVS_CVS_OPTIONS" ] && ECVS_CVS_OPTIONS="-dP"
|
| 24 |
|
| 25 |
# set this for the module/subdir to be fetched non-recursively
|
| 26 |
#[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l"
|
| 27 |
|
| 28 |
# Where the cvs modules are stored/accessed
|
| 29 |
[ -z "$ECVS_TOP_DIR" ] && ECVS_TOP_DIR="/usr/src"
|
| 30 |
|
| 31 |
# Name of cvs server, set to "" to disable fetching
|
| 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
|
| 34 |
# parts of the full CVSROOT (which looks like
|
| 35 |
# ":pserver:anonymous@anoncvs.kde.org:/home/kde"); these are added from
|
| 36 |
# other settings
|
| 37 |
[ -z "$ECVS_SERVER" ] && ECVS_SERVER=""
|
| 38 |
|
| 39 |
# Username to use
|
| 40 |
[ -z "$ECVS_USER" ] && ECVS_USER="anonymous"
|
| 41 |
|
| 42 |
# Password to use (NOT (YET) SUPPORTED, because cvs doesn't store passwords in plaintext in .cvspass)
|
| 43 |
[ -z "$ECVS_PASS" ] && ECVS_PASS=""
|
| 44 |
|
| 45 |
# Module to be fetched, must be set explicitly -
|
| 46 |
# I don't like the former ="$NP" default setting
|
| 47 |
[ -z "$ECVS_MODULE" ] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue"
|
| 48 |
|
| 49 |
# 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!
|
| 51 |
# don't uncomment following line!
|
| 52 |
#[ -z "$ECVS_MODULE_SUBDIR" ] && ECVS_MODULE_SUBDIR=""
|
| 53 |
|
| 54 |
# --- end ebuild-configurable settings ---
|
| 55 |
|
| 56 |
# add cvs to deps
|
| 57 |
DEPEND="$DEPEND dev-util/cvs"
|
| 58 |
|
| 59 |
# since we now longer have src_fetch as a redefinable ebuild function,
|
| 60 |
# we are forced to call this function from cvs_src_unpack
|
| 61 |
cvs_fetch() {
|
| 62 |
|
| 63 |
debug-print-function $FUNCNAME $*
|
| 64 |
|
| 65 |
debug-print "$FUNCNAME: init:
|
| 66 |
ECVS_CVS_COMMAND=$ECVS_CVS_COMMAND
|
| 67 |
ECVS_CVS_OPTIONS=$ECVS_CVS_OPTIONS
|
| 68 |
ECVS_TOP_DIR=$ECVS_TOP_DIR
|
| 69 |
ECVS_SERVER=$ECVS_SERVER
|
| 70 |
ECVS_USER=$ECVS_USER
|
| 71 |
ECVS_PASS=$ECVS_PASS
|
| 72 |
ECS_MODULE=$ECVS_MODULE
|
| 73 |
ECVS_MODULE_SUBDIR=$ECVS_SUBDIR
|
| 74 |
ECVS_LOCAL=$ECVS_LOCAL
|
| 75 |
DIR=$DIR"
|
| 76 |
|
| 77 |
# a shorthand
|
| 78 |
[ -n "$ECVS_SUBDIR" ] && DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}/${ECVS_SUBDIR}" || \
|
| 79 |
DIR="${ECVS_TOP_DIR}/${ECVS_MODULE}"
|
| 80 |
|
| 81 |
[ -n "$ECVS_LOCAL" ] && ECVS_CVS_OPTIONS="$ECVS_CVS_OPTIONS -l"
|
| 82 |
|
| 83 |
addread $DIR
|
| 84 |
|
| 85 |
if [ -z "$ECVS_SERVER" ]; then
|
| 86 |
# we're not required to fetch anything, the module already exists and shouldn't be updated
|
| 87 |
if [ -d "$DIR" ]; then
|
| 88 |
debug-print "$FUNCNAME: offline mode, exiting"
|
| 89 |
return 0
|
| 90 |
else
|
| 91 |
einfo "ERROR: Offline mode specified, but module/subdir not found. Aborting."
|
| 92 |
debug-print "$FUNCNAME: offline mode specified but module/subdir not found, exiting with error"
|
| 93 |
return 1
|
| 94 |
fi
|
| 95 |
fi
|
| 96 |
|
| 97 |
# disable the sandbox for this dir
|
| 98 |
|
| 99 |
# not just $DIR because we want to create moduletopdir/CVS too
|
| 100 |
addwrite $ECVS_TOP_DIR/$ECVS_MODULE
|
| 101 |
|
| 102 |
if [ ! -d "$DIR" ]; then
|
| 103 |
debug-print "$FUNCNAME: creating cvs directory $DIR"
|
| 104 |
einfo "Creating directory $DIR"
|
| 105 |
mkdir -p /$DIR
|
| 106 |
fi
|
| 107 |
|
| 108 |
# prepare a cvspass file just for this session so that cvs thinks we're logged
|
| 109 |
# in at the cvs server. we don't want to mess with ~/.cvspass.
|
| 110 |
echo ":pserver:${ECVS_SERVER} A" > ${T}/cvspass
|
| 111 |
export CVS_PASSFILE="${T}/cvspass"
|
| 112 |
#export CVSROOT=:pserver:${ECVS_USER}@${ECVS_SERVER}
|
| 113 |
|
| 114 |
# Note: cvs update and checkout commands are unified.
|
| 115 |
# we make sure a CVS/ dir exists in our module subdir with the right
|
| 116 |
# Root and Repository entries in it and cvs update.
|
| 117 |
|
| 118 |
newserver=":pserver:anonymous@${ECVS_SERVER}"
|
| 119 |
|
| 120 |
# CVS/Repository files can't (I think) contain two concatenated slashes
|
| 121 |
if [ -n "$ECVS_SUBDIR" ]; then
|
| 122 |
repository="${ECVS_MODULE}/${ECVS_SUBDIR}"
|
| 123 |
else
|
| 124 |
repository="${ECVS_MODULE}"
|
| 125 |
fi
|
| 126 |
|
| 127 |
debug-print "$FUNCNAME: Root<-$newserver, Repository<-$repository"
|
| 128 |
|
| 129 |
cd $DIR
|
| 130 |
if [ ! -d "$DIR/CVS" ]; then
|
| 131 |
# create a new CVS/ directory (checkout)
|
| 132 |
debug-print "$FUNCNAME: creating new cvs directory"
|
| 133 |
|
| 134 |
mkdir CVS
|
| 135 |
echo $newserver > CVS/Root
|
| 136 |
echo $repository > CVS/Repository
|
| 137 |
touch CVS/Entries
|
| 138 |
|
| 139 |
# if we're checking out a subdirectory only, create a CVS/ dir
|
| 140 |
# in the module's top dir so that the user (and we) can cvs update
|
| 141 |
# from there to get the full module.
|
| 142 |
if [ ! -d "$ECVS_TOP_DIR/$ECVS_MODULE/CVS" ]; then
|
| 143 |
debug-print "$FUNCNAME: Copying CVS/ directory to module top-level dir"
|
| 144 |
cp -r CVS $ECVS_TOP_DIR/$ECVS_MODULE/
|
| 145 |
echo $ECVS_MODULE > $ECVS_TOP_DIR/$ECVS_MODULE/CVS/Repository
|
| 146 |
fi
|
| 147 |
|
| 148 |
else
|
| 149 |
#update existing module
|
| 150 |
debug-print "$FUNCNAME: updating existing module/subdir"
|
| 151 |
|
| 152 |
# Switch servers if needed
|
| 153 |
# cvs keeps the server info in the CVS/Root file in every checked-out dir;
|
| 154 |
# we can fix those files to point to the new server
|
| 155 |
oldserver="`cat CVS/Root`"
|
| 156 |
if [ "$newserver" != "$oldserver" ]; then
|
| 157 |
|
| 158 |
einfo "Changing CVS server from $oldserver to $newserver:"
|
| 159 |
debug-print "$FUNCNAME: Changing CVS server from $oldserver to $newserver:"
|
| 160 |
|
| 161 |
einfo "Searching for CVS dirs..."
|
| 162 |
cvsdirs="`find . -iname CVS -print`"
|
| 163 |
debug-print "$FUNCNAME: CVS dirs found:"
|
| 164 |
debug-print "$cvsdirs"
|
| 165 |
|
| 166 |
einfo "Modifying CVS dirs..."
|
| 167 |
for x in $cvsdirs; do
|
| 168 |
debug-print "In $x"
|
| 169 |
echo $newserver > $x/Root
|
| 170 |
done
|
| 171 |
|
| 172 |
fi
|
| 173 |
|
| 174 |
fi
|
| 175 |
|
| 176 |
# finally run the cvs update command
|
| 177 |
debug-print "$FUNCNAME: running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for module $ECVS_MODULE subdir $ECVS_SUBDIR"
|
| 178 |
einfo "Running $ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS with $ECVS_SERVER for $ECVS_MODULE/$ECVS_SUBDIR..."
|
| 179 |
$ECVS_CVS_COMMAND update $ECVS_CVS_OPTIONS || die "died running cvs update"
|
| 180 |
|
| 181 |
}
|
| 182 |
|
| 183 |
cvs_src_unpack() {
|
| 184 |
|
| 185 |
debug-print-function $FUNCNAME $*
|
| 186 |
cvs_fetch || die "died running cvs_fetch"
|
| 187 |
|
| 188 |
einfo "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..."
|
| 189 |
debug-print "Copying module $ECVS_MODULE from $ECVS_TOP_DIR..."
|
| 190 |
|
| 191 |
if [ -n "$ECVS_SUBDIR" ]; then
|
| 192 |
mkdir $WORKDIR/$ECVS_MODULE
|
| 193 |
cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE/$ECVS_SUBDIR $WORKDIR/$ECVS_MODULE
|
| 194 |
else
|
| 195 |
if [ -n "$ECVS_LOCAL" ]; then
|
| 196 |
cp -f $ECVS_TOP_DIR/$ECVS_MODULE/* $WORKDIR/$ECVS_MODULE
|
| 197 |
else
|
| 198 |
cp -Rf $ECVS_TOP_DIR/$ECVS_MODULE $WORKDIR
|
| 199 |
fi
|
| 200 |
fi
|
| 201 |
|
| 202 |
# implement some of base_src_unpack's functionality;
|
| 203 |
# note however that base.eclass may not have been inherited!
|
| 204 |
if [ -n "$PATCHES" ]; then
|
| 205 |
debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching"
|
| 206 |
cd $S
|
| 207 |
for x in $PATCHES; do
|
| 208 |
debug-print "patching from $x"
|
| 209 |
patch -p0 < $x
|
| 210 |
done
|
| 211 |
fi
|
| 212 |
|
| 213 |
}
|
| 214 |
|
| 215 |
EXPORT_FUNCTIONS src_unpack
|
| 216 |
|
| 217 |
|