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

Commit

Permalink
bit more info, sections sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Jun 18, 2010
1 parent ec99901 commit f8b23f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/zope/wineggbuilder/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Let's see:
>>> build.main([testininame, '-v', '-s']) # doctest: +REPORT_NDIFF
INFO - loading configuration from ...zope.wineggbuilder\trunk\src\zope\wineggbuilder\test.ini
INFO - Starting to build
INFO - Processing zope.proxy [zope.proxy_34_to_35]
DEBUG - getting http://pypi.python.org/simple/zope.proxy/
DEBUG - Got a file: zope.proxy-3.4.0-py2.4-win32.egg
DEBUG - Got a file: zope.proxy-3.4.0.tar.gz
Expand Down
4 changes: 3 additions & 1 deletion src/zope/wineggbuilder/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ def read(self, sectionName, config, compilers):
self.targets.append(compilers[target])

def build(self, status):
LOGGER.info("Processing %s [%s]", self.name, self.sectionName)

#1 get versions from pypi
pypi = self.pypiKlass()
versions = pypi.package_releases(self.name, show_hidden=True)
Expand Down Expand Up @@ -283,7 +285,7 @@ def __init__(self, configFileName, options):
self.compilers[cmp] = Compiler(cmp, config, options)

self.packages = []
for section in config.sections():
for section in sorted(config.sections()):
if section == base.BUILD_SECTION:
continue
if section in self.compilers:
Expand Down

0 comments on commit f8b23f9

Please sign in to comment.