[Checkins] SVN: zope.component/trunk/ This moved to Github a while ago and the ZTK tests already pointed to

Stephen Richter cvs-admin at zope.org
Tue Feb 19 15:07:27 UTC 2013


Log message for revision 129457:
  This moved to Github a while ago and the ZTK tests already pointed to 
  Github.
  

Changed:
  D   zope.component/trunk/CHANGES.txt
  D   zope.component/trunk/COPYRIGHT.txt
  D   zope.component/trunk/LICENSE.txt
  A   zope.component/trunk/MOVED_TO_GITHUB
  D   zope.component/trunk/README.txt
  D   zope.component/trunk/bootstrap.py
  D   zope.component/trunk/buildout.cfg
  D   zope.component/trunk/docs/
  D   zope.component/trunk/setup.cfg
  D   zope.component/trunk/setup.py
  D   zope.component/trunk/src/
  D   zope.component/trunk/tox.ini

-=-
Deleted: zope.component/trunk/CHANGES.txt
===================================================================
--- zope.component/trunk/CHANGES.txt	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/CHANGES.txt	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,279 +0,0 @@
-CHANGES
-*******
-
-4.0.3 (unreleased)
-==================
-
-- TBD
-
-4.0.2 (2012-12-31)
-==================
-
-- Fleshed out PyPI Trove classifiers.
-
-4.0.1 (2012-11-21)
-==================
-
-- Added support for Python 3.3.
-
-
-4.0.0 (2012-07-02)
-==================
-
-- Added PyPy and Python 3.2 support:
-
-  - Security support omitted until ``zope.security`` ported.
-
-  - Persistent registry support omitted until ``ZODB`` ported (or
-    ``persistent`` factored out).
-
-- 100% unit test coverage.
-
-- Removed the long-deprecated ``layer`` argument to the
-  ``zope.component.zcml.view`` and ``zope.component.zcml.resource``
-  ZCML directives.
-
-- Added support for continuous integration using ``tox`` and ``jenkins``.
-
-- Got tests to run using ``setup.py test``.
-
-- Added ``Sphinx`` documentation.
-
-- Added ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).
-
-- Added ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
-  ``nose`` and ``coverage``).
-
-
-3.12.1 (2012-04-02)
-===================
-
-- Wrap ``with site(foo)`` in try/finally (LP768151).
-
-
-3.12.0 (2011-11-16)
-===================
-
-- Add convenience function zope.component.hooks.site (a contextmanager),
-  so one can write ``with site(foo): ...``.
-
-3.11.0 (2011-09-22)
-===================
-
-- Moved code from ``zope.component.registry`` which implements a basic
-  nonperistent component registry to ``zope.interface.registry``.  This code
-  was moved from ``zope.component`` into ``zope.interface`` to make porting
-  systems (such as Pyramid) that rely only on a basic component registry to
-  Python 3 possible without needing to port the entirety of the
-  ``zope.component`` package.  Backwards compatibility import shims have been
-  left behind in ``zope.component``, so this change will not break any
-  existing code.
-
-- Interfaces moved from ``zope.component.interfaces`` to
-  ``zope.interface.interfaces``: ``ComponentLookupError``, ``Invalid``,
-  ``IObjectEvent``, ``ObjectEvent``, ``IComponentLookup``, ``IRegistration``,
-  ``IUtilityRegistration``, ``IAdapterRegistration``,
-  ``ISubscriptionAdapterRegistration``, ``IHandlerRegistration``,
-  ``IRegistrationEvent``, ``RegistrationEvent``, ``IRegistered``,
-  ``Registered``, ``IUnregistered``, ``Unregistered``,
-  ``IComponentRegistry``, and ``IComponents``.  Backwards compatibility shims
-  left in place.
-
-- Depend on zope.interface >= 3.8.0.
-
-3.10.0 (2010-09-25)
-===================
-
-- Got rid of the docs extra and the sphinxdoc recipe.
-
-- Created a "security" extra to move security-related dependencies out of the
-  "test" extra.
-
-- Use the new zope.testrunner package for tests.
-
-- Added a basic test for the configure.zcml file provided.
-
-3.9.5 (2010-07-09)
-==================
-
-- Fix test requirements specification.
-
-3.9.4 (2010-04-30)
-==================
-
-- Prefer the standard libraries doctest module to the one from zope.testing.
-
-3.9.3 (2010-03-08)
-==================
-
-- The ZCML directives provided by zope.component now register the components in
-  the registry returned by getSiteManager instead of the global registry. This
-  allows the hooking of the getSiteManager method before the load of a ZCML
-  file to register the components in a custom registry.
-
-3.9.2 (2010-01-22)
-==================
-
-- Fixed a bug introduced by recent refactoring, where passing
-  CheckerPublic to securityAdapterFactory wrongly wrapped the factory
-  into a LocatingUntrustedAdapterFactory.
-
-3.9.1 (2010-01-21)
-==================
-
-- The tested testrunner somehow gets influenced by options of the outer
-  testrunner, such a the -v option. We modified the tests so that it avoids
-  this.
-
-3.9.0 (2010-01-21)
-==================
-
-- Add testlayer support. It is now possible to load a ZCML file within
-  tests more easily. See zope.component.testlayer.py and
-  zope.component.testlayer.txt.
-
-3.8.0 (2009-11-16)
-==================
-
-- Removed the dependencies on zope.proxy and zope.security from the zcml extra:
-  zope.component does not hard depend on them anymore; the support for security
-  proxied components ZCML registrations is enabled only if zope.security and
-  zope.proxy are available.
-
-- Moved the IPossibleSite and ISite interfaces here from zope.location as they
-  are dealing with zope.component's concept of a site, but not with location.
-
-- Moved the zope.site.hooks functionality to zope.component.hooks as it isn't
-  actually dealing with zope.site's concept of a site.
-
-3.7.1 (2009-07-24)
-==================
-
-- Fixed a problem, where ``queryNextUtility`` could fail if the context could
-  not be adapted to a ``IComponentLookup``.
-
-- Fixed 2 related bugs:
-
-  When a utility is registered and there was previously a utility
-  registered for the same interface and name, then the old utility is
-  unregistered.  The 2 bugs related to this:
-
-  - There was no ``Unregistered`` for the implicit unregistration. Now
-    there is.
-
-  - The old utility was still held and returned by
-    getAllUtilitiesRegisteredFor.  In other words, it was still
-    considered registered, eeven though it wasn't.  A particularly
-    negative consequence of this is that the utility is held in memory
-    or in the database even though it isn't used.
-
-3.7.0 (2009-05-21)
-==================
-
-- The HookableTests were not run by the testrunner.
-
-- Add in zope:view and zope:resource implementations into
-  zope.component.zcml (dependency loaded with zope.component [zcml]).
-
-3.6.0 (2009-03-12)
-==================
-
-- IMPORTANT: the interfaces that were defined in the
-  zope.component.bbb.interfaces and deprecated for years are
-  now (re)moved. However, some packages, including part of zope
-  framework were still using those interfaces. They will be adapted
-  for this change. If you were using some of those interfaces, you
-  need to adapt your code as well:
-
-   - The IView and IDefaultViewName were moved to zope.publisher.interfaces.
-
-   - The IResource was moved to zope.app.publisher.interfaces.
-
-   - IContextDependent, IPresentation, IPresentationRequest,
-     IResourceFactory, IViewFactory were removed completely.
-
-     If you used IViewFactory in context of zope.app.form, there's now
-     IWidgetFactory in the zope.app.form.interfaces instead.
-
-- Add getNextUtility/queryNextUtility functions that used to be in zope.site
-  earlier (and in zope.app.component even more earlier).
-
-- Added a pure-Python 'hookable' implementation, for use when
-  'zope.hookable' is not present.
-
-- Removed use of 'zope.deferredimport' by breaking import cycles.
-
-- Cleanup package documentation and changelog a bit. Add sphinx-based
-  documentation building command to the buildout.
-
-- Remove deprecated code.
-
-- Change package's mailing list address to zope-dev at zope.org, because
-  zope3-dev at zope.org is now retired.
-
-3.5.1 (2008-07-25)
-==================
-
-- Fix bug introduced in 3.5.0: <utility factory="..."> no longer supported
-  interfaces declared in Python and always wanted an explicit provides="..."
-  attribute. https://bugs.launchpad.net/zope3/+bug/251865
-
-3.5.0 (2008-07-25)
-==================
-
-- Support registration of utilities via factories through the component registry
-  and return factory information in the registration information. This fixes
-  https://bugs.launchpad.net/zope3/+bug/240631
-
-- Optimized un/registerUtility via storing an optimized data structure for
-  efficient retrieval of already registered utilities. This avoids looping over
-  all utilities when registering a new one.
-
-3.4.0 (2007-09-29)
-==================
-
-No further changes since 3.4.0a1.
-
-3.4.0a1 (2007-04-22)
-====================
-
-Corresponds to zope.component from Zope 3.4.0a1.
-
-- In the Zope 3.3.x series, ``zope.component`` was simplified yet once
-  more.  See http://wiki.zope.org/zope3/LocalComponentManagementSimplification
-  for the proposal describing the changes.
-
-3.2.0.2 (2006-04-15)
-====================
-
-- Fix packaging bug:  'package_dir' must be a *relative* path.
-
-3.2.0.1 (2006-04-14)
-====================
-
-- Packaging change: suppress inclusion of 'setup.cfg' in 'sdist' builds.
-
-3.2.0 (2006-01-05)
-==================
-
-Corresponds to the verison of the zope.component package shipped as part of
-the Zope 3.2.0 release.
-
-- Deprecated services and related APIs. The adapter and utility registries
-  are now available directly via the site manager's 'adapters' and 'utilities'
-  attributes, respectively.  Services are accessible, but deprecated, and
-  will be removed in Zope 3.3.
-
-- Deprectaed all presentation-related APIs, including all view-related
-  API functions. Use the adapter API functions instead.
-  See http://dev.zope.org/Zope3/ImplementViewsAsAdapters`
-
-- Deprecated 'contextdependent' package:  site managers are now looked up
-  via a thread global, set during URL traversal.  The 'context' argument
-  is now always optional, and should no longer be passed.
-
-3.0.0 (2004-11-07)
-==================
-
-Corresponds to the verison of the zope.component package shipped as part of
-the Zope X3.0.0 release.

