[Checkins] SVN: zope.app.server/tags/3.4.2/ tag for 3.4.2

Christophe Combelles ccomb at free.fr
Sun Aug 17 18:35:25 EDT 2008


Log message for revision 89931:
  tag for 3.4.2
  

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

-=-
Copied: zope.app.server/tags/3.4.2 (from rev 89876, zope.app.server/trunk)


Property changes on: zope.app.server/tags/3.4.2
___________________________________________________________________
Name: svn:ignore
   + bin
build
dist
lib
develop-eggs
eggs
parts
.installed.cfg

Name: svn:mergeinfo
   + 

Deleted: zope.app.server/tags/3.4.2/CHANGES.txt
===================================================================
--- zope.app.server/trunk/CHANGES.txt	2008-08-15 12:26:13 UTC (rev 89876)
+++ zope.app.server/tags/3.4.2/CHANGES.txt	2008-08-17 22:35:24 UTC (rev 89931)
@@ -1,22 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.2 (unreleased)
-------------------
-
-- Moved a doctest into a unittest to fix failures in the KGS test suite
-  (see LP #257954)
-
-3.4.1 (2008-02-25)
-------------------
-
-- Fixed restart so that the process exits with a non-zero exit status
-  so it gets restarted by zdaemon, or an equivalent mechanism.
-
-- Removed the use of ThreadedAsync.
-
-3.4.0 (2007-10-27)
-------------------
-
-- Initial release independent of the main Zope tree.

Copied: zope.app.server/tags/3.4.2/CHANGES.txt (from rev 89930, zope.app.server/trunk/CHANGES.txt)
===================================================================
--- zope.app.server/tags/3.4.2/CHANGES.txt	                        (rev 0)
+++ zope.app.server/tags/3.4.2/CHANGES.txt	2008-08-17 22:35:24 UTC (rev 89931)
@@ -0,0 +1,22 @@
+=======
+CHANGES
+=======
+
+3.4.2 (2008-08-18)
+------------------
+
+- Moved a doctest into a unittest to fix failures in the KGS test suite
+  (see LP #257954)
+
+3.4.1 (2008-02-25)
+------------------
+
+- Fixed restart so that the process exits with a non-zero exit status
+  so it gets restarted by zdaemon, or an equivalent mechanism.
+
+- Removed the use of ThreadedAsync.
+
+3.4.0 (2007-10-27)
+------------------
+
+- Initial release independent of the main Zope tree.

Deleted: zope.app.server/tags/3.4.2/setup.py
===================================================================
--- zope.app.server/trunk/setup.py	2008-08-15 12:26:13 UTC (rev 89876)
+++ zope.app.server/tags/3.4.2/setup.py	2008-08-17 22:35:24 UTC (rev 89931)
@@ -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.server 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.server',
-      version = '3.4.2dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='ZServer integration for Zope 3 Applications',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 zserver 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.server',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.app.testing']),
-      install_requires=['setuptools',
-                        'zope.app.applicationcontrol',
-                        'zope.app.appsetup',
-                        'zope.app.authentication',
-                        'zope.app.publication',
-                        'zope.app.wsgi',
-                        'zope.configuration',
-                        'zope.event',
-                        'zope.interface',
-                        'zope.publisher',
-                        'zope.server',
-                        'zdaemon',
-                        'ZConfig',
-                        'ZODB3',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.app.server/tags/3.4.2/setup.py (from rev 89930, zope.app.server/trunk/setup.py)
===================================================================
--- zope.app.server/tags/3.4.2/setup.py	                        (rev 0)
+++ zope.app.server/tags/3.4.2/setup.py	2008-08-17 22:35:24 UTC (rev 89931)
@@ -0,0 +1,68 @@
+##############################################################################
+#
+# 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.server 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.server',
+      version = '3.4.2',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='ZServer integration for Zope 3 Applications',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 zserver 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.server',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing']),
+      install_requires=['setuptools',
+                        'zope.app.applicationcontrol',
+                        'zope.app.appsetup',
+                        'zope.app.authentication',
+                        'zope.app.publication',
+                        'zope.app.wsgi',
+                        'zope.configuration',
+                        'zope.event',
+                        'zope.interface',
+                        'zope.publisher',
+                        'zope.server',
+                        'zdaemon',
+                        'ZConfig',
+                        'ZODB3',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list