[Checkins] SVN: zope.app.component/trunk/ Remove invalid zope.app.component.fields module, fix some dependencies

Dan Korostelev nadako at gmail.com
Sat Dec 6 11:37:28 EST 2008


Log message for revision 93725:
  Remove invalid zope.app.component.fields module, fix some dependencies

Changed:
  U   zope.app.component/trunk/CHANGES.txt
  U   zope.app.component/trunk/buildout.cfg
  U   zope.app.component/trunk/setup.py
  D   zope.app.component/trunk/src/zope/app/component/fields.py

-=-
Modified: zope.app.component/trunk/CHANGES.txt
===================================================================
--- zope.app.component/trunk/CHANGES.txt	2008-12-06 16:33:20 UTC (rev 93724)
+++ zope.app.component/trunk/CHANGES.txt	2008-12-06 16:37:27 UTC (rev 93725)
@@ -5,7 +5,12 @@
 3.5.1 (Unreleased)
 ------------------
 
-- ...
+- Remove zope.app.component.fields module that
+  was pointing to the removed back35's LayerField.
+- Remove "back35" extras_require as it doesn't make
+  any sense now.
+- Remove zope.modulealias test dependency as it is
+  not used anywhere.
 
 3.5.0 (2008-10-13)
 ------------------

Modified: zope.app.component/trunk/buildout.cfg
===================================================================
--- zope.app.component/trunk/buildout.cfg	2008-12-06 16:33:20 UTC (rev 93724)
+++ zope.app.component/trunk/buildout.cfg	2008-12-06 16:37:27 UTC (rev 93725)
@@ -4,5 +4,5 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.app.component [test, back35]
+eggs = zope.app.component [test]
 

Modified: zope.app.component/trunk/setup.py
===================================================================
--- zope.app.component/trunk/setup.py	2008-12-06 16:33:20 UTC (rev 93724)
+++ zope.app.component/trunk/setup.py	2008-12-06 16:37:27 UTC (rev 93725)
@@ -58,11 +58,9 @@
           test=['zope.app.testing',
                 'zope.app.securitypolicy',
                 'zope.app.zcmlfiles',
-                'zope.modulealias',
                 'zope.app.schema',
                 'zope.testbrowser',
-                ],
-          back35=['zope.app.layers']),
+                ]),
       install_requires=[
           'setuptools',
           'zope.annotation',

Deleted: zope.app.component/trunk/src/zope/app/component/fields.py
===================================================================
--- zope.app.component/trunk/src/zope/app/component/fields.py	2008-12-06 16:33:20 UTC (rev 93724)
+++ zope.app.component/trunk/src/zope/app/component/fields.py	2008-12-06 16:37:27 UTC (rev 93725)
@@ -1,28 +0,0 @@
-#############################################################################
-#
-# Copyright (c) 2001, 2002 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.
-#
-##############################################################################
-"""Component-related fields
-
-This module will be gone in Zope 3.5.
-
-$Id$
-"""
-__docformat__ = 'restructuredtext'
-
-# BBB 2006/02/18, to be removed after 12 months
-import zope.deferredimport
-zope.deferredimport.deprecated(
-    "It will no longer be available in Zope 3.5.  Layers are just simple "
-    "interfaces now; use the GlobalInterface field instead.",
-    LayerField = 'zope.app.component.back35:LayerField',
-    )



More information about the Checkins mailing list