[ctypes-commit] ctypes setup.py,1.122.2.9,1.122.2.10
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-01-02 19:07:59
|
Update of /cvsroot/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2672 Modified Files: Tag: branch_1_0 setup.py Log Message: Removed ctypes.com package. Index: setup.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/setup.py,v retrieving revision 1.122.2.9 retrieving revision 1.122.2.10 diff -C2 -d -r1.122.2.9 -r1.122.2.10 *** setup.py 30 Nov 2005 09:36:01 -0000 1.122.2.9 --- setup.py 2 Jan 2006 19:07:50 -0000 1.122.2.10 *************** *** 44,48 **** # Original version of this class posted # by Berthold Hoellmann to dis...@py... ! description = "run unittests each in a separate process" user_options = [ --- 44,48 ---- # Original version of this class posted # by Berthold Hoellmann to dis...@py... ! description = "run tests" user_options = [ *************** *** 59,68 **** def initialize_options(self): self.build_base = 'build' - ## self.test_prefix = 'test_' self.use_resources = "" ! self.refcounts = 0 if sys.platform == "win32": ! self.tests = "ctypes.test,ctypes.com.test,comtypes.test" ! ## self.tests = "ctypes.test,ctypes.com.test" else: self.tests = "ctypes.test" --- 59,66 ---- def initialize_options(self): self.build_base = 'build' self.use_resources = "" ! self.refcounts = False if sys.platform == "win32": ! self.tests = "ctypes.test,comtypes.test" else: self.tests = "ctypes.test" *************** *** 272,289 **** ################################################################ ! # the ctypes.com package ! # ! if sys.platform == "win32": ! packages.append("ctypes.com") ! package_dir["ctypes.com"] = "win32/com" ! ! packages.append("ctypes.com.tools") ! package_dir["ctypes.com.tools"] = "win32/com/tools" ! ! packages.append("ctypes.com.test") ! package_dir["ctypes.com.test"] = "win32/com/test" ! ! ################################################################ ! # options for distutils, and ctypes.com samples # setup_options = {} --- 270,274 ---- ################################################################ ! # options for distutils # setup_options = {} *************** *** 296,323 **** setup_options["sdist"] = {"template": "MANIFEST.windows.in", "force_manifest": 1} - - import glob - data_files = [("ctypes/com/samples", - glob.glob("win32/com/samples/*.py") + - glob.glob("win32/com/samples/*.txt")), - - ("ctypes/com/samples/server", - glob.glob("win32/com/samples/server/*.py") + - glob.glob("win32/com/samples/server/*.txt")), - - ("ctypes/com/samples/server/control", - glob.glob("win32/com/samples/server/control/*.py") + - glob.glob("win32/com/samples/server/control/*.txt") + - glob.glob("win32/com/samples/server/control/*.html")), - - ("ctypes/com/samples/server/IExplorer", - glob.glob("win32/com/samples/server/IExplorer/*.py") + - glob.glob("win32/com/samples/server/IExplorer/*.txt") + - glob.glob("win32/com/samples/server/IExplorer/*.html")), - ] - else: setup_options["sdist"] = {"template": "MANIFEST.other.in", "force_manifest": 1} ! data_files = [] ################################################################ --- 281,287 ---- setup_options["sdist"] = {"template": "MANIFEST.windows.in", "force_manifest": 1} else: setup_options["sdist"] = {"template": "MANIFEST.other.in", "force_manifest": 1} ! data_files = [] ################################################################ |