[py-svn] r57352 - py/release/0.9.x

hpk at codespeak.net hpk at codespeak.net
Sun Aug 17 15:02:52 CEST 2008


Author: hpk
Date: Sun Aug 17 15:02:50 2008
New Revision: 57352

Modified:
   py/release/0.9.x/MANIFEST
   py/release/0.9.x/setup.py
Log:
fixing win32 ...


Modified: py/release/0.9.x/MANIFEST
==============================================================================
--- py/release/0.9.x/MANIFEST	(original)
+++ py/release/0.9.x/MANIFEST	Sun Aug 17 15:02:50 2008
@@ -68,11 +68,6 @@
 py/bin/py.rest
 py/bin/py.test
 py/bin/pytest.cmd
-py/bin/win32/py.cleanup.cmd
-py/bin/win32/py.countloc.cmd
-py/bin/win32/py.lookup.cmd
-py/bin/win32/py.rest.cmd
-py/bin/win32/py.test.cmd
 py/builtin/__init__.py
 py/builtin/enumerate.py
 py/builtin/exception.py

Modified: py/release/0.9.x/setup.py
==============================================================================
--- py/release/0.9.x/setup.py	(original)
+++ py/release/0.9.x/setup.py	Sun Aug 17 15:02:50 2008
@@ -3,7 +3,7 @@
 
         svn+ssh://codespeak.net/svn/py/release/0.9.x, revision=57348
 
-    autogenerated by gensetup.py, 57350, Sun Aug 17 15:00:37 2008 CET
+    autogenerated by gensetup.py, 57350, Sun Aug 17 15:03:13 2008 CET
 """
 import os, sys
 from distutils.core import setup, Extension
@@ -164,7 +164,7 @@
 class my_install_scripts(install_scripts):
     def run(self):
         install_scripts.run(self)
-        print self.outfiles
+        #print self.outfiles
         for fn in self.outfiles:
             basename = os.path.basename(fn)
             if "." in basename:
@@ -179,7 +179,7 @@
                    os.remove(newname)
                 f = open(newname, 'w')
                 f.write("@echo off\n")
-                f.write('python "~dp0\%s" %%*\n' % basename)
+                f.write('python "~dp0\%s" %%*\n' % newbasename)
                 f.close()
         
 cmdclass = {'install_scripts': my_install_scripts}



More information about the pytest-commit mailing list