[Zodb-checkins] SVN: zdaemon/trunk/ - added coverage analysis tools to buildout

Michael Howitz mh at gocept.com
Mon Apr 20 03:35:49 EDT 2009


Log message for revision 99308:
  - added coverage analysis tools to buildout
  - added missing changlog entry for last checkin
  - fixed author's email address
  - show description what zdaemon is above table of contents
  - fixed typo in short description
  

Changed:
  U   zdaemon/trunk/CHANGES.txt
  U   zdaemon/trunk/README.txt
  U   zdaemon/trunk/buildout.cfg
  U   zdaemon/trunk/setup.py

-=-
Modified: zdaemon/trunk/CHANGES.txt
===================================================================
--- zdaemon/trunk/CHANGES.txt	2009-04-20 07:33:20 UTC (rev 99307)
+++ zdaemon/trunk/CHANGES.txt	2009-04-20 07:35:49 UTC (rev 99308)
@@ -6,8 +6,14 @@
 2.0.4 (unreleased)
 ==================
 
+- Version 2.0.3 broke support for relative paths to the socket (``-s``
+  option and ``socket-name`` parameter), now relative paths work again
+  as in version 2.0.2.
+
 - Fixed change log format, made table of contents nicer.
 
+- Fixed author's email address.
+
 - Removed zpkg stuff.
 
 

Modified: zdaemon/trunk/README.txt
===================================================================
--- zdaemon/trunk/README.txt	2009-04-20 07:33:20 UTC (rev 99307)
+++ zdaemon/trunk/README.txt	2009-04-20 07:35:49 UTC (rev 99308)
@@ -2,10 +2,10 @@
 ``zdaemon`` process controller for Unix-based systems
 *****************************************************
 
-.. contents::
-
-'zdaemon' is a Python package which provides APIs for managing applications
+`zdaemon` is a Python package which provides APIs for managing applications
 run as daemons.  Its principal use to date has been to manage the application
 server and storage server daemons for Zope / ZEO, although it is not limited
 to running Python-based applications (for instance, it has been used to
 manage the 'spread' daemon).
+
+.. contents::

Modified: zdaemon/trunk/buildout.cfg
===================================================================
--- zdaemon/trunk/buildout.cfg	2009-04-20 07:33:20 UTC (rev 99307)
+++ zdaemon/trunk/buildout.cfg	2009-04-20 07:35:49 UTC (rev 99308)
@@ -1,12 +1,23 @@
 [buildout]
 develop = .
-parts = test scripts
+parts = test scripts coverage-test coverage-report
 find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zdaemon
 
+[coverage-test]
+recipe = zc.recipe.testrunner
+eggs = ${test:eggs}
+defaults = ['--coverage', '../../coverage']
+
+[coverage-report]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+scripts = coverage=coverage-report
+arguments = ('coverage', 'coverage/report')
+
 [scripts]
 recipe = zc.recipe.egg
 eggs = zdaemon

Modified: zdaemon/trunk/setup.py
===================================================================
--- zdaemon/trunk/setup.py	2009-04-20 07:33:20 UTC (rev 99307)
+++ zdaemon/trunk/setup.py	2009-04-20 07:35:49 UTC (rev 99308)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -37,13 +37,13 @@
 name = "zdaemon"
 setup(
     name=name,
-    version="2.0.3",
+    version="2.0.4dev",
     url="http://www.python.org/pypi/zdaemon",
     license="ZPL 2.1",
     description=
-    "Daemon process control library and tools for Unix-bases systems",
+    "Daemon process control library and tools for Unix-based systems",
     author="Zope Corporation and Contributors",
-    author_email="zope3-dev at zope.org",
+    author_email="zope-dev at zope.org",
     long_description=(
         read('README.txt')
         + '\n' +
@@ -55,7 +55,6 @@
         'Download\n' +
         '========\n'
         ),
-
     packages=["zdaemon", "zdaemon.tests"],
     package_dir={"": "src"},
     classifiers = [



More information about the Zodb-checkins mailing list