[Python-checkins] python/dist/src/Mac/scripts genallsuites.py,1.2,1.3

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 29 Apr 2003 14:46:35 -0700


Update of /cvsroot/python/python/dist/src/Mac/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv23445

Modified Files:
	genallsuites.py 
Log Message:
By default be verbose.


Index: genallsuites.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/genallsuites.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** genallsuites.py	29 Mar 2003 00:11:32 -0000	1.2
--- genallsuites.py	29 Apr 2003 21:46:31 -0000	1.3
***************
*** 8,11 ****
--- 8,13 ----
  import gensuitemodule
  
+ verbose=sys.stdout
+ 
  DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
  OS9DISK="/Volumes/Moes"
***************
*** 23,50 ****
  	output=os.path.join(DSTDIR, 'StdSuites'),
  	basepkgname='_builtinSuites',
! 	edit_modnames=[])
  gensuitemodule.processfile(SYSTEMEVENTS,
  	output=os.path.join(DSTDIR, 'SystemEvents'),
  	basepkgname='StdSuites',
! 	edit_modnames=[])
  gensuitemodule.processfile(CODEWARRIOR,
  	output=os.path.join(DSTDIR, 'CodeWarrior'),
  	basepkgname='StdSuites',
! 	edit_modnames=[])
  gensuitemodule.processfile(EXPLORER,
  	output=os.path.join(DSTDIR, 'Explorer'),
  	basepkgname='StdSuites',
! 	edit_modnames=[])
  gensuitemodule.processfile(FINDER,
  	output=os.path.join(DSTDIR, 'Finder'),
  	basepkgname='StdSuites',
! 	edit_modnames=[])
  gensuitemodule.processfile(NETSCAPE,
  	output=os.path.join(DSTDIR, 'Netscape'),
  	basepkgname='StdSuites',
! 	edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')])
  gensuitemodule.processfile(TERMINAL,
  	output=os.path.join(DSTDIR, 'Terminal'),
  	basepkgname='StdSuites',
! 	edit_modnames=[])
  	
--- 25,52 ----
  	output=os.path.join(DSTDIR, 'StdSuites'),
  	basepkgname='_builtinSuites',
! 	edit_modnames=[], verbose=verbose)
  gensuitemodule.processfile(SYSTEMEVENTS,
  	output=os.path.join(DSTDIR, 'SystemEvents'),
  	basepkgname='StdSuites',
! 	edit_modnames=[], verbose=verbose)
  gensuitemodule.processfile(CODEWARRIOR,
  	output=os.path.join(DSTDIR, 'CodeWarrior'),
  	basepkgname='StdSuites',
! 	edit_modnames=[], verbose=verbose)
  gensuitemodule.processfile(EXPLORER,
  	output=os.path.join(DSTDIR, 'Explorer'),
  	basepkgname='StdSuites',
! 	edit_modnames=[], verbose=verbose)
  gensuitemodule.processfile(FINDER,
  	output=os.path.join(DSTDIR, 'Finder'),
  	basepkgname='StdSuites',
! 	edit_modnames=[], verbose=verbose)
  gensuitemodule.processfile(NETSCAPE,
  	output=os.path.join(DSTDIR, 'Netscape'),
  	basepkgname='StdSuites',
! 	edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose)
  gensuitemodule.processfile(TERMINAL,
  	output=os.path.join(DSTDIR, 'Terminal'),
  	basepkgname='StdSuites',
! 	edit_modnames=[], verbose=verbose)