[Checkins] SVN: zope.securitypolicy/tags/3.4.2/ Tag 3.4.2

Dan Korostelev nadako at gmail.com
Tue Jan 27 17:33:29 EST 2009


Log message for revision 95265:
  Tag 3.4.2

Changed:
  A   zope.securitypolicy/tags/3.4.2/
  D   zope.securitypolicy/tags/3.4.2/CHANGES.txt
  A   zope.securitypolicy/tags/3.4.2/CHANGES.txt
  D   zope.securitypolicy/tags/3.4.2/README.txt
  A   zope.securitypolicy/tags/3.4.2/README.txt
  D   zope.securitypolicy/tags/3.4.2/setup.py
  A   zope.securitypolicy/tags/3.4.2/setup.py
  D   zope.securitypolicy/tags/3.4.2/src/
  A   zope.securitypolicy/tags/3.4.2/src/

-=-
Deleted: zope.securitypolicy/tags/3.4.2/CHANGES.txt
===================================================================
--- zope.securitypolicy/trunk/CHANGES.txt	2009-01-27 21:50:50 UTC (rev 95261)
+++ zope.securitypolicy/tags/3.4.2/CHANGES.txt	2009-01-27 22:33:29 UTC (rev 95265)
@@ -1,22 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.2 (unreleased)
-------------------
-
-* Fix test in buildout which still depended on zope.app.securitypolicy
-  by mistake.
-
-* Remove explicit dependency on zope.app.form from ``setup.py``; nothing
-  in the code directly depends on this.
- 
-3.4.1 (2008/6/2)
-----------------
-
-* Fix reference to deprecated security policy from ZCML.
-
-3.4.0 (2007/9/25)
------------------
-
-* Initial documented release

Copied: zope.securitypolicy/tags/3.4.2/CHANGES.txt (from rev 95263, zope.securitypolicy/trunk/CHANGES.txt)
===================================================================
--- zope.securitypolicy/tags/3.4.2/CHANGES.txt	                        (rev 0)
+++ zope.securitypolicy/tags/3.4.2/CHANGES.txt	2009-01-27 22:33:29 UTC (rev 95265)
@@ -0,0 +1,25 @@
+=======
+CHANGES
+=======
+
+3.4.2 (2009-01-28)
+------------------
+
+- Changed mailing list address to zope-dev at zope.org. Fix package
+  homepage to the pypi page.
+
+- Fix test in buildout which still depended on zope.app.securitypolicy
+  by mistake.
+
+- Remove explicit dependency on zope.app.form from ``setup.py``; nothing
+  in the code directly depends on this.
+ 
+3.4.1 (2008-06-02)
+------------------
+
+- Fix reference to deprecated security policy from ZCML.
+
+3.4.0 (2007-09-25)
+------------------
+
+- Initial documented release

Deleted: zope.securitypolicy/tags/3.4.2/README.txt
===================================================================
--- zope.securitypolicy/trunk/README.txt	2009-01-27 21:50:50 UTC (rev 95261)
+++ zope.securitypolicy/tags/3.4.2/README.txt	2009-01-27 22:33:29 UTC (rev 95265)
@@ -1 +0,0 @@
-This package provides a zope security policy.

Copied: zope.securitypolicy/tags/3.4.2/README.txt (from rev 95262, zope.securitypolicy/trunk/README.txt)
===================================================================
--- zope.securitypolicy/tags/3.4.2/README.txt	                        (rev 0)
+++ zope.securitypolicy/tags/3.4.2/README.txt	2009-01-27 22:33:29 UTC (rev 95265)
@@ -0,0 +1,3 @@
+This package provides an useful security policy for Zope3. It's the
+default security policy used in "zope3 the application" and many other
+zope-based projects.

Deleted: zope.securitypolicy/tags/3.4.2/setup.py
===================================================================
--- zope.securitypolicy/trunk/setup.py	2009-01-27 21:50:50 UTC (rev 95261)
+++ zope.securitypolicy/tags/3.4.2/setup.py	2009-01-27 22:33:29 UTC (rev 95265)
@@ -1,70 +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.securitypolicy 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.securitypolicy',
-    version = '3.4.2dev',
-    author='Zope Corporation and Contributors',
-    author_email='zope3-dev at zope.org',
-    description='Zope securitypolicy',
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    keywords="zope3 security policy",
-    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://svn.zope.org/zope.app.securitypolicy',
-    license='ZPL 2.1',
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['zope'],
-    extras_require=dict(
-        test=['zope.app.testing']),
-    install_requires=[
-        'setuptools',
-        'zope.annotation',
-        'zope.app.security',
-        'zope.component [hook]',
-        'zope.configuration',
-        'zope.exceptions',
-        'zope.i18n',
-        'zope.i18nmessageid',
-        'zope.interface',
-        'zope.location',
-        'zope.schema',
-        'zope.security',
-        ],
-    include_package_data=True,
-    zip_safe=False,
-    )

Copied: zope.securitypolicy/tags/3.4.2/setup.py (from rev 95262, zope.securitypolicy/trunk/setup.py)
===================================================================
--- zope.securitypolicy/tags/3.4.2/setup.py	                        (rev 0)
+++ zope.securitypolicy/tags/3.4.2/setup.py	2009-01-27 22:33:29 UTC (rev 95265)
@@ -0,0 +1,70 @@
+##############################################################################
+#
+# 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.securitypolicy 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.securitypolicy',
+    version = '3.4.2',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    description='Default security policy for Zope3',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    keywords="zope3 security policy",
+    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://pypi.python.org/pypi/zope.securitypolicy',
+    license='ZPL 2.1',
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope'],
+    extras_require=dict(
+        test=['zope.app.testing']),
+    install_requires=[
+        'setuptools',
+        'zope.annotation',
+        'zope.app.security',
+        'zope.component [hook]',
+        'zope.configuration',
+        'zope.exceptions',
+        'zope.i18n',
+        'zope.i18nmessageid',
+        'zope.interface',
+        'zope.location',
+        'zope.schema',
+        'zope.security',
+        ],
+    include_package_data=True,
+    zip_safe=False,
+    )



More information about the Checkins mailing list