[Checkins] SVN: zope.component/tags/3.0.0/ Prepare a 3.0.0 release of zope.component for eggification.

Tres Seaver tseaver at palladion.com
Tue Apr 4 11:44:31 EDT 2006


Log message for revision 66395:
  Prepare a 3.0.0 release of zope.component for eggification.

Changed:
  U   zope.component/tags/3.0.0/CHANGES.txt
  U   zope.component/tags/3.0.0/setup.cfg.in
  U   zope.component/tags/3.0.0/setup.py
  _U  zope.component/tags/3.0.0/src/zope/

-=-
Modified: zope.component/tags/3.0.0/CHANGES.txt
===================================================================
--- zope.component/tags/3.0.0/CHANGES.txt	2006-04-04 15:30:36 UTC (rev 66394)
+++ zope.component/tags/3.0.0/CHANGES.txt	2006-04-04 15:44:31 UTC (rev 66395)
@@ -1,27 +1,6 @@
 zope.component Package Changelog
 ================================
 
-zope.component version 3.2.0 (2006/01/05)
------------------------------------------
-
-- Corresponds to the verison of the zope.component package shipped as part of
-  the Zope 3.2.0 release.
-
-- Deprecated services and related APIS. The adapter and utility registries
-  are now available directly via the site manager's 'adapters' and 'utilities'
-  attributes, respectively.  Services are accessible, but deprecated, and
-  will be removed in Zope 3.3.
-
-- Deprectaed all presentation-related APIS, including all view-related
-  API functions. Use the adapter API functions instead.
-  See http://dev.zope.org/Zope3/ImplementViewsAsAdapters`
-
-- Deprecated 'contextdependent' package:  site managers are now looked up
-  via a thread global, set during URL traversal.  The 'context' argument
-  is now always optional, and should no longer be passed.
-
-- TODO:  other major changes?
-
 zope.component version 3.0.0 (2004/11/07)
 -----------------------------------------
 

Modified: zope.component/tags/3.0.0/setup.cfg.in
===================================================================
--- zope.component/tags/3.0.0/setup.cfg.in	2006-04-04 15:30:36 UTC (rev 66394)
+++ zope.component/tags/3.0.0/setup.cfg.in	2006-04-04 15:44:31 UTC (rev 66395)
@@ -1,6 +1,2 @@
 [development]
 depends = zope.testing
-
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Modified: zope.component/tags/3.0.0/setup.py
===================================================================
--- zope.component/tags/3.0.0/setup.py	2006-04-04 15:30:36 UTC (rev 66394)
+++ zope.component/tags/3.0.0/setup.py	2006-04-04 15:44:31 UTC (rev 66395)
@@ -24,18 +24,19 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.component',
-      version='3.0',
-      url='http://svn.zope.org/zope.component',
+      version='3.0.0',
+      url='http://svn.zope.org/zope.component/tags/3.0.0',
       license='ZPL 2.1',
-      description='component',
+      description='Zope Component Architecture',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
+      long_description="This package represents the core of the "
+                  "Zope Component Architecture.  Together with the "
+                  "'zope.interface' package, it provides facilities for "
+                  "defining, registering and looking up components.",
       
       packages=['zope',
                 'zope.component',
-                'zope.component.bbb',
-                'zope.component.bbb.tests',
                ],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
 


Property changes on: zope.component/tags/3.0.0/src/zope
___________________________________________________________________
Name: svn:externals
   - component svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/component

   + component svn://svn.zope.org/repos/main/Zope3/tags/ZopeX3-3.0.0/src/zope/component




More information about the Checkins mailing list