[Checkins] SVN: Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/ fix, tests too

Adam Groszer agroszer at gmail.com
Tue Jun 15 12:42:34 EDT 2010


Log message for revision 113497:
  fix, tests too

Changed:
  U   Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/README.txt
  U   Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/build.py

-=-
Modified: Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/README.txt
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/README.txt	2010-06-15 16:40:32 UTC (rev 113496)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/README.txt	2010-06-15 16:42:33 UTC (rev 113497)
@@ -37,10 +37,10 @@
     DEBUG - Got a file: zope.proxy-3.4.2-py2.4-win32.egg
     DEBUG - Got a file: zope.proxy-3.4.0-py2.5-win32.egg
     DEBUG - Got a file: zope.proxy-3.4.0.zip
-    DEBUG - Checking if build required for zope.proxy 3.4.0 py25_32
-    DEBUG - Build not required for zope.proxy 3.4.0 py25_32
-    DEBUG - Checking if build required for zope.proxy 3.4.0 py26_32
-    DEBUG - Build required for zope.proxy 3.4.0 py26_32
+    DEBUG - Checking if build required for [zope.proxy_34_to_35] zope.proxy 3.4.0 py25_32
+    DEBUG - Build not required for [zope.proxy_34_to_35] zope.proxy 3.4.0 py25_32
+    DEBUG - Checking if build required for [zope.proxy_34_to_35] zope.proxy 3.4.0 py26_32
+    DEBUG - Build required for [zope.proxy_34_to_35] zope.proxy 3.4.0 py26_32
     DEBUG - Command: svn co --non-interactive  svn://svn.zope.org/repos/main/zope.proxy/tags/3.4.0 ...wineggbuilder
     DEBUG - Output:
     A    /tmp/tmpgqt2dHwineggbuilder/bootstrap.py
@@ -63,7 +63,7 @@
     A    /tmp/tmpgqt2dHwineggbuilder/README.txt
      U   /tmp/tmpgqt2dHwineggbuilder
     Checked out revision 113298.
-    INFO - Starting build for zope.proxy 3.4.0 py26_32
+    INFO - Starting build for [zope.proxy_34_to_35] zope.proxy 3.4.0 py26_32
     DEBUG - Running: call c:\program files\msvc\msvcvars.bat
     c:\Python26\python setup.py build_ext --compiler msvc bdist_egg upload
     In: ...wineggbuilder
@@ -128,10 +128,10 @@
     running upload
     Submitting dist\zope.proxy-3.6.1dev.egg to http://pypi.refline.ch/eggs
     Server response (200): OK
-    DEBUG - Checking if build required for zope.proxy 3.4.1 py25_32
-    DEBUG - Build required for zope.proxy 3.4.1 py25_32
-    DEBUG - Checking if build required for zope.proxy 3.4.1 py26_32
-    DEBUG - Build required for zope.proxy 3.4.1 py26_32
+    DEBUG - Checking if build required for [zope.proxy_34_to_35] zope.proxy 3.4.1 py25_32
+    DEBUG - Build required for [zope.proxy_34_to_35] zope.proxy 3.4.1 py25_32
+    DEBUG - Checking if build required for [zope.proxy_34_to_35] zope.proxy 3.4.1 py26_32
+    DEBUG - Build required for [zope.proxy_34_to_35] zope.proxy 3.4.1 py26_32
     DEBUG - Command: svn co --non-interactive  svn://svn.zope.org/repos/main/zope.proxy/tags/3.4.1 ...wineggbuilder
     DEBUG - Output:
     A    /tmp/tmpKNdQxlwineggbuilder/bootstrap.py
@@ -157,7 +157,7 @@
     A    /tmp/tmpKNdQxlwineggbuilder/README.txt
      U   /tmp/tmpKNdQxlwineggbuilder
     Checked out revision 113298.
-    INFO - Starting build for zope.proxy 3.4.1 py25_32
+    INFO - Starting build for [zope.proxy_34_to_35] zope.proxy 3.4.1 py25_32
     DEBUG - Running: set PATH=%PATH%;c:\mingw32\bin
     c:\Python25\python setup.py build_ext --compiler mingw32 bdist_egg upload
     In: ...wineggbuilder
@@ -222,7 +222,7 @@
     running upload
     Submitting dist\zope.proxy-3.6.1dev.egg to http://pypi.refline.ch/eggs
     Server response (200): OK
-    INFO - Starting build for zope.proxy 3.4.1 py26_32
+    INFO - Starting build for [zope.proxy_34_to_35] zope.proxy 3.4.1 py26_32
     DEBUG - Running: call c:\program files\msvc\msvcvars.bat
     c:\Python26\python setup.py build_ext --compiler msvc bdist_egg upload
     In: ...wineggbuilder

Modified: Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/build.py
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/build.py	2010-06-15 16:40:32 UTC (rev 113496)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/src/zope/wineggbuilder/build.py	2010-06-15 16:42:33 UTC (rev 113497)
@@ -112,9 +112,9 @@
     for p in version.split('.'):
         try:
             # we try our best to convert to a comparable number
-            parts.append("%04d" % int(v))
+            parts.append("%04d" % int(p))
         except ValueError:
-            parts.append(v)
+            parts.append(p)
     return tuple(parts)
 
 class Package(object):



More information about the checkins mailing list