[Checkins] SVN: zopyx.smartprintng.server/buildout/trunk/ moved

Andreas Jung andreas at andreas-jung.com
Thu May 21 04:10:03 EDT 2009


Log message for revision 100185:
  moved
  

Changed:
  A   zopyx.smartprintng.server/buildout/trunk/bootstrap.py
  A   zopyx.smartprintng.server/buildout/trunk/buildout.cfg
  A   zopyx.smartprintng.server/buildout/trunk/etc/
  A   zopyx.smartprintng.server/buildout/trunk/setup.py
  A   zopyx.smartprintng.server/buildout/trunk/versions.cfg
  D   zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/bootstrap.py
  D   zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/buildout.cfg
  D   zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/etc/
  D   zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/setup.py
  D   zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/versions.cfg

-=-
Copied: zopyx.smartprintng.server/buildout/trunk/bootstrap.py (from rev 100183, zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/bootstrap.py)
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/bootstrap.py	                        (rev 0)
+++ zopyx.smartprintng.server/buildout/trunk/bootstrap.py	2009-05-21 08:10:03 UTC (rev 100185)
@@ -0,0 +1,84 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Bootstrap a buildout-based project
+
+Simply run this script in a directory containing a buildout.cfg.
+The script accepts buildout command-line options, so you can
+use the -c option to specify an alternate configuration file.
+
+$Id: bootstrap.py 85041 2008-03-31 15:57:30Z andreasjung $
+"""
+
+import os, shutil, sys, tempfile, urllib2, logging
+
+def remove_old_logger_handlers():
+    # zc.buildout installs a new log stream on every call of
+    # main(). We remove any leftover handlers to avoid multiple output
+    # of same content (doubled lines etc.)
+    root_logger = logging.getLogger()
+    if 'zc.buildout' in root_logger.manager.loggerDict.keys():
+        logger = logging.getLogger('zc.buildout')
+        for handler in logger.handlers:
+            logger.removeHandler(handler)
+    return
+
+
+tmpeggs = tempfile.mkdtemp()
+
+try:
+    import pkg_resources
+except ImportError:
+    ez = {}
+    exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
+                         ).read() in ez
+    ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
+
+    import pkg_resources
+
+if sys.platform == 'win32':
+    def quote(c):
+        if ' ' in c:
+            return '"%s"' % c # work around spawn lamosity on windows
+        else:
+            return c
+else:
+    def quote (c):
+        return c
+
+cmd = 'from setuptools.command.easy_install import main; main()'
+ws  = pkg_resources.working_set
+assert os.spawnle(
+    os.P_WAIT, sys.executable, quote (sys.executable),
+    '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout',
+    dict(os.environ,
+         PYTHONPATH=
+         ws.find(pkg_resources.Requirement.parse('setuptools')).location
+         ),
+    ) == 0
+
+ws.add_entry(tmpeggs)
+ws.require('zc.buildout')
+import zc.buildout.buildout
+zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
+remove_old_logger_handlers()
+shutil.rmtree(tmpeggs)
+
+# grokproject specific addition to standard bootstrap.py:
+# Install eggbasket too.  This should be verbose to give the user
+# information about what is happening, since this can take a while.
+zc.buildout.buildout.main(sys.argv[1:] + ['-v', 'install', 'eggbasket'])
+if sys.platform == 'win32':
+    print "Now you can run 'bin\buildout.exe'"
+else:
+    print "Now you can run 'bin/buildout'"

Copied: zopyx.smartprintng.server/buildout/trunk/buildout.cfg (from rev 100183, zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/buildout.cfg)
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/buildout.cfg	                        (rev 0)
+++ zopyx.smartprintng.server/buildout/trunk/buildout.cfg	2009-05-21 08:10:03 UTC (rev 100185)
@@ -0,0 +1,79 @@
+[buildout]
+parts = eggbasket app i18n test data log zpasswd
+        zope_conf site_zcml zdaemon_conf deploy_ini debug_ini
+newest = false
+find-links = http://download.zope.org/distribution/
+extends = versions.cfg
+# eggs will be installed in the default buildout location
+# (see .buildout/default.cfg in your home directory)
+# unless you specify an eggs-directory option here.
+
+versions = versions
+
+[app]
+recipe = zc.recipe.egg
+eggs = zopyx_smartprintng_server
+       z3c.evalexception>=2.0
+       Paste
+       PasteScript
+       PasteDeploy
+interpreter = python-console
+
+[data]
+recipe = zc.recipe.filestorage
+
+[log]
+recipe = zc.recipe.filestorage
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zopyx_smartprintng_server
+defaults = ['--tests-pattern', '^f?tests$', '-v']
+
+# this section named so that the i18n scripts are called bin/i18n...
+[i18n]
+recipe = z3c.recipe.i18n:i18n
+packages = zopyx_smartprintng_server
+eggs = zopyx_smartprintng_server
+domain = zopyx_smartprintng_server
+output = src/zopyx_smartprintng_server/locales
+zcml =
+
+# This section is named so that the zpasswd utility is
+# called `zpasswd`
+[zpasswd]
+recipe = z3c.recipe.dev:script
+eggs = zopyx_smartprintng_server
+module = zope.app.server.zpasswd
+method = main
+
+[zope_conf]
+recipe = z3c.recipe.template
+input = etc/zope.conf.in
+output = ${buildout:parts-directory}/etc/zope.conf
+
+[site_zcml]
+recipe = z3c.recipe.template
+input = etc/site.zcml.in
+output = ${buildout:parts-directory}/etc/site.zcml
+
+[zdaemon_conf]
+recipe = z3c.recipe.template
+input = etc/zdaemon.conf.in
+output = ${buildout:parts-directory}/etc/zdaemon.conf
+
+[deploy_ini]
+recipe = z3c.recipe.template
+input = etc/deploy.ini.in
+output = ${buildout:parts-directory}/etc/deploy.ini
+
+[debug_ini]
+recipe = z3c.recipe.template
+input = etc/debug.ini.in
+output = ${buildout:parts-directory}/etc/debug.ini
+
+
+[eggbasket]
+recipe = z3c.recipe.eggbasket
+eggs = grok
+url = http://grok.zope.org/releaseinfo/grok-eggs-1.0a3.tgz

Copied: zopyx.smartprintng.server/buildout/trunk/setup.py (from rev 100183, zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/setup.py)
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/setup.py	                        (rev 0)
+++ zopyx.smartprintng.server/buildout/trunk/setup.py	2009-05-21 08:10:03 UTC (rev 100185)
@@ -0,0 +1,35 @@
+from setuptools import setup, find_packages
+
+version = '0.0'
+
+setup(name='zopyx_smartprintng_server',
+      version=version,
+      description="",
+      long_description="""\
+""",
+      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[], 
+      keywords="",
+      author="",
+      author_email="",
+      url="",
+      license="",
+      package_dir={'': 'src'},
+      packages=find_packages('src'),
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=['setuptools',
+                        'grok',
+                        'grokui.admin',
+                        'z3c.testsetup',
+                        'grokcore.startup',
+                        # Add extra requirements here
+                        ],
+      entry_points = """
+      [console_scripts]
+      zopyx_smartprintng_server-debug = grokcore.startup:interactive_debug_prompt
+      zopyx_smartprintng_server-ctl = grokcore.startup:zdaemon_controller
+      [paste.app_factory]
+      main = grokcore.startup:application_factory
+      """,
+      )

Copied: zopyx.smartprintng.server/buildout/trunk/versions.cfg (from rev 100183, zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/versions.cfg)
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/versions.cfg	                        (rev 0)
+++ zopyx.smartprintng.server/buildout/trunk/versions.cfg	2009-05-21 08:10:03 UTC (rev 100185)
@@ -0,0 +1,136 @@
+# This file contains a list of versions of the various grok modules that
+# belong together.
+# It was downloaded from http://grok.zope.org/releaseinfo/grok-1.0a3.cfg
+# when this project was created.
+
+[versions]
+grok = 1.0a3
+ClientForm = 0.2.9
+docutils = 0.4
+grokcore.component = 1.6
+grokcore.formlib = 1.1
+grokcore.security = 1.0
+grokcore.view = 1.5
+grokcore.viewlet = 1.0
+grokui.admin = 0.3.2
+martian = 0.11
+mechanize = 0.1.7b
+Pygments = 0.8.1
+pytz = 2007k
+RestrictedPython = 3.4.2
+simplejson = 1.7.1
+z3c.autoinclude = 0.2.2
+z3c.flashmessage = 1.0
+z3c.testsetup = 0.2.1
+zc.catalog = 1.2.0
+ZConfig = 2.5.1
+zc.recipe.testrunner = 1.0.0
+zdaemon = 2.0.2
+ZODB3 = 3.8.1
+zodbcode = 3.4.0
+zope.annotation = 3.4.1
+zope.app.apidoc = 3.4.3
+zope.app.applicationcontrol = 3.4.3
+zope.app.appsetup = 3.4.1
+zope.app.authentication = 3.4.4
+zope.app.basicskin = 3.4.0
+zope.app.broken = 3.4.0
+zope.app.catalog = 3.5.1
+zope.app.component = 3.4.1
+zope.app.container = 3.5.6
+zope.app.content = 3.4.0
+zope.app.debug = 3.4.1
+zope.app.dependable = 3.4.0
+zope.app.error = 3.5.1
+zope.app.exception = 3.4.1
+zope.app.file = 3.4.4
+zope.app.folder = 3.4.0
+zope.app.form = 3.4.1
+zope.app.generations = 3.4.1
+zope.app.http = 3.4.1
+zope.app.i18n = 3.4.4
+zope.app.interface = 3.4.0
+zope.app.intid = 3.4.1
+zope.app.keyreference = 3.4.1
+zope.app.locales = 3.4.5
+zope.app.onlinehelp = 3.4.1
+zope.app.pagetemplate = 3.4.1
+zope.app.preference = 3.4.1
+zope.app.principalannotation = 3.4.0
+zope.app.publication = 3.4.3
+zope.app.publisher = 3.5.1
+zope.app.renderer = 3.4.0
+zope.app.rotterdam = 3.4.1
+zope.app.schema = 3.4.0
+zope.app.security = 3.5.2
+zope.app.securitypolicy = 3.4.6
+zope.app.server = 3.4.2
+zope.app.session = 3.5.1
+zope.app.skins = 3.4.0
+zope.app.testing = 3.4.3
+zope.app.tree = 3.4.0
+zope.app.twisted = 3.4.1
+zope.app.wsgi = 3.4.1
+zope.app.zapi = 3.4.0
+zope.app.zcmlfiles = 3.4.3
+zope.app.zopeappgenerations = 3.4.0
+zope.cachedescriptors = 3.4.1
+zope.component = 3.4.0
+zope.configuration = 3.4.0
+zope.contentprovider = 3.4.0
+zope.contenttype = 3.4.0
+zope.copypastemove = 3.4.0
+zope.datetime = 3.4.0
+zope.deferredimport = 3.4.0
+zope.deprecation = 3.4.0
+zope.dottedname = 3.4.2
+zope.dublincore = 3.4.0
+zope.error = 3.5.1
+zope.event = 3.4.0
+zope.exceptions = 3.4.0
+zope.filerepresentation = 3.4.0
+zope.formlib = 3.4.0
+zope.hookable = 3.4.0
+zope.i18n = 3.4.0
+zope.i18nmessageid = 3.4.3
+zope.index = 3.4.1
+zope.interface = 3.4.1
+zope.lifecycleevent = 3.4.0
+zope.location = 3.4.0
+zope.minmax = 1.1.0
+zope.modulealias = 3.4.0
+zope.pagetemplate = 3.4.0
+zope.proxy = 3.4.2
+zope.publisher = 3.4.6
+zope.schema = 3.4.0
+zope.security = 3.4.1
+zope.securitypolicy = 3.4.1
+zope.server = 3.4.3
+zope.session = 3.4.1
+zope.size = 3.4.0
+zope.structuredtext = 3.4.0
+zope.tal = 3.4.1
+zope.tales = 3.4.0
+zope.testbrowser = 3.4.2
+zope.testing = 3.6.0
+zope.thread = 3.4
+zope.traversing = 3.4.1
+zope.viewlet = 3.4.2
+
+
+# Here we pin the recipes and other packages that are not in the
+# downloaded versions.cfg of grok
+Paste = 1.7.2
+PasteDeploy = 1.3.2
+PasteScript = 1.7.3
+setuptools = 0.6c9
+z3c.evalexception = 2.0
+z3c.recipe.eggbasket = 0.4.1
+z3c.recipe.i18n = 0.5.0
+z3c.recipe.template = 0.1
+zc.buildout = 1.1.1
+zc.recipe.egg = 1.1.0
+zc.recipe.filestorage = 1.0.1
+grokcore.startup = 0.2
+
+

Deleted: zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/bootstrap.py
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/bootstrap.py	2009-05-21 08:09:25 UTC (rev 100184)
+++ zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/bootstrap.py	2009-05-21 08:10:03 UTC (rev 100185)
@@ -1,84 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-
-$Id: bootstrap.py 85041 2008-03-31 15:57:30Z andreasjung $
-"""
-
-import os, shutil, sys, tempfile, urllib2, logging
-
-def remove_old_logger_handlers():
-    # zc.buildout installs a new log stream on every call of
-    # main(). We remove any leftover handlers to avoid multiple output
-    # of same content (doubled lines etc.)
-    root_logger = logging.getLogger()
-    if 'zc.buildout' in root_logger.manager.loggerDict.keys():
-        logger = logging.getLogger('zc.buildout')
-        for handler in logger.handlers:
-            logger.removeHandler(handler)
-    return
-
-
-tmpeggs = tempfile.mkdtemp()
-
-try:
-    import pkg_resources
-except ImportError:
-    ez = {}
-    exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                         ).read() in ez
-    ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    import pkg_resources
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    def quote (c):
-        return c
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-ws  = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, quote (sys.executable),
-    '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout',
-    dict(os.environ,
-         PYTHONPATH=
-         ws.find(pkg_resources.Requirement.parse('setuptools')).location
-         ),
-    ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout')
-import zc.buildout.buildout
-zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
-remove_old_logger_handlers()
-shutil.rmtree(tmpeggs)
-
-# grokproject specific addition to standard bootstrap.py:
-# Install eggbasket too.  This should be verbose to give the user
-# information about what is happening, since this can take a while.
-zc.buildout.buildout.main(sys.argv[1:] + ['-v', 'install', 'eggbasket'])
-if sys.platform == 'win32':
-    print "Now you can run 'bin\buildout.exe'"
-else:
-    print "Now you can run 'bin/buildout'"

Deleted: zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/buildout.cfg
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/buildout.cfg	2009-05-21 08:09:25 UTC (rev 100184)
+++ zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/buildout.cfg	2009-05-21 08:10:03 UTC (rev 100185)
@@ -1,79 +0,0 @@
-[buildout]
-parts = eggbasket app i18n test data log zpasswd
-        zope_conf site_zcml zdaemon_conf deploy_ini debug_ini
-newest = false
-find-links = http://download.zope.org/distribution/
-extends = versions.cfg
-# eggs will be installed in the default buildout location
-# (see .buildout/default.cfg in your home directory)
-# unless you specify an eggs-directory option here.
-
-versions = versions
-
-[app]
-recipe = zc.recipe.egg
-eggs = zopyx_smartprintng_server
-       z3c.evalexception>=2.0
-       Paste
-       PasteScript
-       PasteDeploy
-interpreter = python-console
-
-[data]
-recipe = zc.recipe.filestorage
-
-[log]
-recipe = zc.recipe.filestorage
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zopyx_smartprintng_server
-defaults = ['--tests-pattern', '^f?tests$', '-v']
-
-# this section named so that the i18n scripts are called bin/i18n...
-[i18n]
-recipe = z3c.recipe.i18n:i18n
-packages = zopyx_smartprintng_server
-eggs = zopyx_smartprintng_server
-domain = zopyx_smartprintng_server
-output = src/zopyx_smartprintng_server/locales
-zcml =
-
-# This section is named so that the zpasswd utility is
-# called `zpasswd`
-[zpasswd]
-recipe = z3c.recipe.dev:script
-eggs = zopyx_smartprintng_server
-module = zope.app.server.zpasswd
-method = main
-
-[zope_conf]
-recipe = z3c.recipe.template
-input = etc/zope.conf.in
-output = ${buildout:parts-directory}/etc/zope.conf
-
-[site_zcml]
-recipe = z3c.recipe.template
-input = etc/site.zcml.in
-output = ${buildout:parts-directory}/etc/site.zcml
-
-[zdaemon_conf]
-recipe = z3c.recipe.template
-input = etc/zdaemon.conf.in
-output = ${buildout:parts-directory}/etc/zdaemon.conf
-
-[deploy_ini]
-recipe = z3c.recipe.template
-input = etc/deploy.ini.in
-output = ${buildout:parts-directory}/etc/deploy.ini
-
-[debug_ini]
-recipe = z3c.recipe.template
-input = etc/debug.ini.in
-output = ${buildout:parts-directory}/etc/debug.ini
-
-
-[eggbasket]
-recipe = z3c.recipe.eggbasket
-eggs = grok
-url = http://grok.zope.org/releaseinfo/grok-eggs-1.0a3.tgz

