[Checkins] SVN: zope.event/trunk/ Release engineering.

Tres Seaver tseaver at palladion.com
Wed Apr 5 07:32:24 EDT 2006


Log message for revision 66504:
  Release engineering.

Changed:
  _U  zope.event/trunk/
  A   zope.event/trunk/CHANGES.txt
  A   zope.event/trunk/INSTALL.txt
  A   zope.event/trunk/README.txt
  A   zope.event/trunk/develop.py
  D   zope.event/trunk/setup.cfg
  A   zope.event/trunk/setup.cfg.in
  U   zope.event/trunk/setup.py
  _U  zope.event/trunk/src/zope/
  U   zope.event/trunk/test.py

-=-

Property changes on: zope.event/trunk
___________________________________________________________________
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.event/trunk/CHANGES.txt
===================================================================
--- zope.event/trunk/CHANGES.txt	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/CHANGES.txt	2006-04-05 11:32:23 UTC (rev 66504)
@@ -0,0 +1,17 @@
+zope.event Package Changelog
+==========================
+
+zope.event version 3.1.0 (2005/10/03)
+-------------------------------------
+
+- Corresponds to the verison of the zope.event package shipped as part of
+  the Zope 3.1.0 release.
+
+- Testing fixes only.
+
+
+zope.event version 3.0.0 (2004/11/07)
+-------------------------------------
+
+- Corresponds to the verison of the zope.event package shipped as part of
+  the Zope X3.0.0 release.


Property changes on: zope.event/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.event/trunk/INSTALL.txt
===================================================================
--- zope.event/trunk/INSTALL.txt	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/INSTALL.txt	2006-04-05 11:32:23 UTC (rev 66504)
@@ -0,0 +1,83 @@
+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.event/trunk \
+    src/zope.event
+  $ cd src/zope.event
+
+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
+-----------------
+
+To test the package, you will also need the 'zope.testing' package, which
+can't (yet) be automatically installed.  Eventually, you should be able to
+type:
+
+  $ /path/to/your/python setup.py test
+
+and have it install the "testing dependencies."  Today, the workaround
+is to install it manually:
+
+  $ /path/to/easy_install --find-links="...." zope.testing
+
+You can then run the tests (finally) 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.event
+  $ cd src/zope.event
+  $ /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.event
+
+


Property changes on: zope.event/trunk/INSTALL.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.event/trunk/README.txt
===================================================================
--- zope.event/trunk/README.txt	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/README.txt	2006-04-05 11:32:23 UTC (rev 66504)
@@ -0,0 +1,38 @@
+zope.exceptions Package Readme
+==============================
+
+Overview
+--------
+
+This package contains exception interfaces and implementations which are so
+general purpose that they don't belong in Zope application-specific packages.
+
+Changes
+-------
+
+See CHANGES.txt.
+
+Installation
+------------
+
+See INSTALL.txt.
+
+
+Developer Resources
+-------------------
+
+- Subversion browser:
+
+  http://svn.zope.org/zope.exceptions/
+
+- Read-only Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.exceptions/trunk
+
+- Writable Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.exceptions/trunk
+
+- Note that the 'src/zope/exceptions' 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.event/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.event/trunk/develop.py
===================================================================
--- zope.event/trunk/develop.py	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/develop.py	2006-04-05 11:32:23 UTC (rev 66504)
@@ -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.event/trunk/develop.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Deleted: zope.event/trunk/setup.cfg
===================================================================
--- zope.event/trunk/setup.cfg	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/setup.cfg	2006-04-05 11:32:23 UTC (rev 66504)
@@ -1,4 +0,0 @@
-
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Copied: zope.event/trunk/setup.cfg.in (from rev 66503, zope.event/trunk/setup.cfg)
===================================================================
--- zope.event/trunk/setup.cfg	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/setup.cfg.in	2006-04-05 11:32:23 UTC (rev 66504)
@@ -0,0 +1,6 @@
+[development]
+depends = zope.testing
+
+[egg_info]
+tag_build = .dev
+tag_svn_revision = 1

Modified: zope.event/trunk/setup.py
===================================================================
--- zope.event/trunk/setup.py	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/setup.py	2006-04-05 11:32:23 UTC (rev 66504)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for zope.i18nmessageid package
+"""Setup for zope.event package
 
 $Id$
 """
@@ -23,27 +23,20 @@
 except ImportError, e:
     from distutils.core import setup, Extension
 
-setup(name='zope.XXX',
+setup(name='zope.event',
       version='1.0',
-      url='http://svn.zope.org/zope.XXX',
+      url='http://svn.zope.org/zope.event',
       license='ZPL 2.1',
-      description='XXX',
+      description='Zope Event Publication',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       long_description='',
       
-      packages=['zope', 'zope.XXX'],
+      packages=['zope', 'zope.event'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
 
-##       ext_modules=[Extension("zope.XXX._zope_XXX",
-##                              [os.path.join('src', 'zope', 'XXX',
-##                                            "_zope_XXX.c")
-##                               ]),
-##                    ],
-
       namespace_packages=['zope',],
       tests_require = ['zope_testing'],
-      install_requires=['zope_deprecation'],
       devel_requires=[],
       include_package_data = True,
 


Property changes on: zope.event/trunk/src/zope
___________________________________________________________________
Name: svn:externals
   - 

   + event svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/event


Modified: zope.event/trunk/test.py
===================================================================
--- zope.event/trunk/test.py	2006-04-05 10:55:15 UTC (rev 66503)
+++ zope.event/trunk/test.py	2006-04-05 11:32:23 UTC (rev 66504)
@@ -28,7 +28,7 @@
 
 defaults = [
     '--path', src,
-    '--package', 'zope.i18nmessageid',
+    '--package', 'zope.event',
     '--tests-pattern', '^tests$',
     ]
 



More information about the Checkins mailing list