Hello community, here is the log from the commit of package python-twisted-runner checked in at Thu Oct 26 21:07:38 CEST 2006. -------- --- python-twisted-runner/python-twisted-runner.changes 2006-02-28 16:46:03.000000000 +0100 +++ /mounts/work_src_done/STABLE/python-twisted-runner/python-twisted-runner.changes 2006-10-26 18:44:31.000000000 +0200 @@ -1,0 +2,7 @@ +Thu Oct 26 18:43:58 CEST 2006 - jmatejek@suse.cz + +- update to 0.2.0 + - upgrade to Twisted 2.4 install system + - fixed a bug that broke inetdtap.RPCServer + +------------------------------------------------------------------- Old: ---- TwistedRunner-0.1.0.tar.bz2 New: ---- TwistedRunner-0.2.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-twisted-runner.spec ++++++ --- /var/tmp/diff_new_pack.XkAeaZ/_old 2006-10-26 21:07:35.000000000 +0200 +++ /var/tmp/diff_new_pack.XkAeaZ/_new 2006-10-26 21:07:35.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package python-twisted-runner (Version 0.1.0) +# spec file for package python-twisted-runner (Version 0.2.0) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -13,13 +13,13 @@ Name: python-twisted-runner BuildRequires: python-devel python-twisted Summary: Twisted Runner -Version: 0.1.0 -Release: 6 +Version: 0.2.0 +Release: 1 %define tarname TwistedRunner Source: %{tarname}-%{version}.tar.bz2 License: X11/MIT Group: Development/Languages/Python -URL: http://twistedmatrix.com/projects/runner/ +URL: http://twistedmatrix.com/trac/wiki/TwistedRunner BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires: python-twisted %{py_requires} @@ -51,6 +51,10 @@ %doc LICENSE README NEWS %changelog -n python-twisted-runner +* Thu Oct 26 2006 - jmatejek@suse.cz +- update to 0.2.0 + - upgrade to Twisted 2.4 install system + - fixed a bug that broke inetdtap.RPCServer * Tue Feb 28 2006 - jmatejek@suse.cz - updated to reflect python changes due to #149809 * Wed Jan 25 2006 - mls@suse.de ++++++ TwistedRunner-0.1.0.tar.bz2 -> TwistedRunner-0.2.0.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/LICENSE new/TwistedRunner-0.2.0/LICENSE --- old/TwistedRunner-0.1.0/LICENSE 2005-02-12 00:28:49.000000000 +0100 +++ new/TwistedRunner-0.2.0/LICENSE 2006-04-18 04:43:54.000000000 +0200 @@ -1,11 +1,13 @@ - -Copyright (c) 2004 +Copyright (c) 2001-2006 Allen Short Andrew Bennetts +Apple Computer, Inc. Benjamin Bruheim Bob Ippolito +Canonical Limited Christopher Armstrong Donovan Preston +Eric Mangold Itamar Shtull-Trauring James Knight Jason A. Mobarak @@ -20,11 +22,10 @@ Moshe Zadka Paul Swartz Pavel Pergamenshchik +Ralph Meijer Sean Riley Travis B. Hartwell -except as noted at the end of this file. - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -43,7 +44,3 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -Copyright Exceptions: - diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/NEWS new/TwistedRunner-0.2.0/NEWS --- old/TwistedRunner-0.1.0/NEWS 2005-03-12 07:56:04.000000000 +0100 +++ new/TwistedRunner-0.2.0/NEWS 2006-05-24 16:56:34.000000000 +0200 @@ -1,2 +1,12 @@ -0.1.0: +0.2.0 (2006-05-24) +================== + +Fixes +----- + - Fix a bug that broke inetdtap.RPCServer. + - Misc: #1142 + + +0.1.0 +===== - Pass *blocking* sockets to subprocesses run by inetd diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/README new/TwistedRunner-0.2.0/README --- old/TwistedRunner-0.1.0/README 2005-03-22 12:14:01.000000000 +0100 +++ new/TwistedRunner-0.2.0/README 2006-05-24 16:56:34.000000000 +0200 @@ -1,4 +1,2 @@ -Twisted Runner 0.1.0 - -Twisted Runner was recently split out of Twisted. +Twisted Runner 0.2.0 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/setup.py new/TwistedRunner-0.2.0/setup.py --- old/TwistedRunner-0.1.0/setup.py 2005-03-22 12:14:01.000000000 +0100 +++ new/TwistedRunner-0.2.0/setup.py 2006-05-13 21:26:09.000000000 +0200 @@ -1,8 +1,12 @@ -import sys from distutils.core import Extension -from twisted.python import dist +try: + from twisted.python import dist +except ImportError: + raise SystemExit("twisted.python.dist module not found. Make sure you " + "have installed the Twisted core package before " + "attempting to install any other Twisted projects.") def detectExtensions(builder): if builder._check_header("rpc/rpc.h"): @@ -19,13 +23,12 @@ twisted_subproject="runner", # metadata name="Twisted Runner", - version="0.1.0", description="Twisted Runner is a process management library and inetd replacement.", author="Twisted Matrix Laboratories", author_email="twisted-python@twistedmatrix.com", maintainer="Andrew Bennetts", maintainer_email="spiv@twistedmatrix.com", - url="http://twistedmatrix.com/projects/runner/", + url="http://twistedmatrix.com/trac/wiki/TwistedRunner", license="MIT", long_description="""\ Twisted Runner contains code useful for persistent process management diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/twisted/runner/__init__.py new/TwistedRunner-0.2.0/twisted/runner/__init__.py --- old/TwistedRunner-0.1.0/twisted/runner/__init__.py 2005-03-22 12:14:01.000000000 +0100 +++ new/TwistedRunner-0.2.0/twisted/runner/__init__.py 2006-05-25 03:08:06.000000000 +0200 @@ -12,4 +12,5 @@ procmon:monitor and restart processes """ -__version__ = '0.1.0' +from twisted.runner._version import version +__version__ = version.short() diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/twisted/runner/_version.py new/TwistedRunner-0.2.0/twisted/runner/_version.py --- old/TwistedRunner-0.1.0/twisted/runner/_version.py 1970-01-01 01:00:00.000000000 +0100 +++ new/TwistedRunner-0.2.0/twisted/runner/_version.py 2006-05-24 16:56:34.000000000 +0200 @@ -0,0 +1,3 @@ +# This is an auto-generated file. Use admin/change-versions to update. +from twisted.python import versions +version = versions.Version(__name__[:__name__.rfind('.')], 0, 2, 0) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/twisted/runner/inetd.py new/TwistedRunner-0.2.0/twisted/runner/inetd.py --- old/TwistedRunner-0.1.0/twisted/runner/inetd.py 2004-12-08 14:58:54.000000000 +0100 +++ new/TwistedRunner-0.2.0/twisted/runner/inetd.py 2005-08-21 15:31:20.000000000 +0200 @@ -7,7 +7,7 @@ Stability: semi-stable -Maintainer: U{Andrew Bennetts<spiv@twistedmatrix.com>} +Maintainer: U{Andrew Bennetts<mailto:spiv@twistedmatrix.com>} Future Plans: Bugfixes. Specifically for UDP and Sun-RPC, which don't work correctly yet. diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/TwistedRunner-0.1.0/twisted/runner/inetdtap.py new/TwistedRunner-0.2.0/twisted/runner/inetdtap.py --- old/TwistedRunner-0.1.0/twisted/runner/inetdtap.py 2005-03-22 08:24:47.000000000 +0100 +++ new/TwistedRunner-0.2.0/twisted/runner/inetdtap.py 2005-11-10 04:18:15.000000000 +0100 @@ -7,12 +7,13 @@ Stability: semi-stable -Maintainer: U{Andrew Bennetts<spiv@twistedmatrix.com>} +Maintainer: U{Andrew Bennetts<mailto:spiv@twistedmatrix.com>} Future Plans: more configurability. """ -import pwd, grp, socket +import os, pwd, grp, socket + from twisted.runner import inetd, inetdconf from twisted.python import log, usage from twisted.internet.protocol import ServerFactory ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de