[Checkins] SVN: zc.zope3recipes/tags/0.6.2/ tag for 0.6.2

Christophe Combelles ccomb at free.fr
Sun Aug 17 18:47:03 EDT 2008


Log message for revision 89938:
  tag for 0.6.2
  

Changed:
  A   zc.zope3recipes/tags/0.6.2/
  D   zc.zope3recipes/tags/0.6.2/README.txt
  A   zc.zope3recipes/tags/0.6.2/README.txt
  D   zc.zope3recipes/tags/0.6.2/setup.py
  A   zc.zope3recipes/tags/0.6.2/setup.py

-=-
Copied: zc.zope3recipes/tags/0.6.2 (from rev 89875, zc.zope3recipes/branches/0.6)

Deleted: zc.zope3recipes/tags/0.6.2/README.txt
===================================================================
--- zc.zope3recipes/branches/0.6/README.txt	2008-08-15 11:53:34 UTC (rev 89875)
+++ zc.zope3recipes/tags/0.6.2/README.txt	2008-08-17 22:47:03 UTC (rev 89938)
@@ -1,74 +0,0 @@
-**************************************
-Zope3 Application and Instance Recipes
-**************************************
-
-Recipes for creating Zope 3 instances with distinguishing features:
-
-- Don't use a skeleton
-
-- Separates application and instance definition
-
-- Don't support package-includes
-
-Unfortunately, partial Windows support at this time. It works but it's alpha.
-
-.. contents::
-
-Releases
-********
-=====================
-0.6.2dev (unreleased)
-=====================
-
-Added the "newest=false" option in the SetUp to prevent upgrade during tests
-
-==================
-0.6.1 (2007/12/17)
-==================
-
-Fixed bug: The zope.conf site-definition option could not be overridden. 
-
-==================
-0.6.0 (2007/11/03)
-==================
-
-Final release with Windows support.
-
-==================
-0.6b1 (2007/08/21)
-==================
-
-Windows support was added.
-
-==================
-0.5.5 (2007/07/26)
-==================
-
-Now debugzope takes the servers key of the application into account.
-
-==================
-0.5.3 (2007/07/14)
-==================
-
-Created another recipe called 'application' that installs Zope 3
-solely from eggs.  The 'app' recipe is just an extension that also
-supports Zope 3 from checkout or tarball.
-
-==================
-0.5.2 (2007/06/21)
-==================
-
-Use ZConfig's schema-free configuration parsing gain support for
-%import.
-
-==================
-0.5.1 (2007/05/22)
-==================
-
-Support repeated keys in ZConfig sections.
-
-==================
-0.5.0 (2007/03/21)
-==================
-
-Support building Zope 3 application solely from eggs.

Copied: zc.zope3recipes/tags/0.6.2/README.txt (from rev 89937, zc.zope3recipes/branches/0.6/README.txt)
===================================================================
--- zc.zope3recipes/tags/0.6.2/README.txt	                        (rev 0)
+++ zc.zope3recipes/tags/0.6.2/README.txt	2008-08-17 22:47:03 UTC (rev 89938)
@@ -0,0 +1,74 @@
+**************************************
+Zope3 Application and Instance Recipes
+**************************************
+
+Recipes for creating Zope 3 instances with distinguishing features:
+
+- Don't use a skeleton
+
+- Separates application and instance definition
+
+- Don't support package-includes
+
+Unfortunately, partial Windows support at this time. It works but it's alpha.
+
+.. contents::
+
+Releases
+********
+==================
+0.6.2 (2008/08/18)
+==================
+
+Added the "newest=false" option in the SetUp to prevent upgrade during tests
+
+==================
+0.6.1 (2007/12/17)
+==================
+
+Fixed bug: The zope.conf site-definition option could not be overridden. 
+
+==================
+0.6.0 (2007/11/03)
+==================
+
+Final release with Windows support.
+
+==================
+0.6b1 (2007/08/21)
+==================
+
+Windows support was added.
+
+==================
+0.5.5 (2007/07/26)
+==================
+
+Now debugzope takes the servers key of the application into account.
+
+==================
+0.5.3 (2007/07/14)
+==================
+
+Created another recipe called 'application' that installs Zope 3
+solely from eggs.  The 'app' recipe is just an extension that also
+supports Zope 3 from checkout or tarball.
+
+==================
+0.5.2 (2007/06/21)
+==================
+
+Use ZConfig's schema-free configuration parsing gain support for
+%import.
+
+==================
+0.5.1 (2007/05/22)
+==================
+
+Support repeated keys in ZConfig sections.
+
+==================
+0.5.0 (2007/03/21)
+==================
+
+Support building Zope 3 application solely from eggs.

