[Zope3-checkins] SVN: zope.testing/tags/2.0/ Prep historical
release.
Tres Seaver
tseaver at palladion.com
Tue Apr 4 17:09:31 EDT 2006
Log message for revision 66450:
Prep historical release.
Changed:
_U zope.testing/tags/2.0/
A zope.testing/tags/2.0/CHANGES.txt
A zope.testing/tags/2.0/INSTALL.txt
A zope.testing/tags/2.0/README.txt
A zope.testing/tags/2.0/develop.py
A zope.testing/tags/2.0/setup.cfg.in
A zope.testing/tags/2.0/setup.py
_U zope.testing/tags/2.0/src/
U zope.testing/tags/2.0/test.py
-=-
Property changes on: zope.testing/tags/2.0
___________________________________________________________________
Name: svn:ignore
+ bin
build
dist
lib
setup.cfg
Name: svn:externals
+ workspace svn://svn.zope.org/repos/main/projectsupport/trunk/src/workspace
Added: zope.testing/tags/2.0/CHANGES.txt
===================================================================
--- zope.testing/tags/2.0/CHANGES.txt 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/CHANGES.txt 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,9 @@
+zope.testing Package Changelog
+=============================
+
+zope.testing version 2.0 (2006/01/05)
+--------------------------------------
+
+- Corresponds to the verison of the zope.testing package shipped as part of
+ the Zope 3.2.0 release.
+
Property changes on: zope.testing/tags/2.0/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Added: zope.testing/tags/2.0/INSTALL.txt
===================================================================
--- zope.testing/tags/2.0/INSTALL.txt 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/INSTALL.txt 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,72 @@
+Installing This Package
+=======================
+
+Prerequisites
+-------------
+
+The installation steps below assume that you have the cool new 'setuptools'
+package installed in your Python. Here is where to get it:
+
+ $ wget http://peak.telecommunity.com/dist/ez_setup.py
+ $ /path/to/your/python ez_setup.py # req. write access to 'site-packages'
+
+
+ - Docs for EasyInstall:
+ http://peak.telecommunity.com/DevCenter/EasyInstall
+
+ - Docs for setuptools:
+ http://peak.telecommunity.com/DevCenter/setuptools
+
+ - Docs for eggs:
+ http://peak.telecommunity.com/DevCenter/PythonEggs
+
+
+Installing a Development Checkout
+---------------------------------
+
+Check out the package from subversion:
+
+ $ svn co svn+ssh://svn.zope.org/repos/main/zope.testing/trunk \
+ src/zope.testing
+ $ cd src/zope.testing
+
+Install it as a "devlopment egg" (which also installs its "hard"
+dependencies):
+
+ $ /path/to/your/python setup.py devel
+
+The installation of dependency eggs uses the 'setup.cfg' file in
+the checkout. You can supply '--find-links' on the command line to
+point it at a non-standard package repository.
+
+
+Running the Tests
+-----------------
+
+You can then run the tests from the checkout directory:
+
+ $ /path/to/your/python test.py
+ Running:
+ .............
+ Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
+
+
+Installing a Source Distribution
+--------------------------------
+
+You can also install it from a source distribution:
+
+ $ /path/to/easy_install --find-links="...." -eb src zope.testing
+ $ cd src/zope.testing
+ $ /path/to/your/python setup.py devel
+
+
+Installing a Binary Egg
+-----------------------
+
+Install the package as a "binary egg" (which also installs its "hard"
+dependencies):
+
+ $ /path/to/easy_install --find-links="...." zope.testing
+
+
Property changes on: zope.testing/tags/2.0/INSTALL.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Added: zope.testing/tags/2.0/README.txt
===================================================================
--- zope.testing/tags/2.0/README.txt 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/README.txt 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,37 @@
+zope.testing Package Readme
+==========================
+
+Overview
+--------
+
+See 'src/zope/testing/README.txt' for more information.
+
+Changes
+-------
+
+See CHANGES.txt.
+
+Installation
+------------
+
+See INSTALL.txt.
+
+
+Developer Resources
+-------------------
+
+- Subversion browser:
+
+ http://svn.zope.org/zope.testing/
+
+- Read-only Subversion checkout:
+
+ $ svn co svn://svn.zope.org/repos/main/zope.testing/trunk
+
+- Writable Subversion checkout:
+
+ $ svn co svn://svn.zope.org/repos/main/zope.testing/trunk
+
+- Note that the 'src/zope/testing' package is acutally a 'svn:externals' link
+ to the corresponding package in the Zope3 trunk (or to a specific tag,
+ for released versions of the package).
Property changes on: zope.testing/tags/2.0/README.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Added: zope.testing/tags/2.0/develop.py
===================================================================
--- zope.testing/tags/2.0/develop.py 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/develop.py 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,21 @@
+##############################################################################
+#
+# Copyright (c) 2004 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.
+#
+##############################################################################
+"""Workspace configuration wrapper script
+
+$Id$
+"""
+
+import workspace.develop
+
+workspace.develop.main()
Property changes on: zope.testing/tags/2.0/develop.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: zope.testing/tags/2.0/setup.cfg.in
===================================================================
--- zope.testing/tags/2.0/setup.cfg.in 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/setup.cfg.in 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,6 @@
+[development]
+depends =
+
+[egg_info]
+tag_build = .dev
+tag_svn_revision = 1
Added: zope.testing/tags/2.0/setup.py
===================================================================
--- zope.testing/tags/2.0/setup.py 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/setup.py 2006-04-04 21:09:30 UTC (rev 66450)
@@ -0,0 +1,42 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""Setup for zope.testing package
+
+$Id$
+"""
+
+import os
+
+try:
+ from setuptools import setup, Extension
+except ImportError, e:
+ from distutils.core import setup, Extension
+
+setup(name='zope.testing',
+ version='2.0',
+ url='http://svn.zope.org/zope.testing',
+ license='ZPL 2.1',
+ description='Zope3 Testrunner',
+ author='Zope Corporation and Contributors',
+ author_email='zope3-dev at zope.org',
+
+ packages=['zope', 'zope.testing'],
+ package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
+
+ namespace_packages=['zope',],
+ install_requires=['zope.exceptions'],
+ include_package_data = True,
+
+ zip_safe = False,
+ )
Property changes on: zope.testing/tags/2.0/setup.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: zope.testing/tags/2.0/src
___________________________________________________________________
Name: svn:ignore
+ zope.testing.egg-info
Modified: zope.testing/tags/2.0/test.py
===================================================================
--- zope.testing/tags/2.0/test.py 2006-04-04 20:53:39 UTC (rev 66449)
+++ zope.testing/tags/2.0/test.py 2006-04-04 21:09:30 UTC (rev 66450)
@@ -28,7 +28,9 @@
defaults = [
'--path', src,
+ '--package', 'zope.testing',
'--tests-pattern', '^tests$',
]
sys.exit(testrunner.run(defaults))
+
More information about the Zope3-Checkins
mailing list