[Python-checkins] python/dist/src/Mac/scripts genpluginprojects.py,1.40,1.41 fullbuild.py,1.90,1.91

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 21 Mar 2003 04:56:29 -0800


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

Modified Files:
	genpluginprojects.py fullbuild.py 
Log Message:
Added _csv module, and getting rid of macfs.

Index: genpluginprojects.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/genpluginprojects.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** genpluginprojects.py	21 Feb 2003 22:33:55 -0000	1.40
--- genpluginprojects.py	21 Mar 2003 12:56:27 -0000	1.41
***************
*** 110,113 ****
--- 110,114 ----
  		libraries=["gdbm.ppc.gusi.lib"], 
  		extradirs=["::::gdbm:mac", "::::gdbm"])
+ 	genpluginproject("carbon", "_csv", sources=["_csv.c"])
  	genpluginproject("carbon", "_weakref", sources=["_weakref.c"])
  	genpluginproject("carbon", "_symtable", sources=["symtablemodule.c"])

Index: fullbuild.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/fullbuild.py,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -d -r1.90 -r1.91
*** fullbuild.py	26 Jan 2003 21:40:00 -0000	1.90
--- fullbuild.py	21 Mar 2003 12:56:27 -0000	1.91
***************
*** 16,20 ****
  import os
  import sys
! import macfs
  import MacOS
  import EasyDialogs
--- 16,20 ----
  import os
  import sys
! import Carbon.File
  import MacOS
  import EasyDialogs
***************
*** 97,101 ****
  		file = os.path.join(top, file)
  		try:
! 			fss = macfs.FSSpec(file)
  		except MacOS.Error:
  			print '** file not found:', file
--- 97,101 ----
  		file = os.path.join(top, file)
  		try:
! 			fss = Carbon.File.FSSpec(file)
  		except MacOS.Error:
  			print '** file not found:', file
***************
*** 195,198 ****
--- 195,199 ----
  ##		])
  	buildmwproject(top, "CWIE", [
+ 		(":Mac:Build:_csv.carbon.mcp", "_csv.carbon"),
  		(":Mac:Build:_weakref.carbon.mcp", "_weakref.carbon"),
  		(":Mac:Build:_symtable.carbon.mcp", "_symtable.carbon"),