Deleted: zc.zope3recipes/tags/0.6.2/setup.py
===================================================================
--- zc.zope3recipes/branches/0.6/setup.py	2008-08-15 11:53:34 UTC (rev 89875)
+++ zc.zope3recipes/tags/0.6.2/setup.py	2008-08-17 22:47:03 UTC (rev 89938)
@@ -1,54 +0,0 @@
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-name = "zc.zope3recipes"
-setup(
-    name = name,
-    version = "0.6.2dev",
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "ZC Buildout recipe for defining Zope 3 applications",
-    license = "ZPL 2.1",
-    keywords = "zope3 buildout",
-    url='http://cheeseshop.python.org/pypi/'+name,
-    long_description = (
-        read('README.txt')
-        + '\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('zc', 'zope3recipes', 'README.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
-        ),
-    packages = find_packages('.'),
-    include_package_data = True,
-    #package_dir = {'':'src'},
-    namespace_packages = ['zc'],
-    install_requires = ['zc.buildout', 'zope.testing', 'setuptools',
-                        'zc.recipe.egg', 'ZConfig >=2.4a5'],
-    dependency_links = ['http://download.zope.org/distribution/'],
-    entry_points = {
-        'zc.buildout': [
-             'application = %s.recipes:Application' % name,
-             'app = %s.recipes:App' % name,
-             'instance = %s.recipes:Instance' % name,
-             ]
-        },
-    extras_require = dict(
-        tests = ['zdaemon', 'zc.recipe.filestorage'],
-        ),
-    classifiers=[
-        "Development Status :: 5 - Production/Stable",
-        "Framework :: Buildout",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved :: Zope Public License",
-        "Topic :: Software Development :: Build Tools",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        ],
-    )
- 

Copied: zc.zope3recipes/tags/0.6.2/setup.py (from rev 89937, zc.zope3recipes/branches/0.6/setup.py)
===================================================================
--- zc.zope3recipes/tags/0.6.2/setup.py	                        (rev 0)
+++ zc.zope3recipes/tags/0.6.2/setup.py	2008-08-17 22:47:03 UTC (rev 89938)
@@ -0,0 +1,54 @@
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+name = "zc.zope3recipes"
+setup(
+    name = name,
+    version = "0.6.2",
+    author = "Jim Fulton",
+    author_email = "jim at zope.com",
+    description = "ZC Buildout recipe for defining Zope 3 applications",
+    license = "ZPL 2.1",
+    keywords = "zope3 buildout",
+    url='http://cheeseshop.python.org/pypi/'+name,
+    long_description = (
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('zc', 'zope3recipes', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
+    packages = find_packages('.'),
+    include_package_data = True,
+    #package_dir = {'':'src'},
+    namespace_packages = ['zc'],
+    install_requires = ['zc.buildout', 'zope.testing', 'setuptools',
+                        'zc.recipe.egg', 'ZConfig >=2.4a5'],
+    dependency_links = ['http://download.zope.org/distribution/'],
+    entry_points = {
+        'zc.buildout': [
+             'application = %s.recipes:Application' % name,
+             'app = %s.recipes:App' % name,
+             'instance = %s.recipes:Instance' % name,
+             ]
+        },
+    extras_require = dict(
+        tests = ['zdaemon', 'zc.recipe.filestorage'],
+        ),
+    classifiers=[
+        "Development Status :: 5 - Production/Stable",
+        "Framework :: Buildout",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Topic :: Software Development :: Build Tools",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
+    )
+ 



More information about the Checkins mailing list