[PD-cvs] scripts checkout-developer-layout.sh,1.2,1.3

Hans-Christoph Steiner eighthave at users.sourceforge.net
Wed Nov 30 07:01:45 CET 2005


Update of /cvsroot/pure-data/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13599

Modified Files:
	checkout-developer-layout.sh 
Log Message:
added Gem and packages

Index: checkout-developer-layout.sh
===================================================================
RCS file: /cvsroot/pure-data/scripts/checkout-developer-layout.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** checkout-developer-layout.sh	19 Nov 2005 23:08:51 -0000	1.2
--- checkout-developer-layout.sh	30 Nov 2005 06:01:43 -0000	1.3
***************
*** 13,43 ****
  function print_usage ()
  {
! 	 echo " "
! 	 echo "Usage: $0 [sourceforge ID]"
! 	 echo "   if no ID is given, it will check out anonymously"
! 	 echo " "
! 	 exit
  }
  
  if [ $# -eq 0 ]; then
! 	 CVSROOT=":pserver:anonymous at cvs.sourceforge.net:/cvsroot/pure-data"
! 	 echo "Checking out anonymously. Give your SourceForge ID as an argument otherwise."
! 	 echo "The anonymous password is: anoncvs"
! 	 cvs login
  elif [ "$1" == "--help" ]; then
! 	 print_usage
  elif [ "$1" == "-h" ]; then
! 	 print_usage
  elif [ $# -eq 1 ]; then
! 	 CVSROOT=":ext:${1}@cvs.sourceforge.net:/cvsroot/pure-data"
  else
! 	 print_usage
  fi
  
! mkdir pure-data && cd pure-data
! for section in abstractions doc extensions externals pd scripts; do
! 	 cvs checkout $section
  done
  
  # make the symlinks which simulate the files being installed into the packages
  cd packages && make devsymlinks
--- 13,51 ----
  function print_usage ()
  {
!     echo " "
!     echo "Usage: $0 [sourceforge ID]"
!     echo "   if no ID is given, it will check out anonymously"
!     echo " "
!     exit
  }
  
  if [ $# -eq 0 ]; then
!     CVSROOT=":pserver:anonymous at cvs.sourceforge.net:/cvsroot/pure-data"
!     echo "Checking out anonymously. Give your SourceForge ID as an argument otherwise."
!     echo "The anonymous password is: anoncvs"
!     cvs login
  elif [ "$1" == "--help" ]; then
!     print_usage
  elif [ "$1" == "-h" ]; then
!     print_usage
  elif [ $# -eq 1 ]; then
!     CVSROOT=":ext:${1}@cvs.sourceforge.net:/cvsroot/pure-data"
  else
!     print_usage
  fi
  
! mkdir pure-data
! cd pure-data
! 
! for section in abstractions doc extensions externals pd packages scripts; do
!     cvs checkout $section
  done
  
+ # Gem is still separate
+ CVSROOT := :pserver:anonymous at cvs.gem.iem.at:/cvsroot/pd-gem
+ cvs login
+ cvs checkout Gem GemLibs
+ 
+ 
  # make the symlinks which simulate the files being installed into the packages
  cd packages && make devsymlinks





More information about the Pd-cvs mailing list