[Checkins] SVN: groktoolkit/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Fri Mar 22 15:08:40 UTC 2013


Log message for revision 130154:
  Moved to GitHub.

Changed:
  D   groktoolkit/trunk/COPYRIGHT.txt
  D   groktoolkit/trunk/LICENSE.txt
  A   groktoolkit/trunk/MOVED_TO_GITHUB
  D   groktoolkit/trunk/bootstrap.py
  D   groktoolkit/trunk/buildbot.cfg
  D   groktoolkit/trunk/buildout.cfg
  D   groktoolkit/trunk/doc/
  D   groktoolkit/trunk/documentation.cfg
  D   groktoolkit/trunk/ecosystem.cfg
  D   groktoolkit/trunk/grok-ecosystem.cfg
  D   groktoolkit/trunk/grok.cfg
  D   groktoolkit/trunk/setup.py
  D   groktoolkit/trunk/src/

-=-
Deleted: groktoolkit/trunk/COPYRIGHT.txt
===================================================================
--- groktoolkit/trunk/COPYRIGHT.txt	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/COPYRIGHT.txt	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: groktoolkit/trunk/LICENSE.txt
===================================================================
--- groktoolkit/trunk/LICENSE.txt	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/LICENSE.txt	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,44 +0,0 @@
-Zope Public License (ZPL) Version 2.1
-
-A copyright notice accompanies this license document that identifies the
-copyright holders.
-
-This license has been certified as open source. It has also been designated as
-GPL compatible by the Free Software Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions in source code must retain the accompanying copyright
-notice, this list of conditions, and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying copyright
-notice, this list of conditions, and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to endorse or promote
-products derived from this software without prior written permission from the
-copyright holders.
-
-4. The right to distribute this software or to use it for any purpose does not
-give you the right to use Servicemarks (sm) or Trademarks (tm) of the
-copyright
-holders. Use of them is covered by separate agreement with the copyright
-holders.
-
-5. If any files are modified, you must cause the modified files to carry
-prominent notices stating that you changed the files and the date of any
-change.
-
-Disclaimer
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
-OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: groktoolkit/trunk/MOVED_TO_GITHUB
===================================================================
--- groktoolkit/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ groktoolkit/trunk/MOVED_TO_GITHUB	2013-03-22 15:08:39 UTC (rev 130154)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/groktoolkit
\ No newline at end of file

