[Zope-Checkins] SVN: Zope/trunk/ Factored out PythonScripts

Hanno Schlichting hannosch at hannosch.eu
Sat Jul 10 09:29:53 EDT 2010


Log message for revision 114519:
  Factored out PythonScripts
  

Changed:
  U   Zope/trunk/buildout.cfg
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/setup.py
  U   Zope/trunk/sources.cfg
  D   Zope/trunk/src/Products/PythonScripts/
  U   Zope/trunk/versions.cfg

-=-
Modified: Zope/trunk/buildout.cfg
===================================================================
--- Zope/trunk/buildout.cfg	2010-07-10 13:25:27 UTC (rev 114518)
+++ Zope/trunk/buildout.cfg	2010-07-10 13:29:52 UTC (rev 114519)
@@ -50,6 +50,7 @@
     MultiMapping
     Persistence
     Products.ExternalMethod
+    Products.PythonScripts
     Products.ZCTextIndex
     Record
     RestrictedPython

Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst	2010-07-10 13:25:27 UTC (rev 114518)
+++ Zope/trunk/doc/CHANGES.rst	2010-07-10 13:29:52 UTC (rev 114519)
@@ -25,8 +25,10 @@
 - Avoid using the ``Products.PythonScripts.standard`` module inside the
   database manager ZMI.
 
-- Factored out the `Products.MIMETools` and `Products.ExternalMethod` packages
-  into their own distributions.
+- Factored out the `Products.MIMETools`, `Products.ExternalMethod` and
+  `Products.PythonScripts` packages into their own distributions. They will
+  no longer be included by default in Zope 2.14 but live on as independent
+  add-ons.
 
 - Factored out the `Products.ZSQLMethods` into its own distribution. The
   distribution also includes the `Shared.DC.ZRDB` code. The Zope2 distribution

Modified: Zope/trunk/setup.py
===================================================================
--- Zope/trunk/setup.py	2010-07-10 13:25:27 UTC (rev 114518)
+++ Zope/trunk/setup.py	2010-07-10 13:29:52 UTC (rev 114519)
@@ -47,8 +47,6 @@
       'Missing',
       'MultiMapping',
       'Persistence',
-      'Products.ExternalMethod',
-      'Products.MIMETools',
       'Products.ZCTextIndex',
       'Record',
       'RestrictedPython',
@@ -99,6 +97,10 @@
       'zope.testing',
       'zope.traversing',
       'zope.viewlet',
+      # BBB optional dependencies to be removed in Zope 2.14
+      'Products.ExternalMethod',
+      'Products.MIMETools',
+      'Products.PythonScripts',
     ],
 
     include_package_data=True,

Modified: Zope/trunk/sources.cfg
===================================================================
--- Zope/trunk/sources.cfg	2010-07-10 13:25:27 UTC (rev 114518)
+++ Zope/trunk/sources.cfg	2010-07-10 13:29:52 UTC (rev 114519)
@@ -9,7 +9,9 @@
 MultiMapping = svn svn://svn.zope.org/repos/main/MultiMapping/trunk
 nt_svcutils = svn svn://svn.zope.org/repos/main/nt_svcutils/trunk
 Persistence = svn svn://svn.zope.org/repos/main/Persistence/trunk
+Products.ExternalMethod = svn svn://svn.zope.org/repos/main/Products.ExternalMethod/trunk
 Products.MIMETools = svn svn://svn.zope.org/repos/main/Products.MIMETools/trunk
+Products.PythonScripts = svn svn://svn.zope.org/repos/main/Products.PythonScripts/trunk
 Products.ZCTextIndex = svn svn://svn.zope.org/repos/main/Products.ZCTextIndex/trunk
 Record = svn svn://svn.zope.org/repos/main/Record/trunk
 tempstorage = svn svn://svn.zope.org/repos/main/tempstorage/trunk

Modified: Zope/trunk/versions.cfg
===================================================================
--- Zope/trunk/versions.cfg	2010-07-10 13:25:27 UTC (rev 114518)
+++ Zope/trunk/versions.cfg	2010-07-10 13:29:52 UTC (rev 114519)
@@ -17,6 +17,7 @@
 Persistence = 2.13.2
 Products.ExternalMethod = 2.13.0
 Products.MIMETools = 2.13.0
+Products.PythonScripts = 2.13.0
 Products.ZCTextIndex = 2.13.0
 Record = 2.13.0
 tempstorage = 2.11.3



More information about the Zope-Checkins mailing list