|
From: <de...@us...> - 2003-04-25 12:03:28
|
Update of /cvsroot/csp/APPLICATIONS/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv6776
Modified Files:
setup.py CHANGES.current
Log Message:
no message
Index: setup.py
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/setup.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** setup.py 24 Apr 2003 21:50:43 -0000 1.18
--- setup.py 25 Apr 2003 12:03:24 -0000 1.19
***************
*** 71,119 ****
if not os.path.isdir(src_name):
if verbose:
! print "%s => %s" % (src_name, dst_name)
copy_file(src_name, dst_name)
def make_install(win, args):
! lib = sysconfig.get_python_lib()
! inc = sysconfig.get_python_inc()
! modpath = os.path.join(lib, "SimData")
! incpath = os.path.join(inc, "SimData")
! localinc = os.path.normpath("Include/SimData")
! libpath = default_libpath
! verbose = 0
! for arg in args:
! if arg.startswith("--prefix="):
! libpath = arg[9:]
! elif arg=='-v' or arg=='--verbose':
! verbose = 1
! package_files = ['__init__.py', 'Debug.py', 'Parse.py', 'Compile.py']
! if win:
! package_files.extend(['cSimData.py', '_cSimData.dll', '_cSimData.lib'])
! src = os.path.join("VisualStudio","cSimData.py")
! if os.path.exists(src):
! from distutils.file_util import copy_file
! copy_file(src, os.path.join("SimData","cSimData.py"))
! else:
! package_files.extend(['cSimData.py', '_cSimData.so'])
! try:
! print "Installing SimData package to", modpath
! copy_dir("SimData", modpath, package_files, verbose)
! print "Installing SimData headers to", incpath
! copy_dir(localinc, incpath, headers, verbose)
! copy_dir(localinc, incpath, interfaces, verbose)
! if not win:
! print "Installing SimData libraries to", libpath
! copy_dir("SimData", libpath, ['_cSimData.so', 'libSimData.a'], verbose)
! print "Byte compiling the Python modules..."
! import py_compile
! for file in package_files:
! if file.endswith(".py"):
! script = os.path.join(modpath, file)
! py_compile.compile(script)
! os.chmod(script+"c", 0644)
! except Exception, e:
! print e
! sys.exit(1)
! sys.exit(0)
class build_swig_ext(build_ext):
--- 71,119 ----
if not os.path.isdir(src_name):
if verbose:
! print "%s => %s" % (src_name, dst_name)
copy_file(src_name, dst_name)
def make_install(win, args):
! lib = sysconfig.get_python_lib()
! inc = sysconfig.get_python_inc()
! modpath = os.path.join(lib, "SimData")
! incpath = os.path.join(inc, "SimData")
! localinc = os.path.normpath("Include/SimData")
! libpath = default_libpath
! verbose = 0
! for arg in args:
! if arg.startswith("--prefix="):
! libpath = arg[9:]
! elif arg=='-v' or arg=='--verbose':
! verbose = 1
! package_files = ['__init__.py', 'Debug.py', 'Parse.py', 'Compile.py']
! if win:
! package_files.extend(['cSimData.py', '_cSimData.dll', '_cSimData.lib','_cSimDatad.dll', '_cSimDatad.lib'])
! src = os.path.join("VisualStudio","cSimData.py")
! if os.path.exists(src):
! from distutils.file_util import copy_file
! copy_file(src, os.path.join("SimData","cSimData.py"))
! else:
! package_files.extend(['cSimData.py', '_cSimData.so'])
! try:
! print "Installing SimData package to", modpath
! copy_dir("SimData", modpath, package_files, verbose)
! print "Installing SimData headers to", incpath
! copy_dir(localinc, incpath, headers, verbose)
! copy_dir(localinc, incpath, interfaces, verbose)
! if not win:
! print "Installing SimData libraries to", libpath
! copy_dir("SimData", libpath, ['_cSimData.so', 'libSimData.a'], verbose)
! print "Byte compiling the Python modules..."
! import py_compile
! for file in package_files:
! if file.endswith(".py"):
! script = os.path.join(modpath, file)
! py_compile.compile(script)
! os.chmod(script+"c", 0644)
! except Exception, e:
! print e
! sys.exit(1)
! sys.exit(0)
class build_swig_ext(build_ext):
***************
*** 210,214 ****
"Exception",
"External",
! "FileUtility",
"GeoPos",
"HashUtility",
--- 210,214 ----
"Exception",
"External",
! "FileUtility",
"GeoPos",
"HashUtility",
***************
*** 242,246 ****
"Export.h",
"External.h",
! "FileUtility.h",
"GeoPos.h",
"GlibCsp.h",
--- 242,246 ----
"Export.h",
"External.h",
! "FileUtility.h",
"GeoPos.h",
"GlibCsp.h",
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** CHANGES.current 24 Apr 2003 21:14:14 -0000 1.28
--- CHANGES.current 25 Apr 2003 12:03:24 -0000 1.29
***************
*** 2,5 ****
--- 2,8 ----
===========================
+ 2003-04-25: delta
+ Updated .net project file.
+
2003-04-24: onsight
Fix for Object::operator=() return value.
|