Revision: 10257 http://pure-data.svn.sourceforge.net/pure-data/?rev=10257&view=rev Author: zmoelnig Date: 2008-08-20 12:17:25 +0000 (Wed, 20 Aug 2008)
Log Message: ----------- Gem is now also under control of SVN
Modified Paths: -------------- trunk/scripts/checkout-developer-layout.sh
Modified: trunk/scripts/checkout-developer-layout.sh =================================================================== --- trunk/scripts/checkout-developer-layout.sh 2008-08-19 08:31:38 UTC (rev 10256) +++ trunk/scripts/checkout-developer-layout.sh 2008-08-20 12:17:25 UTC (rev 10257) @@ -7,8 +7,9 @@ # - with no arguments, it will check out the code using anonymous CVS. # - to check out using your SourceForge ID, add that as the argument
-# Be aware that SourceForge's anonymous CVS server is generally 24 hours -# behind the authenticated CVS. +URL="https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/" +GEMURL="https://pd-gem.svn.sourceforge.net/svnroot/pd-gem/trunk/" +PDAUTH=""
print_usage () { @@ -19,28 +20,27 @@ exit }
-URL="https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/" - if [ $# -eq 0 ]; then echo "Checking out anonymously. Give your SourceForge ID if you don't want that." - svn checkout $URL pure-data elif [ "$1" == "--help" ]; then print_usage elif [ "$1" == "-h" ]; then print_usage elif [ $# -eq 1 ]; then - svn checkout --username $1 $URL pure-data + PDAUTH="--username $1" else print_usage fi
+echo "checking out pure-data" +svn checkout $PDAUTH $URL pure-data + cd pure-data
-# Gem is still separate -echo -e "\n\n The password to the Gem anonymous CVS access is blank, so just press Enter\n" -export CVSROOT=:pserver:anonymous@cvs.gem.iem.at:/cvsroot/pd-gem -cvs login -cvs checkout Gem GemLibs +for section in Gem videoIO; do + echo "checking out Gem::${section}" + svn checkout ${PDAUTH} ${GEMURL}/${section} ${section} +done
# make the symlinks which simulate the files being installed into the packages
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.