Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
fix, tests too
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Jun 15, 2010
1 parent a4bbbd1 commit 6e02a74
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions src/zope/wineggbuilder/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ Let's see:
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
Expand All @@ -63,7 +63,7 @@ Let's see:
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
Expand Down Expand Up @@ -128,10 +128,10 @@ Let's see:
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
Expand All @@ -157,7 +157,7 @@ Let's see:
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
Expand Down Expand Up @@ -222,7 +222,7 @@ Let's see:
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
Expand Down
4 changes: 2 additions & 2 deletions src/zope/wineggbuilder/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ def versionToTuple(version):
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):
Expand Down

0 comments on commit 6e02a74

Please sign in to comment.