[Zope-CMF] CMF Tests: 9 OK

2008-04-20 Thread CMF Tests Summarizer
Summary of messages to the cmf-tests list.
Period Sat Apr 19 11:00:00 2008 UTC to Sun Apr 20 11:00:00 2008 UTC.
There were 9 messages: 9 from CMF Tests.


Tests passed OK
---

Subject: OK : CMF-1.6 Zope-2.8 Python-2.3.6 : Linux
From: CMF Tests
Date: Sat Apr 19 21:31:53 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008552.html

Subject: OK : CMF-1.6 Zope-2.9 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:33:23 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008553.html

Subject: OK : CMF-2.0 Zope-2.9 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:34:53 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008554.html

Subject: OK : CMF-2.0 Zope-2.10 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:36:23 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008555.html

Subject: OK : CMF-2.1 Zope-2.10 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:37:53 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008556.html

Subject: OK : CMF-2.1 Zope-2.11 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:39:23 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008557.html

Subject: OK : CMF-trunk Zope-2.10 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:40:53 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008558.html

Subject: OK : CMF-trunk Zope-2.11 Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:42:23 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008559.html

Subject: OK : CMF-trunk Zope-trunk Python-2.4.4 : Linux
From: CMF Tests
Date: Sat Apr 19 21:43:54 EDT 2008
URL: http://mail.zope.org/pipermail/cmf-tests/2008-April/008560.html

___
Zope-CMF maillist  -  Zope-CMF@lists.zope.org
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


[Zope-CMF] [dev] GenericSetup and CMF dependencies

2008-04-20 Thread yuppie

Hi!


Each Product has two lists of dependencies: One in DEPENDENCIES.txt and 
one in setup.py. They are not in sync.


The setup.py files contain only 'setuptools' and 'five.localsitemanager' 
dependencies:


Products.GenericSetup/setup.py:

  install_requires=[
  setuptools,
  five.localsitemanager = 0.2,
#  'Zope = 2.10',
  ],

Products.CMFCore/setup.py:

  install_requires=[
  'setuptools',
  'five.localsitemanager=0.3',
  ],

all other setup.py files:

  install_requires=[
  'setuptools',
  ],

Until recently, the Products themselves didn't use setuptools. Revision 
85287 (http://svn.zope.org/?rev=85287view=rev) changed that. It is no 
longer possible to run CMF without setuptools installed.


Was that intended when setuptools was added to install_requires? We 
always tried hard to keep CMF dependencies to a minimum. Will we only 
support egg releases for CMF 2.2 and later, making setuptools required 
anyway?


I'm just asking. If there are good reasons, I'm fine with adding the 
setuptools dependency.



As soon as we have a decision, the relevant files should be updated. Can 
we get rid of the DEPENDENCIES.txt files and specify *all* dependencies 
in the setup.py files?



Any feedback is welcome.

Cheers,

Yuppie

___
Zope-CMF maillist  -  Zope-CMF@lists.zope.org
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests