[Checkins] SVN: zope.app.intid/tags/3.5.1/ Tag 3.5.1

Dan Korostelev nadako at gmail.com
Thu Dec 11 10:42:11 EST 2008


Log message for revision 93905:
  Tag 3.5.1

Changed:
  A   zope.app.intid/tags/3.5.1/
  D   zope.app.intid/tags/3.5.1/CHANGES.txt
  A   zope.app.intid/tags/3.5.1/CHANGES.txt
  D   zope.app.intid/tags/3.5.1/setup.py
  A   zope.app.intid/tags/3.5.1/setup.py

-=-
Deleted: zope.app.intid/tags/3.5.1/CHANGES.txt
===================================================================
--- zope.app.intid/trunk/CHANGES.txt	2008-12-11 15:34:30 UTC (rev 93903)
+++ zope.app.intid/tags/3.5.1/CHANGES.txt	2008-12-11 15:42:11 UTC (rev 93905)
@@ -1,28 +0,0 @@
-=======
-CHANGES
-=======
-
-3.5.1 (unreleased)
-
-- Make it possible to subscribe object-specific handlers
-  for IntIdAddedEvent/IntIdRemovedEvent. Use them like
-  the zope.app.container.interfaces.IObjectAddedEvent.
-- Include utility->id mapping of added ids to the
-  IntIdAddedEvent.
-
-3.5.0 (2008-06-19)
-------------------
-
-- Separate subscriber configuration into a separate ZCML file.
-
-
-3.4.1 (2007-10-31)
-------------------
-
-- Resolve ``ZopeSecurityPolicy`` deprecation warning.
-
-
-3.4.0 (2007-10-24)
-------------------
-
-- Initial release independent of the main Zope tree.

Copied: zope.app.intid/tags/3.5.1/CHANGES.txt (from rev 93904, zope.app.intid/trunk/CHANGES.txt)
===================================================================
--- zope.app.intid/tags/3.5.1/CHANGES.txt	                        (rev 0)
+++ zope.app.intid/tags/3.5.1/CHANGES.txt	2008-12-11 15:42:11 UTC (rev 93905)
@@ -0,0 +1,29 @@
+=======
+CHANGES
+=======
+
+3.5.1 (2008-12-11)
+
+- Make it possible to subscribe object-specific handlers
+  for IntIdAddedEvent/IntIdRemovedEvent. Use them like
+  the zope.app.container.interfaces.IObjectAddedEvent.
+- Include utility->id mapping of added ids to the
+  IntIdAddedEvent.
+- Removed testing dependencies from install_requires.
+
+3.5.0 (2008-06-19)
+------------------
+
+- Separate subscriber configuration into a separate ZCML file.
+
+
+3.4.1 (2007-10-31)
+------------------
+
+- Resolve ``ZopeSecurityPolicy`` deprecation warning.
+
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.

Deleted: zope.app.intid/tags/3.5.1/setup.py
===================================================================
--- zope.app.intid/trunk/setup.py	2008-12-11 15:34:30 UTC (rev 93903)
+++ zope.app.intid/tags/3.5.1/setup.py	2008-12-11 15:42:11 UTC (rev 93905)
@@ -1,68 +0,0 @@
-##############################################################################
-#
-# 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.app.intid package
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(name = 'zope.app.intid',
-      version = '3.6.0dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='Integer Id Utility',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 integer id utility",
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://cheeseshop.python.org/pypi/zope.app.intid',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.app.securitypolicy',
-                                  'zope.app.zcmlfiles']),
-      install_requires = ['setuptools',
-                          'ZODB3',
-                          'zope.app.component',
-                          'zope.app.container',
-                          'zope.app.folder',
-                          'zope.app.keyreference',
-                          'zope.app.testing',
-                          'zope.component',
-                          'zope.event',
-                          'zope.interface',
-                          'zope.location',
-                          'zope.security',
-                          ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.app.intid/tags/3.5.1/setup.py (from rev 93904, zope.app.intid/trunk/setup.py)
===================================================================
--- zope.app.intid/tags/3.5.1/setup.py	                        (rev 0)
+++ zope.app.intid/tags/3.5.1/setup.py	2008-12-11 15:42:11 UTC (rev 93905)
@@ -0,0 +1,67 @@
+##############################################################################
+#
+# 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.app.intid package
+
+$Id$
+"""
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(name = 'zope.app.intid',
+      version = '3.5.1',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Integer Id Utility',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 integer id utility",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.app.intid',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.app.securitypolicy',
+                                  'zope.app.folder',
+                                  'zope.app.zcmlfiles']),
+      install_requires = ['setuptools',
+                          'ZODB3',
+                          'zope.app.component',
+                          'zope.app.container',
+                          'zope.app.keyreference',
+                          'zope.component',
+                          'zope.event',
+                          'zope.interface',
+                          'zope.location',
+                          'zope.security',
+                          ],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list