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

Tres Seaver tseaver at palladion.com
Wed Apr 5 09:37:33 EDT 2006


Log message for revision 66526:
  Release engineering.

Changed:
  U   zope.thread/trunk/CHANGES.txt
  U   zope.thread/trunk/INSTALL.txt
  U   zope.thread/trunk/README.txt
  U   zope.thread/trunk/setup.cfg.in
  U   zope.thread/trunk/setup.py
  _U  zope.thread/trunk/src/zope/
  U   zope.thread/trunk/test.py

-=-
Modified: zope.thread/trunk/CHANGES.txt
===================================================================
--- zope.thread/trunk/CHANGES.txt	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/CHANGES.txt	2006-04-05 13:37:32 UTC (rev 66526)
@@ -1,32 +1,24 @@
-zope.XXX Package Changelog
-==========================
+zope.thread Package Changelog
+=============================
 
-zope.XXX version 3.2.1 (2006/03/26)
------------------------------------
+zope.thread version 3.2.0 (2006/01/05)
+--------------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.2.1 release.
-
-zope.XXX version 3.2.0 (2006/01/05)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
+- Corresponds to the verison of the zope.thread package shipped as part of
   the Zope 3.2.0 release.
 
-zope.XXX version 3.1.0 (2005/10/03)
------------------------------------
+- Packaging changes only.
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
+zope.thread version 3.1.0 (2005/10/03)
+--------------------------------------
+
+- Corresponds to the verison of the zope.thread package shipped as part of
   the Zope 3.1.0 release.
 
-zope.XXX version 3.0.1 (2005/07/27)
------------------------------------
+- Coding style / documentation fixes only.
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope X3.0.1 release.
+zope.thread version 3.0.0 (2004/11/07)
+--------------------------------------
 
-zope.XXX version 3.0.0 (2004/11/07)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
+- Corresponds to the verison of the zope.thread package shipped as part of
   the Zope X3.0.0 release.

Modified: zope.thread/trunk/INSTALL.txt
===================================================================
--- zope.thread/trunk/INSTALL.txt	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/INSTALL.txt	2006-04-05 13:37:32 UTC (rev 66526)
@@ -26,9 +26,9 @@
 
 Check out the package from subversion:
 
-  $ svn co svn+ssh://svn.zope.org/repos/main/zope.XXX/trunk \
-    src/zope.XXX
-  $ cd src/zope.XXX
+  $ svn co svn+ssh://svn.zope.org/repos/main/zope.thread/trunk \
+    src/zope.thread
+  $ cd src/zope.thread
 
 Install it as a "devlopment egg" (which also installs its "hard"
 dependencies):
@@ -67,8 +67,8 @@
 
 You can also install it from a source distribution:
 
-  $ /path/to/easy_install --find-links="...." -eb src zope.XXX
-  $ cd src/zope.XXX
+  $ /path/to/easy_install --find-links="...." -eb src zope.thread
+  $ cd src/zope.thread
   $ /path/to/your/python setup.py devel
 
 
@@ -78,6 +78,6 @@
 Install the package as a "binary egg" (which also installs its "hard"
 dependencies):
 
-  $ /path/to/easy_install --find-links="...." zope.XXX
+  $ /path/to/easy_install --find-links="...." zope.thread
 
 

Modified: zope.thread/trunk/README.txt
===================================================================
--- zope.thread/trunk/README.txt	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/README.txt	2006-04-05 13:37:32 UTC (rev 66526)
@@ -1,10 +1,11 @@
-zope.XXX Package Readme
-=======================
+zope.thread Package Readme
+==========================
 
 Overview
 --------
 
-Lorem ipsum delorem.
+This package supplies a mechoanism for storing "thread-global" values,
+such as the site manager discovered during URL traversal.
 
 Changes
 -------
@@ -22,16 +23,16 @@
 
 - Subversion browser:
 
-  http://svn.zope.org/zope.XXX/
+  http://svn.zope.org/zope.thread/
 
 - Read-only Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
+  $ svn co svn://svn.zope.org/repos/main/zope.thread/trunk
 
 - Writable Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
+  $ svn co svn://svn.zope.org/repos/main/zope.thread/trunk
 
-- Note that the 'src/zope/XXX' package is acutally a 'svn:externals' link
+- Note that the 'src/zope/thread' 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).

Modified: zope.thread/trunk/setup.cfg.in
===================================================================
--- zope.thread/trunk/setup.cfg.in	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/setup.cfg.in	2006-04-05 13:37:32 UTC (rev 66526)
@@ -1,3 +1,5 @@
+[development]
+depends = zope.testing
 
 [egg_info]
 tag_build = .dev

Modified: zope.thread/trunk/setup.py
===================================================================
--- zope.thread/trunk/setup.py	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/setup.py	2006-04-05 13:37:32 UTC (rev 66526)
@@ -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.thread package
 
 $Id$
 """
@@ -23,28 +23,30 @@
 except ImportError, e:
     from distutils.core import setup, Extension
 
-setup(name='zope.XXX',
+setup(name='zope.thread',
       version='1.0',
-      url='http://svn.zope.org/zope.XXX',
+      url='http://svn.zope.org/zope.thread',
       license='ZPL 2.1',
-      description='XXX',
+      description='Zope3 Thread-Local Storage',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
+      long_description='This package supplies a mechoanism for storing '
+                       '"thread-local" values, such as the site manager '
+                       'discovered during URL traversal.',
       
-      packages=['zope', 'zope.XXX'],
+      packages=['zope', 'zope.thread'],
       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")
-##                               ]),
-##                    ],
+      ext_modules=[Extension("zope.thread._zope_thread",
+                             [os.path.join('src', 'zope', 'thread',
+                                           "_zope_thread.c")
+                              ]),
+                   ],
 
       namespace_packages=['zope',],
       tests_require = ['zope.testing'],
-      install_requires=['zope.deprecation'],
-      include_package_data = True,
+      install_requires=[],
+      include_package_data = False,
 
       zip_safe = False,
       )


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

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


Modified: zope.thread/trunk/test.py
===================================================================
--- zope.thread/trunk/test.py	2006-04-05 13:26:59 UTC (rev 66525)
+++ zope.thread/trunk/test.py	2006-04-05 13:37:32 UTC (rev 66526)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 ##############################################################################
 #
-# 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,
@@ -28,7 +28,7 @@
 
 defaults = [
     '--path', src,
-    '--package', 'zope.i18nmessageid',
+    '--package', 'zope.thread',
     '--tests-pattern', '^tests$',
     ]
 



More information about the Checkins mailing list