[PD-cvs] scripts convert-help-to-standard.sh, NONE, 1.1 pd, 1.1.1.1, 1.2 convert-help-to-standard.pd, 1.1.1.1, NONE

Hans-Christoph Steiner eighthave at users.sourceforge.net
Sat May 21 05:09:36 CEST 2005


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

Modified Files:
	pd 
Added Files:
	convert-help-to-standard.sh 
Removed Files:
	convert-help-to-standard.pd 
Log Message:
added comments, moved externals/build/doc/standardize-help.sh to here, convert-help-to-standard.sh

--- convert-help-to-standard.pd DELETED ---

--- NEW FILE: convert-help-to-standard.sh ---
#!/bin/sh

# this script renames help patches that don't follow the OBJECTNAME-help.pd
# format that has become the standard.
# 
# for more info on the standard, check this thread:
# http://lists.puredata.info/pipermail/pd-dev/2003-09/001519.html
#
# this script is a hack to take care of this until all of the files get
# renamed by their respective maintainers.

for helpfile in help-*.pd ; do
   mv "$helpfile" "`echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`"
#	echo "SWAP $helpfile `echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`"
done

# this isn't used yet
#NON_STANDARD_HELP_FILES=`ls -1 *.pd | \
#       grep -v '^.*-help.pd$' | \
#       grep -v '^help-.*.pd$' | \
#       grep -v '^externals.pd$' | \
#       grep -v 'test' | \
#       grep -v 'example' | \
#       grep -v 'demo' | \
#       grep -v 'x_all_guis' | \
#       grep -v 'all_about_' | \
#       grep -v 'pddp' | \
#       grep -v 'readme' | \
#       grep -v '^.*-list.pd$' | \
#       grep -v '^.*-joystick.pd$'`

#for helpfile in $NON_STANDARD_HELP_FILES ; do
#	 echo NONE $helpfile
#done


Index: pd
===================================================================
RCS file: /cvsroot/pure-data/scripts/pd,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** pd	18 Apr 2005 00:36:10 -0000	1.1.1.1
--- pd	21 May 2005 03:09:33 -0000	1.2
***************
*** 15,18 ****
--- 15,24 ----
  #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  #
+ #
+ # This is a SysV-style startup script for Pd.  It has been used on Debian
+ # extensively but should work on other SysV platforms.
+ #
+ # .hc <hans at at.or.at>
+ #
  
  PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin





More information about the Pd-cvs mailing list