[Checkins] SVN: z3c.layer.minimal/trunk/ Make progress with moving z3c.layer packages to it's own top level packages

Roger Ineichen roger at projekt01.ch
Fri Dec 28 19:40:58 EST 2007


Log message for revision 82517:
  Make progress with moving z3c.layer packages to it's own top level packages
  Reflect latest changes in zope.app.security zcml configuration, prevent loading deprecated modules

Changed:
  A   z3c.layer.minimal/trunk/CHANGES.txt
  U   z3c.layer.minimal/trunk/README.txt
  U   z3c.layer.minimal/trunk/buildout.cfg
  U   z3c.layer.minimal/trunk/setup.py
  U   z3c.layer.minimal/trunk/src/z3c/layer/minimal/tests/ftesting.zcml

-=-
Added: z3c.layer.minimal/trunk/CHANGES.txt
===================================================================
--- z3c.layer.minimal/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.layer.minimal/trunk/CHANGES.txt	2007-12-29 00:40:57 UTC (rev 82517)
@@ -0,0 +1,42 @@
+=======
+CHANGES
+=======
+
+1.0.0dev (unreleased)
+---------------------
+
+- move z3c.layer.minimal package to it's own top level package
+  form zope.layer to z3c.layer.minimal
+
+
+CHANGES taken form old z3c.layer top level package
+
+0.2.3 (2007-11-07)
+------------------
+
+- Forward-Bug: Due to a bug in mechanize, the testbrowser throws
+  ``httperror_seek_wrapper`` instead of ``HTTPError`` errors. Thanks to RE
+  normalizers, the code will now work whether the bug is fixed or not in
+  mechanize.
+
+
+0.2.2 (2007-10-31)
+------------------
+
+- Fixed package meta-data.
+
+- Bug: Fixed test failures due to depency updates.
+
+- Restructure: Fixed deprecation warninf for ``ZopeSecurityPolicy``.
+
+
+0.2.1 (2007-??-??)
+------------------
+
+- Changes unknown.
+
+
+0.2.0 (2007-??-??)
+------------------
+
+- Initial release.


Property changes on: z3c.layer.minimal/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: z3c.layer.minimal/trunk/README.txt
===================================================================
--- z3c.layer.minimal/trunk/README.txt	2007-12-29 00:38:41 UTC (rev 82516)
+++ z3c.layer.minimal/trunk/README.txt	2007-12-29 00:40:57 UTC (rev 82517)
@@ -1 +1 @@
-A minimal layer setup for Zope3.
+This package provides a minimal layer setup for Zope3.

Modified: z3c.layer.minimal/trunk/buildout.cfg
===================================================================
--- z3c.layer.minimal/trunk/buildout.cfg	2007-12-29 00:38:41 UTC (rev 82516)
+++ z3c.layer.minimal/trunk/buildout.cfg	2007-12-29 00:40:57 UTC (rev 82517)
@@ -1,7 +1,16 @@
 [buildout]
 develop = .
-parts = test
+parts = test checker coverage
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = z3c.layer.minimal [test]
+
+[checker]
+recipe = lovely.recipe:importchecker
+path = src/z3c/layer/minimal
+
+[coverage]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+

Modified: z3c.layer.minimal/trunk/setup.py
===================================================================
--- z3c.layer.minimal/trunk/setup.py	2007-12-29 00:38:41 UTC (rev 82516)
+++ z3c.layer.minimal/trunk/setup.py	2007-12-29 00:40:57 UTC (rev 82517)
@@ -16,18 +16,27 @@
 
 $Id: setup.py 313 2007-05-22 15:33:41Z srichter $
 """
+
+import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name = 'z3c.layer.minimal',
-    version = '0.3.0',
-    author = "Zope Community",
+    version = '1.0.0dev',
+    author='Zope Foundation and Contributors',
     author_email = "zope3-dev at zope.org",
-    description = open("README.txt").read(),
-    license = "ZPL 2.1",
-    keywords = "minimal layer zope zope3",
+    description = "Minimal layer setup for Zope3",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    keywords = "z3c minimal layer zope zope3",
     classifiers = [
-        'Development Status :: 4 - Beta',
+        'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: Zope Public License',
@@ -36,17 +45,20 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://svn.zope.org/z3c.layer.minimal',
+    url='http://cheeseshop.python.org/pypi/z3c.layer.minimal',
+    license='ZPL 2.1',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['z3c'],
     extras_require = dict(
-        test = ['zope.testbrowser',
-                'zope.app.testing',
-                'zope.app.zcmlfiles',
-                'zope.app.securitypolicy',
-               ],
+        test = [
+            'zope.app.securitypolicy',
+            'zope.app.testing',
+            'zope.app.zcmlfiles',
+            'zope.securitypolicy',
+            'zope.testbrowser',
+            ],
         ),
     install_requires = [
         'setuptools',
@@ -55,7 +67,6 @@
         'zope.configuration',
         'zope.traversing',
         ],
-    dependency_links = ['http://download.zope.org/distribution'],
     zip_safe = False,
 )
 

Modified: z3c.layer.minimal/trunk/src/z3c/layer/minimal/tests/ftesting.zcml
===================================================================
--- z3c.layer.minimal/trunk/src/z3c/layer/minimal/tests/ftesting.zcml	2007-12-29 00:38:41 UTC (rev 82516)
+++ z3c.layer.minimal/trunk/src/z3c/layer/minimal/tests/ftesting.zcml	2007-12-29 00:40:57 UTC (rev 82517)
@@ -9,9 +9,9 @@
   <include package="zope.app.securitypolicy" file="meta.zcml" />
   <include package="zope.app.authentication" />
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
-  <include package="zope.app.securitypolicy" />
+  <include package="zope.securitypolicy" />
 
   <role id="zope.Anonymous" title="Everybody"
         description="All users have this role implicitly" />



More information about the Checkins mailing list