[Zope-Checkins] SVN: zdaemon/trunk/ Updated release info

2007-01-11 Thread Jim Fulton
Log message for revision 71934:
  Updated release info

Changed:
  U   zdaemon/trunk/CHANGES.txt
  U   zdaemon/trunk/setup.py

-=-
Modified: zdaemon/trunk/CHANGES.txt
===
--- zdaemon/trunk/CHANGES.txt   2007-01-11 20:40:54 UTC (rev 71933)
+++ zdaemon/trunk/CHANGES.txt   2007-01-11 20:43:33 UTC (rev 71934)
@@ -1,21 +1,23 @@
 zdaemon Changelog
 *
 
-zdaemon 2.0a4, 2.0a5 (2007/01/10)
-=
+zdaemon 2.0a6 (2007/01/11)
+==
 
 Bugs Fixed
 --
 
-- The new (2.0) mechanism used by zdaemon to start the daemon manager
-  broke some applications that extended zdaemon.
+- When the user option was used, it only affected running the daemon.
 
-zdaemon 2.0a3 (2007/01/10)
-==
+zdaemon 2.0a3, 2.0a4, 2.0a5 (2007/01/10)
+
 
 Bugs Fixed
 --
 
+- The new (2.0) mechanism used by zdaemon to start the daemon manager
+  broke some applications that extended zdaemon.
+
 - Added extra checks to deal with programs that extend zdaemon
   and copy the schema and thus don't see updates to the ZConfig schema.
 

Modified: zdaemon/trunk/setup.py
===
--- zdaemon/trunk/setup.py  2007-01-11 20:40:54 UTC (rev 71933)
+++ zdaemon/trunk/setup.py  2007-01-11 20:43:33 UTC (rev 71934)
@@ -37,7 +37,7 @@
 name = zdaemon
 setup(
 name=name,
-version=2.0a5,
+version=2.0a6,
 url=http://www.python.org/pypi/zdaemon;,
 license=ZPL 2.1,
 description=

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: zdaemon/trunk/ Updated release info:

2007-01-10 Thread Jim Fulton
Log message for revision 71854:
  Updated release info:
  
  New Features:
  
  - Added support for setting environment variables in the configuration
file.  This is useful when zdaemon is used to run programs that need
environment variables set (e.g. LD_LIBRARY_PATH).
  
  - Added a command to rotate the transcript log.
  

Changed:
  U   zdaemon/trunk/CHANGES.txt
  U   zdaemon/trunk/README.txt
  U   zdaemon/trunk/setup.py
  U   zdaemon/trunk/src/zdaemon/README.txt
  U   zdaemon/trunk/src/zdaemon/component.xml
  U   zdaemon/trunk/src/zdaemon/schema.xml
  U   zdaemon/trunk/src/zdaemon/tests/tests.py
  U   zdaemon/trunk/src/zdaemon/zdctl.py
  U   zdaemon/trunk/src/zdaemon/zdrun.py

-=-
Modified: zdaemon/trunk/CHANGES.txt
===
--- zdaemon/trunk/CHANGES.txt   2007-01-10 10:16:55 UTC (rev 71853)
+++ zdaemon/trunk/CHANGES.txt   2007-01-10 11:36:01 UTC (rev 71854)
@@ -1,28 +1,18 @@
 zdaemon Changelog
 *
 
-To-Dos
-==
+zdaemon 2.0a2 (2007/01/08)
+==
 
-More docs:
+New Features
+
 
-- Document/demonstrate some important features, such as:
+- Added support for setting environment variables in the configuration
+  file.  This is useful when zdaemon is used to run programs that need
+  environment variables set (e.g. LD_LIBRARY_PATH).
 
-  - transcript log
+- Added a command to rotate the transcript log.
 
-  - working directory
-
-Features
-
-- environment variables
-
-- transcript log rotation
-
-Bugs 
-
-- help command
-
-
 zdaemon 2.0a1 (2006/12/21)
 ==
 
@@ -105,3 +95,16 @@
  - SVN tag:  svn://svn.zope.org/repos/main/zdaemon/tags/zdaemon-1.1
 
  - Tagged to make better 'svn:externals' linkage possible.
+
+To-Dos
+==
+
+More docs:
+
+- Document/demonstrate some important features, such as:
+
+  - working directory
+
+Bugs 
+
+- help command

Modified: zdaemon/trunk/README.txt
===
--- zdaemon/trunk/README.txt2007-01-10 10:16:55 UTC (rev 71853)
+++ zdaemon/trunk/README.txt2007-01-10 11:36:01 UTC (rev 71854)
@@ -1,11 +1,10 @@
-
-``zdaemon`` process controller for Unix-ased systems
-
+*
+``zdaemon`` process controller for Unix-based systems
+*
 
-Overview
-
+.. contents::
 
-'zdaemon' is a Python package which provides APIs for managing spplications
+'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

Modified: zdaemon/trunk/setup.py
===
--- zdaemon/trunk/setup.py  2007-01-10 10:16:55 UTC (rev 71853)
+++ zdaemon/trunk/setup.py  2007-01-10 11:36:01 UTC (rev 71854)
@@ -29,7 +29,6 @@
 entry_points=entry_points,
 include_package_data = True,
 install_requires=[ZConfig],
-tests_require=[zope.testing],
 )
 except ImportError:
 from distutils.core import setup
