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

Tres Seaver tseaver at palladion.com
Sat Apr 15 15:57:46 EDT 2006


Log message for revision 67055:
  Release engineering.

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

-=-

Property changes on: zope.configuration/trunk
___________________________________________________________________
Name: svn:ignore
   + bin
build
dist
lib
setup.cfg


Modified: zope.configuration/trunk/CHANGES.txt
===================================================================
--- zope.configuration/trunk/CHANGES.txt	2006-04-15 19:13:14 UTC (rev 67054)
+++ zope.configuration/trunk/CHANGES.txt	2006-04-15 19:57:45 UTC (rev 67055)
@@ -1,32 +1,32 @@
-zope.XXX Package Changelog
+zope.configuration Package Changelog
 ==========================
 
-zope.XXX version 3.2.1 (2006/03/26)
+zope.configuration version 3.2.1 (2006/03/26)
 -----------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.2.1 release.
+- Corresponds to the verison of the zope.configuration package shipped
+  as part of the Zope 3.2.1 release.
 
-zope.XXX version 3.2.0 (2006/01/05)
+zope.configuration version 3.2.0 (2006/01/05)
 -----------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.2.0 release.
+- Corresponds to the verison of the zope.configuration package shipped
+  as part of the Zope 3.2.0 release.
 
-zope.XXX version 3.1.0 (2005/10/03)
+zope.configuration version 3.1.0 (2005/10/03)
 -----------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.1.0 release.
+- Corresponds to the verison of the zope.configuration package shipped
+  as part of the Zope 3.1.0 release.
 
-zope.XXX version 3.0.1 (2005/07/27)
+zope.configuration version 3.0.1 (2005/07/27)
 -----------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope X3.0.1 release.
+- Corresponds to the verison of the zope.configuration package shipped
+  as part of the Zope X3.0.1 release.
 
-zope.XXX version 3.0.0 (2004/11/07)
+zope.configuration version 3.0.0 (2004/11/07)
 -----------------------------------
 
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope X3.0.0 release.
+- Corresponds to the verison of the zope.configuration package shipped
+  as part of the Zope X3.0.0 release.

Modified: zope.configuration/trunk/INSTALL.txt
===================================================================
--- zope.configuration/trunk/INSTALL.txt	2006-04-15 19:13:14 UTC (rev 67054)
+++ zope.configuration/trunk/INSTALL.txt	2006-04-15 19:57:45 UTC (rev 67055)
@@ -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.configuration/trunk \
+    src/zope.configuration
+  $ cd src/zope.configuration
 
 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.configuration
+  $ cd src/zope.configuration
   $ /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.configuration
 
 

Modified: zope.configuration/trunk/README.txt
===================================================================
--- zope.configuration/trunk/README.txt	2006-04-15 19:13:14 UTC (rev 67054)
+++ zope.configuration/trunk/README.txt	2006-04-15 19:57:45 UTC (rev 67055)
@@ -1,11 +1,19 @@
-zope.XXX Package Readme
-=======================
+zope.configuration Package Readme
+=================================
 
 Overview
 --------
 
-Lorem ipsum delorem.
+The zope configuration system provides an extensible system for
+supporting various kinds of configurations.
 
+It is based on the idea of configuration directives. Users of the
+configuration system provide configuration directives in some
+language that express configuration choices. The intent is that the
+language be pluggable.  An XML language is provided by default.
+
+See 'src/zope/configuration/README.txt' for more information.
+
 Changes
 -------
 
@@ -22,16 +30,16 @@
 
 - Subversion browser:
 
-  http://svn.zope.org/zope.XXX/
+  http://svn.zope.org/zope.configuration/
 
 - Read-only Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
+  $ svn co svn://svn.zope.org/repos/main/zope.configuration/trunk
 
 - Writable Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
+  $ svn co svn://svn.zope.org/repos/main/zope.configuration/trunk
 
-- Note that the 'src/zope/XXX' 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).
+- Note that the 'src/zope/configuration' 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.configuration/trunk/setup.py
===================================================================
--- zope.configuration/trunk/setup.py	2006-04-15 19:13:14 UTC (rev 67054)
+++ zope.configuration/trunk/setup.py	2006-04-15 19:57:45 UTC (rev 67055)
@@ -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.configuration package
 
 $Id$
 """
@@ -23,27 +23,37 @@
 except ImportError, e:
     from distutils.core import setup, Extension
 
-setup(name='zope.XXX',
+setup(name='zope.configuration',
       version='1.0',
-      url='http://svn.zope.org/zope.XXX',
+      url='http://svn.zope.org/zope.configuration',
       license='ZPL 2.1',
-      description='XXX',
+      description='Zope Configuration (ZCML)',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
+      long_description='''\
+The zope configuration system provides an extensible system for
+supporting various kinds of configurations.
+
+It is based on the idea of configuration directives. Users of the
+configuration system provide configuration directives in some
+language that express configuration choices. The intent is that the
+language be pluggable.  An XML language is provided by default.
+      ''',
       
-      packages=['zope', 'zope.XXX'],
+      packages=['zope',
+                'zope.configuration',
+                'zope.configuration.tests',
+                'zope.configuration.tests.samplepackage',
+               ],
       package_dir = {'': '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'],
+      install_requires=['zope.deprecation',
+                        'zope.i18n',
+                        'zope.interface',
+                        'zope.schema',
+                       ],
       include_package_data = True,
 
       zip_safe = False,


Property changes on: zope.configuration/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.configuration.egg-info



Property changes on: zope.configuration/trunk/src/zope
___________________________________________________________________
Name: svn:externals
   + configuration svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/configuration


Modified: zope.configuration/trunk/test.py
===================================================================
--- zope.configuration/trunk/test.py	2006-04-15 19:13:14 UTC (rev 67054)
+++ zope.configuration/trunk/test.py	2006-04-15 19:57:45 UTC (rev 67055)
@@ -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.configuration',
     '--tests-pattern', '^tests$',
     ]
 



More information about the Checkins mailing list