Deleted: groktoolkit/trunk/bootstrap.py
===================================================================
--- groktoolkit/trunk/bootstrap.py	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/bootstrap.py	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,260 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Foundation 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.
-"""
-
-import os, shutil, sys, tempfile, textwrap, urllib, urllib2, subprocess
-from optparse import OptionParser
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    quote = str
-
-# See zc.buildout.easy_install._has_broken_dash_S for motivation and comments.
-stdout, stderr = subprocess.Popen(
-    [sys.executable, '-Sc',
-     'try:\n'
-     '    import ConfigParser\n'
-     'except ImportError:\n'
-     '    print 1\n'
-     'else:\n'
-     '    print 0\n'],
-    stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
-has_broken_dash_S = bool(int(stdout.strip()))
-
-# In order to be more robust in the face of system Pythons, we want to
-# run without site-packages loaded.  This is somewhat tricky, in
-# particular because Python 2.6's distutils imports site, so starting
-# with the -S flag is not sufficient.  However, we'll start with that:
-if not has_broken_dash_S and 'site' in sys.modules:
-    # We will restart with python -S.
-    args = sys.argv[:]
-    args[0:0] = [sys.executable, '-S']
-    args = map(quote, args)
-    os.execv(sys.executable, args)
-# Now we are running with -S.  We'll get the clean sys.path, import site
-# because distutils will do it later, and then reset the path and clean
-# out any namespace packages from site-packages that might have been
-# loaded by .pth files.
-clean_path = sys.path[:]
-import site
-sys.path[:] = clean_path
-for k, v in sys.modules.items():
-    if k in ('setuptools', 'pkg_resources') or (
-        hasattr(v, '__path__') and
-        len(v.__path__)==1 and
-        not os.path.exists(os.path.join(v.__path__[0],'__init__.py'))):
-        # This is a namespace package.  Remove it.
-        sys.modules.pop(k)
-
-is_jython = sys.platform.startswith('java')
-
-setuptools_source = 'http://peak.telecommunity.com/dist/ez_setup.py'
-distribute_source = 'http://python-distribute.org/distribute_setup.py'
-
-# parsing arguments
-def normalize_to_url(option, opt_str, value, parser):
-    if value:
-        if '://' not in value: # It doesn't smell like a URL.
-            value = 'file://%s' % (
-                urllib.pathname2url(
-                    os.path.abspath(os.path.expanduser(value))),)
-        if opt_str == '--download-base' and not value.endswith('/'):
-            # Download base needs a trailing slash to make the world happy.
-            value += '/'
-    else:
-        value = None
-    name = opt_str[2:].replace('-', '_')
-    setattr(parser.values, name, value)
-
-usage = '''\
-[DESIRED PYTHON FOR BUILDOUT] bootstrap.py [options]
-
-Bootstraps a buildout-based project.
-
-Simply run this script in a directory containing a buildout.cfg, using the
-Python that you want bin/buildout to use.
-
-Note that by using --setup-source and --download-base to point to
-local resources, you can keep this script from going over the network.
-'''
-
-parser = OptionParser(usage=usage)
-parser.add_option("-v", "--version", dest="version",
-                          help="use a specific zc.buildout version")
-parser.add_option("-d", "--distribute",
-                   action="store_true", dest="use_distribute", default=False,
-                   help="Use Distribute rather than Setuptools.")
-parser.add_option("--setup-source", action="callback", dest="setup_source",
-                  callback=normalize_to_url, nargs=1, type="string",
-                  help=("Specify a URL or file location for the setup file. "
-                        "If you use Setuptools, this will default to " +
-                        setuptools_source + "; if you use Distribute, this "
-                        "will default to " + distribute_source +"."))
-parser.add_option("--download-base", action="callback", dest="download_base",
-                  callback=normalize_to_url, nargs=1, type="string",
-                  help=("Specify a URL or directory for downloading "
-                        "zc.buildout and either Setuptools or Distribute. "
-                        "Defaults to PyPI."))
-parser.add_option("--eggs",
-                  help=("Specify a directory for storing eggs.  Defaults to "
-                        "a temporary directory that is deleted when the "
-                        "bootstrap script completes."))
-parser.add_option("-t", "--accept-buildout-test-releases",
-                  dest='accept_buildout_test_releases',
-                  action="store_true", default=False,
-                  help=("Normally, if you do not specify a --version, the "
-                        "bootstrap script and buildout gets the newest "
-                        "*final* versions of zc.buildout and its recipes and "
-                        "extensions for you.  If you use this flag, "
-                        "bootstrap and buildout will get the newest releases "
-                        "even if they are alphas or betas."))
-parser.add_option("-c", None, action="store", dest="config_file",
-                   help=("Specify the path to the buildout configuration "
-                         "file to be used."))
-
-options, args = parser.parse_args()
-
-# if -c was provided, we push it back into args for buildout's main function
-if options.config_file is not None:
-    args += ['-c', options.config_file]
-
-if options.eggs:
-    eggs_dir = os.path.abspath(os.path.expanduser(options.eggs))
-else:
-    eggs_dir = tempfile.mkdtemp()
-
-if options.setup_source is None:
-    if options.use_distribute:
-        options.setup_source = distribute_source
-    else:
-        options.setup_source = setuptools_source
-
-if options.accept_buildout_test_releases:
-    args.append('buildout:accept-buildout-test-releases=true')
-args.append('bootstrap')
-
-try:
-    import pkg_resources
-    import setuptools # A flag.  Sometimes pkg_resources is installed alone.
-    if not hasattr(pkg_resources, '_distribute'):
-        raise ImportError
-except ImportError:
-    ez_code = urllib2.urlopen(
-        options.setup_source).read().replace('\r\n', '\n')
-    ez = {}
-    exec ez_code in ez
-    setup_args = dict(to_dir=eggs_dir, download_delay=0)
-    if options.download_base:
-        setup_args['download_base'] = options.download_base
-    if options.use_distribute:
-        setup_args['no_fake'] = True
-    ez['use_setuptools'](**setup_args)
-    if 'pkg_resources' in sys.modules:
-        reload(sys.modules['pkg_resources'])
-    import pkg_resources
-    # This does not (always?) update the default working set.  We will
-    # do it.
-    for path in sys.path:
-        if path not in pkg_resources.working_set.entries:
-            pkg_resources.working_set.add_entry(path)
-
-cmd = [quote(sys.executable),
-       '-c',
-       quote('from setuptools.command.easy_install import main; main()'),
-       '-mqNxd',
-       quote(eggs_dir)]
-
-if not has_broken_dash_S:
-    cmd.insert(1, '-S')
-
-find_links = options.download_base
-if not find_links:
-    find_links = os.environ.get('bootstrap-testing-find-links')
-if find_links:
-    cmd.extend(['-f', quote(find_links)])
-
-if options.use_distribute:
-    setup_requirement = 'distribute'
-else:
-    setup_requirement = 'setuptools'
-ws = pkg_resources.working_set
-setup_requirement_path = ws.find(
-    pkg_resources.Requirement.parse(setup_requirement)).location
-env = dict(
-    os.environ,
-    PYTHONPATH=setup_requirement_path)
-
-requirement = 'zc.buildout'
-version = options.version
-if version is None and not options.accept_buildout_test_releases:
-    # Figure out the most recent final version of zc.buildout.
-    import setuptools.package_index
-    _final_parts = '*final-', '*final'
-    def _final_version(parsed_version):
-        for part in parsed_version:
-            if (part[:1] == '*') and (part not in _final_parts):
-                return False
-        return True
-    index = setuptools.package_index.PackageIndex(
-        search_path=[setup_requirement_path])
-    if find_links:
-        index.add_find_links((find_links,))
-    req = pkg_resources.Requirement.parse(requirement)
-    if index.obtain(req) is not None:
-        best = []
-        bestv = None
-        for dist in index[req.project_name]:
-            distv = dist.parsed_version
-            if _final_version(distv):
-                if bestv is None or distv > bestv:
-                    best = [dist]
-                    bestv = distv
-                elif distv == bestv:
-                    best.append(dist)
-        if best:
-            best.sort()
-            version = best[-1].version
-if version:
-    requirement = '=='.join((requirement, version))
-cmd.append(requirement)
-
-if is_jython:
-    import subprocess
-    exitcode = subprocess.Popen(cmd, env=env).wait()
-else: # Windows prefers this, apparently; otherwise we would prefer subprocess
-    exitcode = os.spawnle(*([os.P_WAIT, sys.executable] + cmd + [env]))
-if exitcode != 0:
-    sys.stdout.flush()
-    sys.stderr.flush()
-    print ("An error occurred when trying to install zc.buildout. "
-           "Look above this message for any errors that "
-           "were output by easy_install.")
-    sys.exit(exitcode)
-
-ws.add_entry(eggs_dir)
-ws.require(requirement)
-import zc.buildout.buildout
-zc.buildout.buildout.main(args)
-if not options.eggs: # clean up temporary egg directory
-    shutil.rmtree(eggs_dir)

Deleted: groktoolkit/trunk/buildbot.cfg
===================================================================
--- groktoolkit/trunk/buildbot.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/buildbot.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,38 +0,0 @@
-[buildout]
-extends = buildout.cfg
-parts -= omelette
-
-[sources]
-# Specify "read-only" sources for anonymous checkouts by the build slaves
-# in case of development checkouts.
-fanstatic = hg http://bitbucket.org/fanstatic/fanstatic
-grok = svn http://svn.zope.org/repos/main/grok/trunk
-grokcore.annotation = svn http://svn.zope.org/repos/main/grokcore.annotation/trunk
-grokcore.chameleon = svn http://svn.zope.org/repos/main/grokcore.chameleon/trunk
-grokcore.component = svn http://svn.zope.org/repos/main/grokcore.component/trunk
-grokcore.content = svn http://svn.zope.org/repos/main/grokcore.content/trunk
-grokcore.formlib = svn http://svn.zope.org/repos/main/grokcore.formlib/trunk
-grokcore.json = svn http://svn.zope.org/repos/main/grokcore.json/trunk
-grokcore.layout = svn http://svn.zope.org/repos/main/grokcore.layout/trunk
-grokcore.message = svn http://svn.zope.org/repos/main/grokcore.message/trunk
-grokcore.rest = svn http://svn.zope.org/repos/main/grokcore.rest/trunk
-grokcore.security = svn http://svn.zope.org/repos/main/grokcore.security/trunk
-grokcore.site = svn http://svn.zope.org/repos/main/grokcore.site/trunk
-grokcore.startup = svn http://svn.zope.org/repos/main/grokcore.startup/trunk
-grokcore.traverser = svn http://svn.zope.org/repos/main/grokcore.traverser/trunk
-grokcore.view = svn http://svn.zope.org/repos/main/grokcore.view/trunk
-grokcore.viewlet = svn http://svn.zope.org/repos/main/grokcore.viewlet/trunk
-grokcore.xmlrpc = svn http://svn.zope.org/repos/main/grokcore.xmlrpc/trunk
-grokui.admin = svn http://svn.zope.org/repos/main/grokui.admin/trunk
-grokui.base = svn http://svn.zope.org/repos/main/grokui.base/trunk
-martian = svn http://svn.zope.org/repos/main/martian/trunk
-megrok.chameleon = svn http://svn.zope.org/repos/main/megrok.chameleon/trunk
-megrok.layout = svn http://svn.zope.org/repos/main/megrok.layout/trunk
-megrok.menu = svn http://svn.zope.org/repos/main/megrok.menu/trunk
-z3c.autoinclude = svn http://svn.zope.org/repos/main/z3c.autoinclude/trunk
-z3c.evalexception = svn http://svn.zope.org/repos/main/z3c.evalexception/trunk
-z3c.flashmessage = svn http://svn.zope.org/repos/main/z3c.flashmessage/trunk
-zc.catalog = svn http://svn.zope.org/repos/main/zc.catalog/trunk
-zope.errorview = svn http://svn.zope.org/repos/main/zope.errorview/trunk
-zope.fanstatic = svn http://svn.zope.org/repos/main/zope.fanstatic/trunk
-zope.errorview = svn http://svn.zope.org/repos/main/zope.errorview/trunk
\ No newline at end of file

Deleted: groktoolkit/trunk/buildout.cfg
===================================================================
--- groktoolkit/trunk/buildout.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/buildout.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,49 +0,0 @@
-[buildout]
-extends =
-   grok.cfg
-parts =
-  checkversions
-#  depgraph
-#  omelette -> chokes the windows buildbot
-  test-grok
-  uploadversions
-develop = .
-extensions = mr.developer
-allow-picked-versions = false
-include-site-packages = false
-
-[checkversions]
-recipe = z3c.recipe.scripts
-eggs = z3c.checkversions [buildout]
-
-[depgraph]
-recipe = z3c.recipe.depgraph
-eggs = ${grok:packages}
-extras = True
-variants =
-  base
-  scc
-
-[omelette]
-recipe = collective.recipe.omelette
-eggs = ${grok:packages}
-
-[test-grok]
-recipe = z3c.recipe.compattest
-include = ${grok:packages}
-exclude =
-# compattest will pull in the dependencies for all the extras require
-# that are defined in zc.catalog, including a hoist of (deprecated)
-# zope.app.* dependencies.
-  zc.catalog
-# Fanstatic use py.test for testing and compattest cannot deal with that.
-  fanstatic
-eggs = zope.testrunner
-runner-defaults = ['--tests-pattern', '^f?tests$', '-v']
-
-[uploadversions]
-recipe = z3c.recipe.scripts
-entry-points = uploadversions=groktoolkit:upload_gtk_versions
-eggs =
-  groktoolkit
-  zest.releaser

Deleted: groktoolkit/trunk/documentation.cfg
===================================================================
--- groktoolkit/trunk/documentation.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/documentation.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,51 +0,0 @@
-[buildout]
-extends = grok.cfg
-develop = .
-parts = sphinxpython
-
-[sphinxpython]
-recipe = z3c.recipe.scripts
-interpreter = sphinxpython
-eggs =
-  groktoolkit
-  grok
-  grokcore.annotation
-  grokcore.component
-  grokcore.content
-  grokcore.formlib
-  grokcore.json
-  grokcore.message
-  grokcore.rest
-  grokcore.security
-  grokcore.site
-  grokcore.traverser
-  grokcore.view
-  grokcore.viewlet
-  grokcore.xmlrpc
-  martian
-  py
-  sphinx
-
-[cronjob-template]
-recipe = collective.recipe.template
-document_root = /var/www/html/grok/doc/dev
-inline =
-  #!/bin/bash
-  cd ${buildout:directory}
-  svn update
-  cd doc
-  make clean
-  make all
-  if [ $? == 0 ]; then
-      rm -rf ${:document_root}
-      cp -rf ${buildout:directory}/doc/_build/html ${:document_root}
-  else
-      echo "grokdocs html generation failed"
-  fi
-output = ${buildout:bin-directory}/build.sh
-mode = 755
-
-[cronjob]
-recipe = z3c.recipe.usercrontab
-times = 0 * * * *
-command = ${cronjob-template:output} > ${buildout:directory}/build.log 2>&1

Deleted: groktoolkit/trunk/ecosystem.cfg
===================================================================
--- groktoolkit/trunk/ecosystem.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/ecosystem.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,11 +0,0 @@
-[buildout]
-extends =
-    buildout.cfg
-    grok-ecosystem.cfg
-parts +=
-    test-ecosystem
-
-[test-ecosystem]
-recipe = z3c.recipe.compattest
-include = ${grok-ecosystem:packages}
-runner-defaults = ['--tests-pattern', '^f?tests$', '-v']

Deleted: groktoolkit/trunk/grok-ecosystem.cfg
===================================================================
--- groktoolkit/trunk/grok-ecosystem.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/grok-ecosystem.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,182 +0,0 @@
-[grok-ecosystem]
-included =
-   dolmen.blob
-   dolmen.builtins
-   dolmen.content
-   dolmen.field
-   dolmen.file
-   dolmen.relations
-   dolmen.storage
-   dolmen.thumbnailer
-   hurry.custom
-   hurry.extjs
-   hurry.file
-   hurry.filesize
-   hurry.jquery
-   hurry.jqueryui
-   hurry.query
-   hurry.resource
-   hurry.slimbox
-   hurry.tinymce
-   hurry.workflow
-   hurry.yui
-   hurry.zoperesource
-   hurry.zopetinymce
-#   ldappas depends on python-ldap
-   megrok.chameleon
-   megrok.genshi
-   megrok.jinja
-   megrok.login
-   megrok.pagetemplate
-   megrok.rdb
-   megrok.resource
-   megrok.resourcelibrary
-   megrok.resourceviewlet
-   megrok.strictrequire
-   megrok.traject
-   megrok.z3cform.base
-   megrok.z3cform.composed
-   megrok.z3cform.layout
-   megrok.z3cform.tabular
-   megrok.z3cform.ui
-   megrok.z3ctable
-   traject
-   xlrd
-   xlwt
-   z3c.batching
-   z3c.blobfile
-   z3c.coverage
-   z3c.form
-   z3c.formui
-   z3c.hashedresource
-   z3c.noop
-   z3c.relationfield
-   z3c.relationfieldui
-   z3c.saconfig
-   z3c.schema
-   z3c.schema2xml
-   z3c.table
-#   z3c.vcsync needs py == 0.9.1
-   zc.sourcefactory
-   zc.table
-
-packages =
-   ${grok-ecosystem:included}
-
-[buildout]
-versions = versions
-
-[versions]
-dolmen.blob = 0.5.0
-dolmen.builtins = 0.3.1
-dolmen.content = 0.5.1
-dolmen.field = 0.3
-dolmen.file = 0.6
-dolmen.relations = 0.4
-dolmen.storage = 0.4
-dolmen.thumbnailer = 0.3
-hurry.custom = 0.6.2
-hurry.extjs = 2.2.1
-hurry.file = 1.2
-hurry.filesize = 0.9
-hurry.jquery = 1.3.2.1
-hurry.jqueryui = 1.7.2.1
-hurry.query = 1.0.0
-hurry.resource = 0.4.1
-hurry.slimbox = 2.03
-hurry.tinymce = 3.2.3.1
-hurry.workflow = 0.11
-hurry.yui = 2.7.0
-hurry.zoperesource = 0.5
-hurry.zopetinymce = 0.1
-megrok.chameleon = 0.5.1
-megrok.genshi = 1.0
-megrok.jinja = 0.1
-megrok.login = 0.2
-megrok.pagetemplate = 0.6
-megrok.rdb = 0.10
-megrok.resource = 0.5
-megrok.resourcelibrary = 0.9.2
-megrok.resourceviewlet = 0.1
-megrok.strictrequire = 0.3
-megrok.traject = 0.10.1
-megrok.z3cform.base = 0.3
-megrok.z3cform.composed = 0.1
-megrok.z3cform.layout = 0.2.1
-megrok.z3cform.tabular = 0.2
-megrok.z3cform.ui = 0.5
-megrok.z3ctable = 1.4.2
-xlrd = 0.7.1
-xlwt = 0.7.2
-z3c.batching = 1.1.0
-z3c.blobfile = 0.1.4
-z3c.coverage = 1.1.3
-z3c.form = 2.3.4
-z3c.formui = 2.2.0
-z3c.hashedresource = 1.1.2
-z3c.noop = 1.0
-z3c.relationfield = 0.6.1
-z3c.relationfieldui = 0.5
-z3c.saconfig = 0.10
-z3c.schema = 0.6.0
-z3c.schema2xml = 1.0
-z3c.table = 0.8.0
-zc.table = 0.8.1
-
-Chameleon = 1.1.1
-PyYAML = 3.09
-pyyaml = 3.09
-SQLAlchemy = 0.6.1
-chameleon.core = 1.0.4
-z3c.ptcompat = 0.5.5
-z3c.testing = 0.3.1
-zc.relation = 1.0
-
-# Required by dolmen.thumbnailer
-PIL = 1.1.7
-
-# Required by megrok.genshi
-Genshi = 0.5.1
-
-# Required by megrok.chameleon
-chameleon.genshi = 1.0b4
-chameleon.zpt = 1.1.3
-z3c.pt = 1.1.0
-
-# Required by hurry.custom
-jsontemplate = 0.5b2
-
-# Required by megrok.traject
-traject = 0.10.1
-
-# Required by z3c.formui
-z3c.macro = 1.2.1
-z3c.template = 1.2.1
-
-# Required by z3c.relationfield
-z3c.objpath = 1.0
-
-# Required by megrok.z3cform.tabular
-z3c.tabular = 0.5.2
-
-# Required by megrok.rdb
-zope.sqlalchemy = 0.4
-
-# Required by hurry.resource
-WebOb = 0.9.8
-
-[sources]
-dolmen.blob = git git://devel.dolmen-project.org/dolmen.blob.git
-dolmen.builtins = git git://devel.dolmen-project.org/dolmen.builtins.git
-dolmen.content = git git://devel.dolmen-project.org/dolmen.content.git
-dolmen.field = git git://devel.dolmen-project.org/dolmen.field.git
-dolmen.file = git git://devel.dolmen-project.org/dolmen.file.git
-dolmen.relations = git git://devel.dolmen-project.org/dolmen.relations.git
-dolmen.storage = git git://devel.dolmen-project.org/dolmen.storage.git
-dolmen.thumbnailer = git git://devel.dolmen-project.org/dolmen.thumbnailer.git
-hurry.jquery = svn svn+ssh://svn.zope.org/repos/main/hurry.jquery/trunk
-hurry.jqueryui = svn svn+ssh://svn.zope.org/repos/main/hurry.jqueryui/trunk
-hurry.resource = svn svn+ssh://svn.zope.org/repos/main/hurry.resource/trunk
-hurry.zoperesource = svn svn+ssh://svn.zope.org/repos/main/hurry.zoperesource/trunk
-megrok.resource = svn svn+ssh://svn.zope.org/repos/main/megrok.resource/trunk
-megrok.z3ctable = svn svn+ssh://svn.zope.org/repos/main/megrok.z3ctable/trunk

Deleted: groktoolkit/trunk/grok.cfg
===================================================================
--- groktoolkit/trunk/grok.cfg	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/grok.cfg	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,148 +0,0 @@
-[buildout]
-extends =
-  http://svn.zope.org/*checkout*/zopetoolkit/tags/1.1.4/zopeapp.cfg
-  http://svn.zope.org/*checkout*/zopetoolkit/tags/1.1.4/ztk.cfg
-versions = versions
-sources = sources
-
-[grok]
-included =
-   grok
-   grokcore.annotation
-   grokcore.catalog
-   grokcore.chameleon
-   grokcore.component
-   grokcore.content
-   grokcore.formlib
-   grokcore.json
-   grokcore.layout
-   grokcore.message
-   grokcore.rest
-   grokcore.security
-   grokcore.site
-   grokcore.startup
-   grokcore.traverser
-   grokcore.view
-   grokcore.viewlet
-   grokcore.xmlrpc
-   grokui.admin
-   grokui.base
-   martian
-   megrok.menu
-   z3c.autoinclude
-   z3c.evalexception
-   z3c.flashmessage
-   zc.catalog
-   zope.errorview
-   zope.fanstatic
-tools =
-   Paste
-   PasteDeploy
-   PasteScript
-   buildout.dumppickedversions
-   collective.recipe.template
-   simplejson
-   z3c.recipe.dev
-   z3c.recipe.eggbasket
-   z3c.recipe.i18n
-   z3c.recipe.mkdir
-   z3c.recipe.template
-   z3c.testsetup
-   zc.recipe.filestorage
-   zest.releaser
-under-review =
-   grokui.admin
-
-packages =
-   ${grok:included}
-
-[versions]
-Chameleon = 2.8.5
-fanstatic = 0.11.2
-grok = 1.10.3
-grokcore.annotation = 1.3
-grokcore.catalog = 1.0
-grokcore.chameleon = 1.0.2
-grokcore.component = 2.5
-grokcore.content = 1.1
-grokcore.formlib = 1.9
-grokcore.json = 1.2
-grokcore.layout = 1.6
-grokcore.message = 0.4.2
-grokcore.rest = 1.3
-grokcore.security = 1.6.2
-grokcore.site = 1.6.1
-grokcore.startup = 1.2
-grokcore.traverser = 1.2
-grokcore.view = 2.8
-grokcore.viewlet = 1.11
-grokcore.xmlrpc = 1.2
-grokui.admin = 0.11
-grokui.base = 0.7
-IPython = 0.12.1
-martian = 0.14
-megrok.login = 0.4
-megrok.menu = 0.4
-WebOb = 1.0.4
-WebTest = 1.2.3
-z3c.autoinclude = 0.3.3
-z3c.evalexception = 2.0
-z3c.flashmessage = 1.2
-z3c.pt = 2.2.2
-zc.catalog = 1.5
-zope.fanstatic = 0.10
-# Tools
-buildout.dumppickedversions = 0.4
-collective.recipe.omelette = 0.10
-collective.recipe.scriptgen = 0.2
-collective.recipe.sphinxbuilder = 0.7.0
-collective.recipe.template = 1.8
-ordereddict = 1.1
-simplejson = 2.0.9
-unittest2 = 0.5.1
-z3c.recipe.dev = 0.5.4
-z3c.recipe.eggbasket = 0.4.3
-z3c.recipe.i18n = 0.8.0
-z3c.recipe.mkdir = 0.3.1
-z3c.recipe.template = 0.1
-z3c.testsetup = 0.6.1
-zc.recipe.filestorage = 1.0.1
-zest.releaser = 3.18
-# Override the ZTK
-zope.errorview = 0.11
-zope.pluggableauth = 1.3
-zope.testbrowser = 4.0.0
-zope.app.wsgi = 3.13.0
-zope.app.publication = 3.13.1
-zope.app.http = 3.10.0
-
-[sources]
-#fanstatic = hg ssh://hg@bitbucket.org/fanstatic/fanstatic
-grok = svn svn+ssh://svn.zope.org/repos/main/grok/trunk
-grokcore.annotation = svn svn+ssh://svn.zope.org/repos/main/grokcore.annotation/trunk
-grokcore.catalog = svn svn+ssh://svn.zope.org/repos/main/grokcore.catalog/trunk
-grokcore.chameleon = svn svn+ssh://svn.zope.org/repos/main/grokcore.chameleon/trunk
-grokcore.component = svn svn+ssh://svn.zope.org/repos/main/grokcore.component/trunk
-grokcore.content = svn svn+ssh://svn.zope.org/repos/main/grokcore.content/trunk
-grokcore.formlib = svn svn+ssh://svn.zope.org/repos/main/grokcore.formlib/trunk
-grokcore.json = svn svn+ssh://svn.zope.org/repos/main/grokcore.json/trunk
-grokcore.layout = svn svn+ssh://svn.zope.org/repos/main/grokcore.layout/trunk
-grokcore.message = svn svn+ssh://svn.zope.org/repos/main/grokcore.message/trunk
-grokcore.rest = svn svn+ssh://svn.zope.org/repos/main/grokcore.rest/trunk
-grokcore.security = svn svn+ssh://svn.zope.org/repos/main/grokcore.security/trunk
-grokcore.site = svn svn+ssh://svn.zope.org/repos/main/grokcore.site/trunk
-grokcore.startup = svn svn+ssh://svn.zope.org/repos/main/grokcore.startup/trunk
-grokcore.traverser = svn svn+ssh://svn.zope.org/repos/main/grokcore.traverser/trunk
-grokcore.view = svn svn+ssh://svn.zope.org/repos/main/grokcore.view/trunk
-grokcore.viewlet = svn svn+ssh://svn.zope.org/repos/main/grokcore.viewlet/trunk
-grokcore.xmlrpc = svn svn+ssh://svn.zope.org/repos/main/grokcore.xmlrpc/trunk
-grokui.admin = svn svn+ssh://svn.zope.org/repos/main/grokui.admin/trunk
-grokui.base = svn svn+ssh://svn.zope.org/repos/main/grokui.base/trunk
-martian = svn svn+ssh://svn.zope.org/repos/main/martian/trunk
-megrok.menu = svn svn+ssh://svn.zope.org/repos/main/megrok.menu/trunk
-z3c.autoinclude = svn svn+ssh://svn.zope.org/repos/main/z3c.autoinclude/trunk
-z3c.evalexception = svn svn+ssh://svn.zope.org/repos/main/z3c.evalexception/trunk
-z3c.flashmessage = svn svn+ssh://svn.zope.org/repos/main/z3c.flashmessage/trunk
-zc.catalog = svn svn+ssh://svn.zope.org/repos/main/zc.catalog/trunk
-zope.fanstatic = svn svn+ssh://svn.zope.org/repos/main/zope.fanstatic/trunk
-zope.errorview = svn svn+ssh://svn.zope.org/repos/main/zope.errorview/trunk

Deleted: groktoolkit/trunk/setup.py
===================================================================
--- groktoolkit/trunk/setup.py	2013-03-21 18:05:15 UTC (rev 130153)
+++ groktoolkit/trunk/setup.py	2013-03-22 15:08:39 UTC (rev 130154)
@@ -1,28 +0,0 @@
-import os
-from setuptools import setup, find_packages
-
-version = '1.5.6dev'
-
-setup(
-    name='groktoolkit',
-    version=version,
-    description='Grok: Now even cavemen can use Zope 3!',
-    author='Grok Team',
-    author_email='grok-dev at zope.org',
-    url='http://grok.zope.org',
-    license='ZPL',
-    package_dir={'': 'src'},
-    packages=find_packages('src'),
-    include_package_data=True,
-    zip_safe=False,
-    install_requires=[
-        'setuptools',
-        'zc.buildout',
-        'zest.releaser',
-        ],
-    entry_points = {
-        'zest.releaser.releaser.after': [
-            'upload_ztk_versions=groktoolkit:upload_entrypoint',
-            ],
-        }
-    )



More information about the checkins mailing list