[Checkins] SVN: zope.app.zcmlfiles/tags/3.5.0/ Tag 3.5.0

Dan Korostelev nadako at gmail.com
Tue Dec 16 03:54:51 EST 2008


Log message for revision 94106:
  Tag 3.5.0

Changed:
  A   zope.app.zcmlfiles/tags/3.5.0/
  D   zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt
  A   zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt
  D   zope.app.zcmlfiles/tags/3.5.0/setup.py
  A   zope.app.zcmlfiles/tags/3.5.0/setup.py

-=-
Deleted: zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt
===================================================================
--- zope.app.zcmlfiles/trunk/CHANGES.txt	2008-12-16 08:40:10 UTC (rev 94103)
+++ zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt	2008-12-16 08:54:51 UTC (rev 94106)
@@ -1,30 +0,0 @@
-Change History
-==============
-
-3.5.0 (unreleased)
-
-- Remove deprecated include of zope.app.component.browser meta.zcml.
-- Remove deprecated include of zope.app.schema meta.zcml.
-- Remove use of zope.modulealias.
-
-3.4.3 (2007-11-01)
-------------------
-
-- Fix test failure due to missing ``zope.app.container.browser.ftests``
-   directory.  Now it is moved to ``zope.app.container.browser.tests``.
-
-3.4.2 (2007-10-30)
-------------------
-
-- Fix test failure due to missing ``zope.app.form.browser.ftests`` directory.
-  Now it is moved to ``zope.app.form.browser.tests``.
-
-3.4.1 (2007-10-23)
-------------------
-
-- Added missing dependency.
-
-3.4.0 (2007-10-03)
-------------------
-
-- Initial public release as an individual package.

Copied: zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt (from rev 94104, zope.app.zcmlfiles/trunk/CHANGES.txt)
===================================================================
--- zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt	                        (rev 0)
+++ zope.app.zcmlfiles/tags/3.5.0/CHANGES.txt	2008-12-16 08:54:51 UTC (rev 94106)
@@ -0,0 +1,31 @@
+Change History
+==============
+
+3.5.0 (2008-12-16)
+------------------
+
+- Remove deprecated include of zope.app.component.browser meta.zcml.
+- Remove deprecated include of zope.app.schema meta.zcml.
+- Remove use of zope.modulealias.
+
+3.4.3 (2007-11-01)
+------------------
+
+- Fix test failure due to missing ``zope.app.container.browser.ftests``
+   directory.  Now it is moved to ``zope.app.container.browser.tests``.
+
+3.4.2 (2007-10-30)
+------------------
+
+- Fix test failure due to missing ``zope.app.form.browser.ftests`` directory.
+  Now it is moved to ``zope.app.form.browser.tests``.
+
+3.4.1 (2007-10-23)
+------------------
+
+- Added missing dependency.
+
+3.4.0 (2007-10-03)
+------------------
+
+- Initial public release as an individual package.

Deleted: zope.app.zcmlfiles/tags/3.5.0/setup.py
===================================================================
--- zope.app.zcmlfiles/trunk/setup.py	2008-12-16 08:40:10 UTC (rev 94103)
+++ zope.app.zcmlfiles/tags/3.5.0/setup.py	2008-12-16 08:54:51 UTC (rev 94106)
@@ -1,85 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006, 2007 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.zcmlfiles package
-
-$Id$
-"""
-
-import os
-
-from setuptools import setup, find_packages, Extension
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-long_description = (
-    read('README.txt')
-    + '\n' +
-    read('CHANGES.txt')
-    + '\n' +
-    'Download\n'
-    '========'
-    )
-
-setup(
-    name='zope.app.zcmlfiles',
-    version='3.5.0dev',
-    url='http://pypi.python.org/pypi/zope.app.zcmlfiles',
-    author='Zope Corporation and Contributors',
-    author_email='zope3-dev at zope.org',
-    license='ZPL 2.1',
-    classifiers=[
-        'Development Status :: 5 - Production/Stable',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Operating System :: OS Independent',
-        'Topic :: Internet :: WWW/HTTP',
-        'Topic :: Software Development',
-        'Framework :: Zope3',
-        ],
-    description='Zope application server ZCML files',
-    long_description=long_description,
-
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['zope', 'zope.app'],
-    include_package_data=True,
-    install_requires=['setuptools',
-                      'zope.component',
-                      'zope.annotation',
-                      'zope.app.dependable',
-                      'zope.app.content',
-                      'zope.publisher',
-                      'zope.app.component',
-                      'zope.app.generations',
-                      'zope.app.interface',
-                      'zope.app.publisher',
-                      'zope.app.security',
-                      'zope.app.form',
-                      'zope.app.i18n',
-                      'zope.app.locales',
-                      'zope.app.zopeappgenerations',
-                      'zope.app.principalannotation',
-                      'zope.app.basicskin',
-                      'zope.app.rotterdam',
-                      'zope.app.wsgi',
-                      'zope.formlib',
-                      'zope.i18n',
-                      'zope.app.pagetemplate',
-                      'zope.app.schema',
-                      'zope.app.container',
-                      ],
-    zip_safe=False,
-    )

Copied: zope.app.zcmlfiles/tags/3.5.0/setup.py (from rev 94105, zope.app.zcmlfiles/trunk/setup.py)
===================================================================
--- zope.app.zcmlfiles/tags/3.5.0/setup.py	                        (rev 0)
+++ zope.app.zcmlfiles/tags/3.5.0/setup.py	2008-12-16 08:54:51 UTC (rev 94106)
@@ -0,0 +1,85 @@
+##############################################################################
+#
+# Copyright (c) 2006, 2007 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.zcmlfiles package
+
+$Id$
+"""
+
+import os
+
+from setuptools import setup, find_packages, Extension
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '========'
+    )
+
+setup(
+    name='zope.app.zcmlfiles',
+    version='3.5.0',
+    url='http://pypi.python.org/pypi/zope.app.zcmlfiles',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    license='ZPL 2.1',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        'Framework :: Zope3',
+        ],
+    description='Zope application server ZCML files',
+    long_description=long_description,
+
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope', 'zope.app'],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'zope.component',
+                      'zope.annotation',
+                      'zope.app.dependable',
+                      'zope.app.content',
+                      'zope.publisher',
+                      'zope.app.component',
+                      'zope.app.generations',
+                      'zope.app.interface',
+                      'zope.app.publisher',
+                      'zope.app.security',
+                      'zope.app.form',
+                      'zope.app.i18n',
+                      'zope.app.locales',
+                      'zope.app.zopeappgenerations',
+                      'zope.app.principalannotation',
+                      'zope.app.basicskin',
+                      'zope.app.rotterdam',
+                      'zope.app.wsgi',
+                      'zope.formlib',
+                      'zope.i18n',
+                      'zope.app.pagetemplate',
+                      'zope.app.schema',
+                      'zope.app.container',
+                      ],
+    zip_safe=False,
+    )



More information about the Checkins mailing list