[Checkins] SVN: z3c.testing/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Wed Feb 27 22:29:32 UTC 2013


Log message for revision 129908:
  Moved to GitHub.

Changed:
  D   z3c.testing/trunk/CHANGES.txt
  A   z3c.testing/trunk/MOVED_TO_GITHUB
  D   z3c.testing/trunk/README.txt
  D   z3c.testing/trunk/bootstrap.py
  D   z3c.testing/trunk/buildout.cfg
  D   z3c.testing/trunk/setup.py
  D   z3c.testing/trunk/src/

-=-
Deleted: z3c.testing/trunk/CHANGES.txt
===================================================================
--- z3c.testing/trunk/CHANGES.txt	2013-02-27 20:43:02 UTC (rev 129907)
+++ z3c.testing/trunk/CHANGES.txt	2013-02-27 22:29:32 UTC (rev 129908)
@@ -1,59 +0,0 @@
-=======
-CHANGES
-=======
-
-0.3.3 (unreleased)
-------------------
-
-- Nothing changed yet.
-
-
-0.3.2 (2010-08-23)
-------------------
-
-- Do some ``InterfaceBaseTest`` attributes to be able to write less code:
-
-  - ``iface`` provide the interface here
-
-  - ``klass`` provide the class here
-
-  - ``pos`` provide the positional arguments here
-
-  - ``kws`` provide the keyword arguments here
-
-- Avoid depreacted `zope.testing.doctest` by using python's `doctest`.
-
-
-0.3.1 (2009-12-26)
-------------------
-
-- Removed install dependency on ``zope.app.security``.
-
-- Removed test dependency on ``zope.app.securitypolicy``.
-
-- Removed test dependency on ``zope.app.zcmlfiles``.
-
-
-0.3.0 (2009-02-01)
-------------------
-
-- Using ``zope.container`` instead of ``zope.app.container``
-
-- Using ``zope.site`` instead of ``zope.app.component``
-
-0.2.0 (2007-10-31)
-------------------
-
-- Fixed package data.
-
-- Moved functional tests to tests.
-
-- Removed deprecation warning.
-
-0.1.1b1 (2007-06-21)
---------------------
-
-- Make ``z3c`` a namespace.
-
-- Prevent ``ConnectionStateError`` in layer after ``appsetup`` is run
-  in layer.

Added: z3c.testing/trunk/MOVED_TO_GITHUB
===================================================================
--- z3c.testing/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ z3c.testing/trunk/MOVED_TO_GITHUB	2013-02-27 22:29:32 UTC (rev 129908)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/z3c.testing
\ No newline at end of file

Deleted: z3c.testing/trunk/README.txt
===================================================================
--- z3c.testing/trunk/README.txt	2013-02-27 20:43:02 UTC (rev 129907)
+++ z3c.testing/trunk/README.txt	2013-02-27 22:29:32 UTC (rev 129908)
@@ -1,4 +0,0 @@
-This package provides a collection of high-level test setups for unit and
-functional testing. In particular, it provides a testing layer that can use an
-existing, pre-populated database as a starting point, which speeds up the test
-setup phase for large testing data sets.

Deleted: z3c.testing/trunk/bootstrap.py
===================================================================
--- z3c.testing/trunk/bootstrap.py	2013-02-27 20:43:02 UTC (rev 129907)
+++ z3c.testing/trunk/bootstrap.py	2013-02-27 22:29:32 UTC (rev 129908)
@@ -1,56 +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$
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-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
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-if sys.platform == 'win32':
-    cmd = '"%s"' % cmd # work around spawn lamosity on windows
-
-ws = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, sys.executable,
-    '-c', cmd, '-mqNxd', 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'])
-shutil.rmtree(tmpeggs)
-

Deleted: z3c.testing/trunk/buildout.cfg
===================================================================
--- z3c.testing/trunk/buildout.cfg	2013-02-27 20:43:02 UTC (rev 129907)
+++ z3c.testing/trunk/buildout.cfg	2013-02-27 22:29:32 UTC (rev 129908)
@@ -1,15 +0,0 @@
-[buildout]
-develop = .
-parts = test
-versions = versions
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = z3c.testing [test]
-
-[versions]
-#pin ZODB to keep Python 2.4 support
-ZODB3 = 3.9.4
-
-
-

Deleted: z3c.testing/trunk/setup.py
===================================================================
--- z3c.testing/trunk/setup.py	2013-02-27 20:43:02 UTC (rev 129907)
+++ z3c.testing/trunk/setup.py	2013-02-27 22:29:32 UTC (rev 129908)
@@ -1,73 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 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.
-#
-##############################################################################
-"""Setup for z3c.testing package
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(name='z3c.testing',
-      version='0.3.3dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='High-level Testing Support',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 testing layer zodb",
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://pypi.python.org/pypi/z3c.testing',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['z3c'],
-      extras_require=dict(test=[
-          'zope.app.rotterdam',
-          'zope.browserpage',
-          'zope.browserresource',
-          'zope.principalregistry',
-          'zope.publisher',
-          'zope.securitypolicy',
-          'zope.testbrowser',
-          ]),
-      install_requires = ['setuptools',
-                          'ZODB3',
-                          'zope.app.appsetup',
-                          'zope.app.publication',
-                          'zope.app.testing',
-                          'zope.container',
-                          'zope.site',
-                          'zope.component',
-                          'zope.configuration',
-                          'zope.interface',
-                          'zope.testing',
-                          ],
-      include_package_data = True,
-      zip_safe = False,
-      )



More information about the checkins mailing list