2006-05-11 12:36:16 +00:00
|
|
|
source $stdenv/setup
|
|
|
|
|
2018-04-20 02:51:40 +00:00
|
|
|
(echo '#!/usr/bin/env sh'; \
|
|
|
|
echo 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "$@"') > ssh
|
|
|
|
chmod +x ssh
|
|
|
|
export CVS_RSH=$PWD/ssh
|
|
|
|
|
2007-11-11 08:16:23 +00:00
|
|
|
# creating the export drictory and checking out there only to be able to
|
|
|
|
# move the content without the root directory into $out ...
|
|
|
|
# cvs -f -d "$url" export $tag -d "$out" "$module"
|
|
|
|
# should work (but didn't - got no response on #cvs)
|
|
|
|
# See als man Page for those options
|
2006-05-11 12:36:16 +00:00
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p export
|
2007-11-13 01:26:54 +00:00
|
|
|
if [ -n "$tag" ]; then
|
2008-02-28 22:36:37 +00:00
|
|
|
tag="-r $tag"
|
2007-11-13 01:26:54 +00:00
|
|
|
else
|
2008-02-28 22:36:37 +00:00
|
|
|
if [ -n "$date" ]; then
|
|
|
|
tag="-D $date"
|
|
|
|
else
|
|
|
|
tag="-D NOW"
|
|
|
|
fi
|
2007-11-13 01:26:54 +00:00
|
|
|
fi
|
2008-02-28 22:36:37 +00:00
|
|
|
(cd export && cvs -f -z0 -d "$cvsRoot" export $tag "$module")
|
|
|
|
mv export/* $out
|
2006-05-11 12:36:16 +00:00
|
|
|
|
|
|
|
stopNest
|