Deleted: zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/setup.py
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/setup.py	2009-05-21 08:09:25 UTC (rev 100184)
+++ zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/setup.py	2009-05-21 08:10:03 UTC (rev 100185)
@@ -1,35 +0,0 @@
-from setuptools import setup, find_packages
-
-version = '0.0'
-
-setup(name='zopyx_smartprintng_server',
-      version=version,
-      description="",
-      long_description="""\
-""",
-      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[], 
-      keywords="",
-      author="",
-      author_email="",
-      url="",
-      license="",
-      package_dir={'': 'src'},
-      packages=find_packages('src'),
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=['setuptools',
-                        'grok',
-                        'grokui.admin',
-                        'z3c.testsetup',
-                        'grokcore.startup',
-                        # Add extra requirements here
-                        ],
-      entry_points = """
-      [console_scripts]
-      zopyx_smartprintng_server-debug = grokcore.startup:interactive_debug_prompt
-      zopyx_smartprintng_server-ctl = grokcore.startup:zdaemon_controller
-      [paste.app_factory]
-      main = grokcore.startup:application_factory
-      """,
-      )

Deleted: zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/versions.cfg
===================================================================
--- zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/versions.cfg	2009-05-21 08:09:25 UTC (rev 100184)
+++ zopyx.smartprintng.server/buildout/trunk/zopyx_smartprintng_server/versions.cfg	2009-05-21 08:10:03 UTC (rev 100185)
@@ -1,136 +0,0 @@
-# This file contains a list of versions of the various grok modules that
-# belong together.
-# It was downloaded from http://grok.zope.org/releaseinfo/grok-1.0a3.cfg
-# when this project was created.
-
-[versions]
-grok = 1.0a3
-ClientForm = 0.2.9
-docutils = 0.4
-grokcore.component = 1.6
-grokcore.formlib = 1.1
-grokcore.security = 1.0
-grokcore.view = 1.5
-grokcore.viewlet = 1.0
-grokui.admin = 0.3.2
-martian = 0.11
-mechanize = 0.1.7b
-Pygments = 0.8.1
-pytz = 2007k
-RestrictedPython = 3.4.2
-simplejson = 1.7.1
-z3c.autoinclude = 0.2.2
-z3c.flashmessage = 1.0
-z3c.testsetup = 0.2.1
-zc.catalog = 1.2.0
-ZConfig = 2.5.1
-zc.recipe.testrunner = 1.0.0
-zdaemon = 2.0.2
-ZODB3 = 3.8.1
-zodbcode = 3.4.0
-zope.annotation = 3.4.1
-zope.app.apidoc = 3.4.3
-zope.app.applicationcontrol = 3.4.3
-zope.app.appsetup = 3.4.1
-zope.app.authentication = 3.4.4
-zope.app.basicskin = 3.4.0
-zope.app.broken = 3.4.0
-zope.app.catalog = 3.5.1
-zope.app.component = 3.4.1
-zope.app.container = 3.5.6
-zope.app.content = 3.4.0
-zope.app.debug = 3.4.1
-zope.app.dependable = 3.4.0
-zope.app.error = 3.5.1
-zope.app.exception = 3.4.1
-zope.app.file = 3.4.4
-zope.app.folder = 3.4.0
-zope.app.form = 3.4.1
-zope.app.generations = 3.4.1
-zope.app.http = 3.4.1
-zope.app.i18n = 3.4.4
-zope.app.interface = 3.4.0
-zope.app.intid = 3.4.1
-zope.app.keyreference = 3.4.1
-zope.app.locales = 3.4.5
-zope.app.onlinehelp = 3.4.1
-zope.app.pagetemplate = 3.4.1
-zope.app.preference = 3.4.1
-zope.app.principalannotation = 3.4.0
-zope.app.publication = 3.4.3
-zope.app.publisher = 3.5.1
-zope.app.renderer = 3.4.0
-zope.app.rotterdam = 3.4.1
-zope.app.schema = 3.4.0
-zope.app.security = 3.5.2
-zope.app.securitypolicy = 3.4.6
-zope.app.server = 3.4.2
-zope.app.session = 3.5.1
-zope.app.skins = 3.4.0
-zope.app.testing = 3.4.3
-zope.app.tree = 3.4.0
-zope.app.twisted = 3.4.1
-zope.app.wsgi = 3.4.1
-zope.app.zapi = 3.4.0
-zope.app.zcmlfiles = 3.4.3
-zope.app.zopeappgenerations = 3.4.0
-zope.cachedescriptors = 3.4.1
-zope.component = 3.4.0
-zope.configuration = 3.4.0
-zope.contentprovider = 3.4.0
-zope.contenttype = 3.4.0
-zope.copypastemove = 3.4.0
-zope.datetime = 3.4.0
-zope.deferredimport = 3.4.0
-zope.deprecation = 3.4.0
-zope.dottedname = 3.4.2
-zope.dublincore = 3.4.0
-zope.error = 3.5.1
-zope.event = 3.4.0
-zope.exceptions = 3.4.0
-zope.filerepresentation = 3.4.0
-zope.formlib = 3.4.0
-zope.hookable = 3.4.0
-zope.i18n = 3.4.0
-zope.i18nmessageid = 3.4.3
-zope.index = 3.4.1
-zope.interface = 3.4.1
-zope.lifecycleevent = 3.4.0
-zope.location = 3.4.0
-zope.minmax = 1.1.0
-zope.modulealias = 3.4.0
-zope.pagetemplate = 3.4.0
-zope.proxy = 3.4.2
-zope.publisher = 3.4.6
-zope.schema = 3.4.0
-zope.security = 3.4.1
-zope.securitypolicy = 3.4.1
-zope.server = 3.4.3
-zope.session = 3.4.1
-zope.size = 3.4.0
-zope.structuredtext = 3.4.0
-zope.tal = 3.4.1
-zope.tales = 3.4.0
-zope.testbrowser = 3.4.2
-zope.testing = 3.6.0
-zope.thread = 3.4
-zope.traversing = 3.4.1
-zope.viewlet = 3.4.2
-
-
-# Here we pin the recipes and other packages that are not in the
-# downloaded versions.cfg of grok
-Paste = 1.7.2
-PasteDeploy = 1.3.2
-PasteScript = 1.7.3
-setuptools = 0.6c9
-z3c.evalexception = 2.0
-z3c.recipe.eggbasket = 0.4.1
-z3c.recipe.i18n = 0.5.0
-z3c.recipe.template = 0.1
-zc.buildout = 1.1.1
-zc.recipe.egg = 1.1.0
-zc.recipe.filestorage = 1.0.1
-grokcore.startup = 0.2
-
-



More information about the Checkins mailing list