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

Dan Korostelev nadako at gmail.com
Mon Mar 16 18:01:45 EDT 2009


Log message for revision 98167:
  Tag 3.4.2

Changed:
  A   zope.pagetemplate/tags/3.4.2/
  D   zope.pagetemplate/tags/3.4.2/CHANGES.txt
  A   zope.pagetemplate/tags/3.4.2/CHANGES.txt
  D   zope.pagetemplate/tags/3.4.2/setup.py
  A   zope.pagetemplate/tags/3.4.2/setup.py
  D   zope.pagetemplate/tags/3.4.2/src/zope/pagetemplate/DEPENDENCIES.cfg

-=-
Deleted: zope.pagetemplate/tags/3.4.2/CHANGES.txt
===================================================================
--- zope.pagetemplate/trunk/CHANGES.txt	2009-03-16 21:56:33 UTC (rev 98165)
+++ zope.pagetemplate/tags/3.4.2/CHANGES.txt	2009-03-16 22:01:44 UTC (rev 98167)
@@ -1,51 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.2 (unreleased)
-------------------
-
-- ...
-
-3.4.1 (2009-01-27)
-------------------
-
-- Fix test due to recent changes in zope.tal.
-
-
-3.4.0 (2007-10-02)
-------------------
-
-- Initial release independent of the Zope 3 tree.
-
-
-3.2.0 (2006-01-05)
-------------------
-
-- Corresponds to the verison of the zope.pagetemplate package shipped
-  as part of the Zope 3.2.0 release.
-
-- ZPTPage macro expansion:  changed label text to match the corresponding
-  label in Zope 2 and activated the name spaces for macro expansion
-  in 'read'.  See http://www.zope.org/Collectors/Zope3-dev/199
-
-- Coding style cleanups.
-
-
-3.1.0 (2005-10-03)
-------------------
-
-- Corresponds to the verison of the zope.pagetemplate package shipped
-  as part of the Zope 3.1.0 release.
-
-- Fixed apidoc and Cookie, which were using wrong descriptor class
-  (changed to 'property').  See http://www.zope.org/Collectors/Zope3-dev/387
-
-- Documentation / style / testing cleanups.
-
-
-3.0.0 (2004-11-07)
-------------------
-
-- Corresponds to the verison of the zope.pagetemplate package shipped
-  as part of the Zope X3.0.0 release.

Copied: zope.pagetemplate/tags/3.4.2/CHANGES.txt (from rev 98166, zope.pagetemplate/trunk/CHANGES.txt)
===================================================================
--- zope.pagetemplate/tags/3.4.2/CHANGES.txt	                        (rev 0)
+++ zope.pagetemplate/tags/3.4.2/CHANGES.txt	2009-03-16 22:01:44 UTC (rev 98167)
@@ -0,0 +1,56 @@
+=======
+CHANGES
+=======
+
+3.4.2 (2009-03-17)
+------------------
+
+- Remove old zpkg-related DEPENDENCIES.cfg file.
+
+- Change package's mailing list address to zope-dev at zope.org, as
+  zope3-dev at zope.org is now retired.
+
+- Change `cheeseshop` to `pypi` in the packages' homepage url.
+
+3.4.1 (2009-01-27)
+------------------
+
+- Fix test due to recent changes in zope.tal.
+
+
+3.4.0 (2007-10-02)
+------------------
+
+- Initial release independent of the Zope 3 tree.
+
+
+3.2.0 (2006-01-05)
+------------------
+
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope 3.2.0 release.
+
+- ZPTPage macro expansion:  changed label text to match the corresponding
+  label in Zope 2 and activated the name spaces for macro expansion
+  in 'read'.  See http://www.zope.org/Collectors/Zope3-dev/199
+
+- Coding style cleanups.
+
+
+3.1.0 (2005-10-03)
+------------------
+
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope 3.1.0 release.
+
+- Fixed apidoc and Cookie, which were using wrong descriptor class
+  (changed to 'property').  See http://www.zope.org/Collectors/Zope3-dev/387
+
+- Documentation / style / testing cleanups.
+
+
+3.0.0 (2004-11-07)
+------------------
+
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope X3.0.0 release.

Deleted: zope.pagetemplate/tags/3.4.2/setup.py
===================================================================
--- zope.pagetemplate/trunk/setup.py	2009-03-16 21:56:33 UTC (rev 98165)
+++ zope.pagetemplate/tags/3.4.2/setup.py	2009-03-16 22:01:44 UTC (rev 98167)
@@ -1,67 +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.pagetemplate 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.pagetemplate',
-      version = '3.4.2dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='Zope Page Templates',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed Documentation\n' +
-          '----------------------'
-          + '\n\n' +
-          read('src', 'zope', 'pagetemplate', 'architecture.txt')
-          + '\n\n' +
-          read('src', 'zope', 'pagetemplate', 'readme.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 page template",
-      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.pagetemplate',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope'],
-      extras_require = dict(
-          test=['zope.testing',
-                ]),
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'zope.tales',
-                        'zope.tal',
-                       ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.pagetemplate/tags/3.4.2/setup.py (from rev 98166, zope.pagetemplate/trunk/setup.py)
===================================================================
--- zope.pagetemplate/tags/3.4.2/setup.py	                        (rev 0)
+++ zope.pagetemplate/tags/3.4.2/setup.py	2009-03-16 22:01:44 UTC (rev 98167)
@@ -0,0 +1,67 @@
+##############################################################################
+#
+# 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.pagetemplate 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.pagetemplate',
+      version = '3.4.2',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='Zope Page Templates',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n' +
+          '----------------------'
+          + '\n\n' +
+          read('src', 'zope', 'pagetemplate', 'architecture.txt')
+          + '\n\n' +
+          read('src', 'zope', 'pagetemplate', 'readme.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 page template",
+      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.pagetemplate',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope'],
+      extras_require = dict(
+          test=['zope.testing',
+                ]),
+      install_requires=['setuptools',
+                        'zope.interface',
+                        'zope.tales',
+                        'zope.tal',
+                       ],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: zope.pagetemplate/tags/3.4.2/src/zope/pagetemplate/DEPENDENCIES.cfg
===================================================================
--- zope.pagetemplate/trunk/src/zope/pagetemplate/DEPENDENCIES.cfg	2009-03-16 21:56:33 UTC (rev 98165)
+++ zope.pagetemplate/tags/3.4.2/src/zope/pagetemplate/DEPENDENCIES.cfg	2009-03-16 22:01:44 UTC (rev 98167)
@@ -1,3 +0,0 @@
-zope.interface
-zope.tal
-zope.tales



More information about the Checkins mailing list