[Checkins] SVN: zope.app.twisted/tags/3.4.2/ Tag 3.4.2

Dan Korostelev nadako at gmail.com
Tue Jan 27 05:29:50 EST 2009


Log message for revision 95110:
  Tag 3.4.2

Changed:
  A   zope.app.twisted/tags/3.4.2/
  D   zope.app.twisted/tags/3.4.2/CHANGES.txt
  A   zope.app.twisted/tags/3.4.2/CHANGES.txt
  D   zope.app.twisted/tags/3.4.2/setup.py
  A   zope.app.twisted/tags/3.4.2/setup.py

-=-
Deleted: zope.app.twisted/tags/3.4.2/CHANGES.txt
===================================================================
--- zope.app.twisted/trunk/CHANGES.txt	2009-01-27 10:10:33 UTC (rev 95106)
+++ zope.app.twisted/tags/3.4.2/CHANGES.txt	2009-01-27 10:29:49 UTC (rev 95110)
@@ -1,14 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.1 (2008-02-02)
-------------------
-
-- Fix of 599 error on conflict error in request
-  see: http://mail.zope.org/pipermail/zope-dev/2008-January/030844.html
-
-3.4.0 (2007-10-27)
-------------------
-
-- Initial release independent of the main Zope tree.

Copied: zope.app.twisted/tags/3.4.2/CHANGES.txt (from rev 95109, zope.app.twisted/trunk/CHANGES.txt)
===================================================================
--- zope.app.twisted/tags/3.4.2/CHANGES.txt	                        (rev 0)
+++ zope.app.twisted/tags/3.4.2/CHANGES.txt	2009-01-27 10:29:49 UTC (rev 95110)
@@ -0,0 +1,28 @@
+=======
+CHANGES
+=======
+
+3.4.2 (2009-01-27)
+------------------
+
+- Fix tests. Remove unused code.
+
+- Add zope.testbrowser to testing dependencies for ZEO tests.
+
+- Remove unneeded dependency on ZODB3.
+
+- Remove dependency on zope.app.zapi, substituting its uses with direct
+  imports.
+
+- Change "cheeseshop" to "pypi" in the package homepage. 
+
+3.4.1 (2008-02-02)
+------------------
+
+- Fix of 599 error on conflict error in request
+  see: http://mail.zope.org/pipermail/zope-dev/2008-January/030844.html
+
+3.4.0 (2007-10-27)
+------------------
+
+- Initial release independent of the main Zope tree.

Deleted: zope.app.twisted/tags/3.4.2/setup.py
===================================================================
--- zope.app.twisted/trunk/setup.py	2009-01-27 10:10:33 UTC (rev 95106)
+++ zope.app.twisted/tags/3.4.2/setup.py	2009-01-27 10:29:49 UTC (rev 95110)
@@ -1,74 +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.twisted 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.twisted',
-      version = '3.4.2dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='Twisted Integration for Zope 3 Applications',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed Dcoumentation\n' +
-          '======================\n'
-          + '\n\n' +
-          read('src', 'zope', 'app', 'twisted', 'README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 twisted server http ftp wsgi",
-      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.twisted',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.testbrowser',]),
-      install_requires = ['setuptools',
-                          'ZConfig',
-                          'zdaemon',
-                          'zope.copypastemove',
-                          'zope.event',
-                          'zope.exceptions',
-                          'zope.interface',
-                          'zope.publisher',
-                          'zope.security',
-                          'zope.app.applicationcontrol',
-                          'zope.app.appsetup',
-                          'zope.app.publication',
-                          'zope.app.wsgi',
-                          'zope.app.server',
-                          ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.app.twisted/tags/3.4.2/setup.py (from rev 95109, zope.app.twisted/trunk/setup.py)
===================================================================
--- zope.app.twisted/tags/3.4.2/setup.py	                        (rev 0)
+++ zope.app.twisted/tags/3.4.2/setup.py	2009-01-27 10:29:49 UTC (rev 95110)
@@ -0,0 +1,74 @@
+##############################################################################
+#
+# 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.twisted 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.twisted',
+      version = '3.4.2',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='Twisted Integration for Zope 3 Applications',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n' +
+          '======================\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'twisted', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 twisted server http ftp wsgi",
+      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.app.twisted',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.testbrowser',]),
+      install_requires = ['setuptools',
+                          'ZConfig',
+                          'zdaemon',
+                          'zope.copypastemove',
+                          'zope.event',
+                          'zope.exceptions',
+                          'zope.interface',
+                          'zope.publisher',
+                          'zope.security',
+                          'zope.app.applicationcontrol',
+                          'zope.app.appsetup',
+                          'zope.app.publication',
+                          'zope.app.wsgi',
+                          'zope.app.server',
+                          ],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list