Deleted: zope.component/trunk/COPYRIGHT.txt
===================================================================
--- zope.component/trunk/COPYRIGHT.txt	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/COPYRIGHT.txt	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zope.component/trunk/LICENSE.txt
===================================================================
--- zope.component/trunk/LICENSE.txt	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/LICENSE.txt	2013-02-19 15:07:26 UTC (rev 129457)
@@ -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: zope.component/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.component/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.component/trunk/MOVED_TO_GITHUB	2013-02-19 15:07:26 UTC (rev 129457)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.component

Deleted: zope.component/trunk/README.txt
===================================================================
--- zope.component/trunk/README.txt	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/README.txt	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,14 +0,0 @@
-*****************************
-zope.component Package Readme
-*****************************
-
-*This package is intended to be independently reusable in any Python
-project. It is maintained by the* `Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.
-
-This package represents the core of the Zope Component Architecture.
-Together with the 'zope.interface' package, it provides facilities for
-defining, registering and looking up components.
-
-Please see http://docs.zope.org/zope.component/ for the documentation.
-
-.. contents::

Deleted: zope.component/trunk/bootstrap.py
===================================================================
--- zope.component/trunk/bootstrap.py	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/bootstrap.py	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,119 +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, urllib2
-from optparse import OptionParser
-
-tmpeggs = tempfile.mkdtemp()
-
-is_jython = sys.platform.startswith('java')
-
-# parsing arguments
-parser = OptionParser()
-parser.add_option("-v", "--version", dest="version",
-                          help="use a specific zc.buildout version")
-parser.add_option("-d", "--distribute",
-                   action="store_true", dest="distribute", default=False,
-                   help="Use Disribute rather than Setuptools.")
-
-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' main function
-if options.config_file is not None:
-    args += ['-c', options.config_file]
-
-if options.version is not None:
-    VERSION = '==%s' % options.version
-else:
-    VERSION = ''
-
-USE_DISTRIBUTE = options.distribute
-args = args + ['bootstrap']
-
-to_reload = False
-try:
-    import pkg_resources
-    if not hasattr(pkg_resources, '_distribute'):
-        to_reload = True
-        raise ImportError
-except ImportError:
-    ez = {}
-    if USE_DISTRIBUTE:
-        exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
-                         ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
-    else:
-        exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                             ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    if to_reload:
-        reload(pkg_resources)
-    else:
-        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
-
-if USE_DISTRIBUTE:
-    requirement = 'distribute'
-else:
-    requirement = 'setuptools'
-
-if is_jython:
-    import subprocess
-
-    assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
-           quote(tmpeggs), 'zc.buildout' + VERSION],
-           env=dict(os.environ,
-               PYTHONPATH=
-               ws.find(pkg_resources.Requirement.parse(requirement)).location
-               ),
-           ).wait() == 0
-
-else:
-    assert os.spawnle(
-        os.P_WAIT, sys.executable, quote (sys.executable),
-        '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
-        dict(os.environ,
-            PYTHONPATH=
-            ws.find(pkg_resources.Requirement.parse(requirement)).location
-            ),
-        ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout' + VERSION)
-import zc.buildout.buildout
-zc.buildout.buildout.main(args)
-shutil.rmtree(tmpeggs)

Deleted: zope.component/trunk/buildout.cfg
===================================================================
--- zope.component/trunk/buildout.cfg	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/buildout.cfg	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,34 +0,0 @@
-[buildout]
-develop = .
-parts = test test_c_hookable python sphinx coverage-test coverage-report
-unzip = true
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.component [test,zcml,security,persistentregistry]
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = ${test:eggs}
-defaults = ['--coverage', '../../coverage']
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')
-
-[test_c_hookable]
-recipe = zc.recipe.testrunner
-eggs = zope.component [test,zcml,security,persistentregistry,hook]
-
-[python]
-recipe = zc.recipe.egg
-interpreter = python
-eggs = ${test:eggs}
-
-[sphinx]
-recipe = zc.recipe.egg
-eggs =
-    Sphinx
-    zope.component

Deleted: zope.component/trunk/setup.cfg
===================================================================
--- zope.component/trunk/setup.cfg	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/setup.cfg	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,10 +0,0 @@
-[nosetests]
-nocapture=1
-cover-package=zope.component
-cover-erase=1
-with-doctest=0
-where=src
-
-[aliases]
-dev = develop easy_install zope.component[testing]
-docs = easy_install zope.component[docs]

Deleted: zope.component/trunk/setup.py
===================================================================
--- zope.component/trunk/setup.py	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/setup.py	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,127 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 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.
-#
-##############################################################################
-# This package is developed by the Zope Toolkit project, documented here:
-# http://docs.zope.org/zopetoolkit
-# When developing and releasing this package, please follow the documented
-# Zope Toolkit policies as described by this documentation.
-##############################################################################
-"""Setup for zope.component package
-"""
-
-import os
-from setuptools import setup, find_packages
-
-
-TESTS_REQUIRE = [
-    'zope.testing',
-    'zope.component[hook]',
-    'zope.component[persistentregistry]',
-    'zope.component[security]',
-    'zope.component[zcml]',
-    ]
-
-def _modname(path, base, name=''):
-    if path == base:
-        return name
-    dirname, basename = os.path.split(path)
-    return _modname(dirname, base, basename + '.' + name)
-
-def alltests():
-    import logging
-    import pkg_resources
-    import unittest
-
-    class NullHandler(logging.Handler):
-        level = 50
-        
-        def emit(self, record):
-            pass
-
-    logging.getLogger().addHandler(NullHandler())
-
-    suite = unittest.TestSuite()
-    base = pkg_resources.working_set.find(
-        pkg_resources.Requirement.parse('zope.component')).location
-    for dirpath, dirnames, filenames in os.walk(base):
-        if os.path.basename(dirpath) == 'tests':
-            for filename in filenames:
-                if ( filename.endswith('.py') and
-                     filename.startswith('test') ):
-                    mod = __import__(
-                        _modname(dirpath, base, os.path.splitext(filename)[0]),
-                        {}, {}, ['*'])
-                    suite.addTest(mod.test_suite())
-    return suite
-
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(
-    name='zope.component',
-    version='4.0.3dev',
-    url='http://pypi.python.org/pypi/zope.component',
-    license='ZPL 2.1',
-    description='Zope Component Architecture',
-    author='Zope Foundation and Contributors',
-    author_email='zope-dev at zope.org',
-    long_description=(
-        read('README.txt')
-        + '\n' +
-        read('CHANGES.txt')
-        ),
-    packages = find_packages('src'),
-    package_dir = {'': 'src'},
-    classifiers=[
-        "Development Status :: 5 - Production/Stable",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved",
-        "License :: OSI Approved :: Zope Public License",
-        "Operating System :: OS Independent",
-        "Programming Language :: Python",
-        "Programming Language :: Python :: 2",
-        "Programming Language :: Python :: 2.6",
-        "Programming Language :: Python :: 2.7",
-        "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.2",
-        "Programming Language :: Python :: 3.3",
-        "Programming Language :: Python :: Implementation :: CPython",
-        "Programming Language :: Python :: Implementation :: PyPy",
-        "Framework :: Zope3",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-    ],
-    namespace_packages=['zope',],
-    tests_require = TESTS_REQUIRE,
-    test_suite='__main__.alltests',
-    install_requires=['setuptools',
-                      'zope.interface>=3.8.0',
-                      'zope.event',
-                      ],
-    include_package_data = True,
-    zip_safe = False,
-    extras_require = {
-        'hook': ['zope.hookable'],
-        'persistentregistry': ['ZODB3'],
-        'security': ['zope.location',
-                    'zope.proxy',
-                    'zope.security',
-                    ],
-        'zcml': ['zope.configuration',
-                'zope.i18nmessageid',
-                ],
-        'test': TESTS_REQUIRE,
-        'testing': TESTS_REQUIRE + ['nose', 'coverage'],
-        'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
-        },
-    )

Deleted: zope.component/trunk/tox.ini
===================================================================
--- zope.component/trunk/tox.ini	2013-02-19 14:10:18 UTC (rev 129456)
+++ zope.component/trunk/tox.ini	2013-02-19 15:07:26 UTC (rev 129457)
@@ -1,143 +0,0 @@
-[tox]
-envlist = 
-# Jython support pending 2.7 support, due 2012-07-15 or so.  See:
-# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
-#   py26,py27,py32,jython,pypy,coverage,docs
-    py26,py26min,py27,pypy,py32,py33,coverage,docs
-
-[testenv]
-deps =
-    zope.component
-    zope.testing
-    zope.hookable
-    ZODB3
-    zope.location
-    zope.proxy
-    zope.security
-    zope.configuration
-    zope.i18nmessageid
-commands = 
-    python setup.py test -q
-
-[testenv:jython]
-commands = 
-   jython setup.py test -q
-
-[nosy]
-prep =
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python2.6/site-packages/zope/__init__.py')"
-    pip install -e .
-
-
-[testenv:py26min]
-basepython =
-    python2.6
-deps =
-    zope.component
-    zope.interface
-    zope.event
-    zope.hookable
-    zope.configuration
-    zope.schema
-    zope.i18nmessageid
-    nose
-commands = 
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python2.6/site-packages/zope/__init__.py')"
-    pip install -e .
-    nosetests -I persistentregistry -I security
-
-[testenv:py32]
-deps =
-    zope.component
-    zope.interface
-    zope.event
-    zope.hookable
-    zope.configuration
-    zope.schema
-    zope.i18nmessageid
-    nose
-commands = 
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python3.2/site-packages/zope/__init__.py')"
-    pip install -e .
-    nosetests -I persistentregistry -I security
-
-[testenv:py33]
-deps =
-    zope.component
-    zope.interface
-    zope.event
-    zope.hookable
-    zope.configuration
-    zope.schema
-    zope.i18nmessageid
-    nose
-commands = 
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python3.3/site-packages/zope/__init__.py')"
-    pip install -e .
-    nosetests -I persistentregistry -I security
-
-[testenv:pypy]
-deps =
-    zope.component
-    zope.interface
-    zope.event
-    zope.hookable
-    zope.configuration
-    zope.schema
-    zope.i18nmessageid
-    nose
-commands = 
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('{toxinidir}/src/zope/__init__.py', '{envdir}/site-packages/zope/__init__.py')"
-    pip install -e .
-    nosetests -I persistentregistry -I security
-
-[testenv:coverage]
-basepython =
-    python2.6
-commands = 
-#   The installed version messes up nose's test discovery / coverage reporting
-#   So, we uninstall that from the environment, and then install the editable
-#   version, before running nosetests.
-    pip uninstall -y zope.component
-    python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python2.6/site-packages/zope/__init__.py')"
-    pip install -e .
-    nosetests --with-xunit --with-xcoverage
-deps =
-    zope.component
-    zope.testing
-    zope.hookable
-    ZODB3
-    zope.location
-    zope.proxy
-    zope.security
-    zope.configuration
-    zope.i18nmessageid
-    nose
-    coverage
-    nosexcover
-
-[testenv:docs]
-basepython =
-    python2.6
-commands = 
-    sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
-    sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
-deps =
-    zope.component
-    zope.testing
-    zope.hookable
-    ZODB3
-    zope.location
-    zope.proxy
-    zope.security
-    zope.configuration
-    zope.i18nmessageid
-    Sphinx
-    repoze.sphinx.autointerface
-#   Ugh.  Need this for docs/testlayer.rst
-    zope.testrunner



More information about the checkins mailing list