[Checkins] SVN: zc.z3monitor/trunk/ prepare for 0.4.1

Gary Poster gary at zope.com
Mon Mar 31 21:51:05 EDT 2008


Log message for revision 85049:
  prepare for 0.4.1

Changed:
  A   zc.z3monitor/trunk/CHANGES.txt
  A   zc.z3monitor/trunk/README.txt
  U   zc.z3monitor/trunk/buildout.cfg
  U   zc.z3monitor/trunk/setup.py
  U   zc.z3monitor/trunk/src/zc/z3monitor/README.txt

-=-
Added: zc.z3monitor/trunk/CHANGES.txt
===================================================================
--- zc.z3monitor/trunk/CHANGES.txt	                        (rev 0)
+++ zc.z3monitor/trunk/CHANGES.txt	2008-04-01 01:51:04 UTC (rev 85049)
@@ -0,0 +1,30 @@
+0.4.1 (2008-3-31)
+-----------------
+
+Initial release to PyPI
+
+* added zope.app.appsetup to dependencies, based on failing tests
+
+* added comment that monitor examples currently fail on systems without procfs
+
+* tweaked setup.py for PyPI release
+
+0.4 (not publically released)
+-----------------------------
+
+changes not documented
+
+0.3 (not publically released)
+-----------------------------
+
+changes not documented
+
+0.2 (released to download.zope.org)
+-----------------------------------
+
+changes not documented
+
+0.1 (released to download.zope.org)
+-----------------------------------
+
+changes not documented


Property changes on: zc.z3monitor/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zc.z3monitor/trunk/README.txt
===================================================================
--- zc.z3monitor/trunk/README.txt	                        (rev 0)
+++ zc.z3monitor/trunk/README.txt	2008-04-01 01:51:04 UTC (rev 85049)
@@ -0,0 +1 @@
+A network-accessible command-line interface to monitor a Zope 3 process.


Property changes on: zc.z3monitor/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.z3monitor/trunk/buildout.cfg
===================================================================
--- zc.z3monitor/trunk/buildout.cfg	2008-03-31 22:40:03 UTC (rev 85048)
+++ zc.z3monitor/trunk/buildout.cfg	2008-04-01 01:51:04 UTC (rev 85049)
@@ -1,6 +1,6 @@
 [buildout]
 develop = .
-parts = instance test zodb storage
+parts = instance test zodb storage interpreter
 
 [zodb]
 recipe = zc.recipe.egg
@@ -109,3 +109,8 @@
 [test]
 recipe = zc.recipe.testrunner
 eggs = zc.z3monitor
+
+[interpreter]
+recipe = zc.recipe.egg
+eggs = zc.z3monitor
+interpreter = py

Modified: zc.z3monitor/trunk/setup.py
===================================================================
--- zc.z3monitor/trunk/setup.py	2008-03-31 22:40:03 UTC (rev 85048)
+++ zc.z3monitor/trunk/setup.py	2008-04-01 01:51:04 UTC (rev 85049)
@@ -1,21 +1,27 @@
 from setuptools import setup, find_packages
 
 name = 'zc.z3monitor'
+
+long_description = (open('src/zc/z3monitor/README.txt').read() +
+                    "\n\nCHANGES\n=======\n\n" +
+                    open('CHANGES.txt').read())
+
 setup(
     name = name,
-    version = '0.5.0dev',
+    version = '0.4.1',
     author = 'Jim Fulton',
     author_email = 'jim at zope.com',
-    description = 'Zope 3 Monitor',
     license = 'ZPL 2.1',
     keywords = 'zope3',
+    description=open('README.txt').read(),
+    long_description=long_description,
 
     packages = find_packages('src'),
     namespace_packages = ['zc'],
     package_dir = {'': 'src'},
     install_requires = [
         'setuptools', 'zc.ngi', 'ZODB3', 'zope.component',
-        'zope.publisher',
+        'zope.publisher', 'zope.app.appsetup',
         ],
     include_package_data = True,
     zip_safe = False,

Modified: zc.z3monitor/trunk/src/zc/z3monitor/README.txt
===================================================================
--- zc.z3monitor/trunk/src/zc/z3monitor/README.txt	2008-03-31 22:40:03 UTC (rev 85048)
+++ zc.z3monitor/trunk/src/zc/z3monitor/README.txt	2008-04-01 01:51:04 UTC (rev 85049)
@@ -140,6 +140,10 @@
     VmRSS:	   28764 kB 
     -> CLOSE
 
+Note that, as of this writing, the VmSize and VmRSS lines will only be present
+on a system with procfs.  This generally includes many varieties of Linux,
+and excludes OS X and Windows.
+
 Let's create a couple of connections and then call z3monitor again
 with a value of 0:
 



More information about the Checkins mailing list