@@ -38,7 +37,7 @@
 name = zdaemon
 setup(
 name=name,
-version=2.0a1,
+version=2.0a2,
 url=http://www.python.org/pypi/zdaemon;,
 license=ZPL 2.1,
 description=
@@ -53,7 +52,7 @@
 'Detailed Documentation\n'
 '**\n'
 + '\n' +
-read('src', 'zdaemon', 'README.txt')
+read('src/zdaemon/README.txt')
 + '\n' +
 'Download\n'
 '**\n'
@@ -61,5 +60,13 @@
 
 packages=[zdaemon, zdaemon.tests],
 package_dir={: src},
+classifiers = [
+   'Development Status :: 3 - Alpha',
+   'Intended Audience :: Developers',
+   'Intended Audience :: System Administrators',
+   'License :: OSI Approved :: Zope Public License',
+   'Topic :: Utilities',
+   'Operating System :: POSIX',
+   ],
 
 **setuptools_options)

Modified: zdaemon/trunk/src/zdaemon/README.txt
===
--- zdaemon/trunk/src/zdaemon/README.txt2007-01-10 10:16:55 UTC (rev 
71853)
+++ zdaemon/trunk/src/zdaemon/README.txt2007-01-10 11:36:01 UTC (rev 
71854)
@@ -7,7 +7,7 @@
 
 Using zdaemon requires specifying a number of options, which can be
 given in a configuration file, or as command-line options.  It also
-accepts commands teling it what do do.  The commants are:
+accepts commands teling it what do do.  The commands are:
 
 start
 Start a process as a daemon
@@ -27,6 +27,10 @@
 kill signal
 Send a signal to the daemon process
 
+reopen_transcript
+Reopen the transcript 

[Zope-Checkins] SVN: zdaemon/trunk/ Updated release info.

2007-01-10 Thread Jim Fulton
Log message for revision 71892:
  Updated release info.
  

Changed:
  U   zdaemon/trunk/CHANGES.txt
  U   zdaemon/trunk/setup.py

-=-
Modified: zdaemon/trunk/CHANGES.txt
===
--- zdaemon/trunk/CHANGES.txt   2007-01-10 18:28:09 UTC (rev 71891)
+++ zdaemon/trunk/CHANGES.txt   2007-01-10 18:28:15 UTC (rev 71892)
@@ -1,8 +1,8 @@
 zdaemon Changelog
 *
 
-zdaemon 2.0a4 (2007/01/10)
-==
+zdaemon 2.0a4, 2.0a5 (2007/01/10)
+=
 
 Bugs Fixed
 --

Modified: zdaemon/trunk/setup.py
===
--- zdaemon/trunk/setup.py  2007-01-10 18:28:09 UTC (rev 71891)
+++ zdaemon/trunk/setup.py  2007-01-10 18:28:15 UTC (rev 71892)
@@ -37,7 +37,7 @@
 name = zdaemon
 setup(
 name=name,
-version=2.0a4,
+version=2.0a5,
 url=http://www.python.org/pypi/zdaemon;,
 license=ZPL 2.1,
 description=

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins