[Checkins] SVN: zope.app.authentication/tags/3.4.3/ Tag for 3.4.3

Christophe Combelles ccomb at free.fr
Wed Aug 6 18:32:52 EDT 2008


Log message for revision 89473:
  Tag for 3.4.3
  

Changed:
  A   zope.app.authentication/tags/3.4.3/
  D   zope.app.authentication/tags/3.4.3/CHANGES.txt
  A   zope.app.authentication/tags/3.4.3/CHANGES.txt
  D   zope.app.authentication/tags/3.4.3/setup.py
  A   zope.app.authentication/tags/3.4.3/setup.py

-=-
Copied: zope.app.authentication/tags/3.4.3 (from rev 89470, zope.app.authentication/trunk)

Deleted: zope.app.authentication/tags/3.4.3/CHANGES.txt
===================================================================
--- zope.app.authentication/trunk/CHANGES.txt	2008-08-06 20:50:06 UTC (rev 89470)
+++ zope.app.authentication/tags/3.4.3/CHANGES.txt	2008-08-06 22:32:52 UTC (rev 89473)
@@ -1,34 +0,0 @@
-=======
-CHANGES
-=======
-
-Version 3.4.3dev (unreleased)
------------------------------
-
-- ...
-
-
-Version 3.4.2 (2008-07-09)
---------------------------
-
-- Make it compatible with upcomming zope.app.container 3.6.1 changes.
-  Changed super(BTreeContainer, self).__init__() to 
-  super(GroupFolder, self).__init__() in GroupFolder class.
-
-
-Version 3.4.1 (2007-10-24)
---------------------------
-
-- avoid deprecation warning
-
-
-Version 3.4.0 (2007-10-11)
---------------------------
-
-- Updated package meta-data.
-
-
-Version 3.4.0b1 (2007-09-27)
-----------------------------
-
-- First Zope-independent release.

Copied: zope.app.authentication/tags/3.4.3/CHANGES.txt (from rev 89472, zope.app.authentication/trunk/CHANGES.txt)
===================================================================
--- zope.app.authentication/tags/3.4.3/CHANGES.txt	                        (rev 0)
+++ zope.app.authentication/tags/3.4.3/CHANGES.txt	2008-08-06 22:32:52 UTC (rev 89473)
@@ -0,0 +1,34 @@
+=======
+CHANGES
+=======
+
+Version 3.4.3 (2008-08-07)
+--------------------------
+
+- no changes. Retag for correct release on PyPI
+
+
+Version 3.4.2 (2008-07-09)
+--------------------------
+
+- Make it compatible with zope.app.container 3.6.1 and 3.5.4 changes,
+  Changed super(BTreeContainer, self).__init__() to 
+  super(GroupFolder, self).__init__() in GroupFolder class.
+
+
+Version 3.4.1 (2007-10-24)
+--------------------------
+
+- avoid deprecation warning
+
+
+Version 3.4.0 (2007-10-11)
+--------------------------
+
+- Updated package meta-data.
+
+
+Version 3.4.0b1 (2007-09-27)
+----------------------------
+
+- First Zope-independent release.

Deleted: zope.app.authentication/tags/3.4.3/setup.py
===================================================================
--- zope.app.authentication/trunk/setup.py	2008-08-06 20:50:06 UTC (rev 89470)
+++ zope.app.authentication/tags/3.4.3/setup.py	2008-08-06 22:32:52 UTC (rev 89473)
@@ -1,85 +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.authentication 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.authentication',
-      version = '3.4.3dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='Pluggable Authentication Utility',
-      long_description=(
-        read('README.txt')
-        + '\n\n' +
-        'Detailed Documentation\n' +
-        '----------------------\n'
-        + '\n' +
-        read('src', 'zope', 'app', 'authentication', 'README.txt')
-        + '\n\n' +
-        read('src', 'zope', 'app', 'authentication', 'principalfolder.txt')
-        + '\n\n' +
-        read('src', 'zope', 'app', 'authentication', 'vocabulary.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-      url='http://cheeseshop.python.org/pypi/zope.app.authentication',
-      license='ZPL 2.1',
-      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'],
-      keywords='zope3 authentication pluggable principal group',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      extras_require=dict(test=['zope.app.testing',
-                                'zope.app.securitypolicy',
-                                'zope.app.zcmlfiles',
-                                'zope.securitypolicy',
-                                'zope.testbrowser']),
-      namespace_packages=['zope', 'zope.app'],
-      install_requires=['setuptools',
-                        'zope.app.component',
-                        'zope.app.container',
-                        'zope.app.form',
-                        'zope.app.security',
-                        'zope.app.session',
-                        'zope.dublincore',
-                        'zope.event',
-                        'zope.exceptions',
-                        'zope.i18n',
-                        'zope.i18nmessageid',
-                        'zope.interface',
-                        'zope.location',
-                        'zope.publisher',
-                        'zope.schema',
-                        'zope.security',
-                        'zope.traversing',
-                        'ZODB3',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.app.authentication/tags/3.4.3/setup.py (from rev 89472, zope.app.authentication/trunk/setup.py)
===================================================================
--- zope.app.authentication/tags/3.4.3/setup.py	                        (rev 0)
+++ zope.app.authentication/tags/3.4.3/setup.py	2008-08-06 22:32:52 UTC (rev 89473)
@@ -0,0 +1,85 @@
+##############################################################################
+#
+# 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.authentication 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.authentication',
+      version = '3.4.3',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='Pluggable Authentication Utility',
+      long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n' +
+        '----------------------\n'
+        + '\n' +
+        read('src', 'zope', 'app', 'authentication', 'README.txt')
+        + '\n\n' +
+        read('src', 'zope', 'app', 'authentication', 'principalfolder.txt')
+        + '\n\n' +
+        read('src', 'zope', 'app', 'authentication', 'vocabulary.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+      url='http://cheeseshop.python.org/pypi/zope.app.authentication',
+      license='ZPL 2.1',
+      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'],
+      keywords='zope3 authentication pluggable principal group',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      extras_require=dict(test=['zope.app.testing',
+                                'zope.app.securitypolicy',
+                                'zope.app.zcmlfiles',
+                                'zope.securitypolicy',
+                                'zope.testbrowser']),
+      namespace_packages=['zope', 'zope.app'],
+      install_requires=['setuptools',
+                        'zope.app.component',
+                        'zope.app.container',
+                        'zope.app.form',
+                        'zope.app.security',
+                        'zope.app.session',
+                        'zope.dublincore',
+                        'zope.event',
+                        'zope.exceptions',
+                        'zope.i18n',
+                        'zope.i18nmessageid',
+                        'zope.interface',
+                        'zope.location',
+                        'zope.publisher',
+                        'zope.schema',
+                        'zope.security',
+                        'zope.traversing',
+                        'ZODB3',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list