r65287 - in /trunk/libproc-daemon-perl: Changes Daemon.pm MANIFEST META.yml Makefile.PL README debian/changelog lib/ t/00modload.t t/01_loadmodule.t t/01filecreate.t t/02_testmodule.t

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Nov 26 11:58:13 UTC 2010


Author: eloy
Date: Fri Nov 26 11:58:03 2010
New Revision: 65287

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65287
Log:
new upstream version

Added:
    trunk/libproc-daemon-perl/META.yml
      - copied unchanged from r65286, branches/upstream/libproc-daemon-perl/current/META.yml
    trunk/libproc-daemon-perl/lib/
      - copied from r65286, branches/upstream/libproc-daemon-perl/current/lib/
    trunk/libproc-daemon-perl/t/01_loadmodule.t
      - copied unchanged from r65286, branches/upstream/libproc-daemon-perl/current/t/01_loadmodule.t
    trunk/libproc-daemon-perl/t/02_testmodule.t
      - copied unchanged from r65286, branches/upstream/libproc-daemon-perl/current/t/02_testmodule.t
Removed:
    trunk/libproc-daemon-perl/Daemon.pm
    trunk/libproc-daemon-perl/t/00modload.t
    trunk/libproc-daemon-perl/t/01filecreate.t
Modified:
    trunk/libproc-daemon-perl/Changes
    trunk/libproc-daemon-perl/MANIFEST
    trunk/libproc-daemon-perl/Makefile.PL
    trunk/libproc-daemon-perl/README
    trunk/libproc-daemon-perl/debian/changelog

Modified: trunk/libproc-daemon-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/Changes?rev=65287&op=diff
==============================================================================
--- trunk/libproc-daemon-perl/Changes (original)
+++ trunk/libproc-daemon-perl/Changes Fri Nov 26 11:58:03 2010
@@ -1,15 +1,33 @@
-Revision history for Perl extension Proc::Daemon.
-
-0.03  Thu Jun 19 2003
-	- Licensing is more explicit: Either GPL or Artistic.
-	- Updated author contact information.
-
-0.02  Sat Apr 17 1999
-	- init() function superceded by Init() function.
-	- All open files are closed during daemonization.
-	- A double fork is now down to avoid the potential of acquiring
-	  a controlling terminal.
-	- Added Fork() and OpenMax() functions.
-
-0.01  Thu Jan 27 1998
-	- initial bundled release
+Revision history for Perl module Proc::Daemon.
+
+0.05  Thu Okt 28 2010
+	- fixed a problem when using the old method of calling Proc::Daemon::Init
+      without object (reported by Alex Samorukov). The parent process didn't
+      exit.
+	- fixed a problem with Proc::ProcessTable 0.44: Under some conditions
+      'cmndline' retruns with space and/or other characters at the end.
+	- Update and small fixes in the documentation.
+
+0.04  Sun Okt 24 2010
+	- Added functions: new(), adjust_settings(), fix_filename(), Status(),
+	  Kill_Daemon(), get_pid() and get_pid_by_proc_table_attr().
+	- Init() now returns the PID of the daemon.
+	- Fork() now allways returns values like Perls built-in 'fork' does.
+	- Description was rewritten, extended and moved to the new Daemon.pod file.
+	- Additional test are done at installation.
+	- $SIG{'HUP'} was set to be valid only 'local' (bug report).
+	- POSIX::EAGAIN() was added to Fork() (bug report).
+
+0.03  Thu Jun 19 2003
+	- Licensing is more explicit: Either GPL or Artistic.
+	- Updated author contact information.
+
+0.02  Sat Apr 17 1999
+	- init() function superceded by Init() function.
+	- All open files are closed during daemonization.
+	- A double fork is now down to avoid the potential of acquiring
+	  a controlling terminal.
+	- Added Fork() and OpenMax() functions.
+
+0.01  Thu Jan 27 1998
+	- initial bundled release.

Modified: trunk/libproc-daemon-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/MANIFEST?rev=65287&op=diff
==============================================================================
--- trunk/libproc-daemon-perl/MANIFEST (original)
+++ trunk/libproc-daemon-perl/MANIFEST Fri Nov 26 11:58:03 2010
@@ -1,7 +1,9 @@
-Changes
-Daemon.pm
-MANIFEST
-Makefile.PL
-README
-t/00modload.t
-t/01filecreate.t
+Changes
+MANIFEST
+Makefile.PL
+README
+lib/Proc/Daemon.pm
+lib/Proc/Daemon.pod
+t/01_loadmodule.t
+t/02_testmodule.t
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libproc-daemon-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/Makefile.PL?rev=65287&op=diff
==============================================================================
--- trunk/libproc-daemon-perl/Makefile.PL (original)
+++ trunk/libproc-daemon-perl/Makefile.PL Fri Nov 26 11:58:03 2010
@@ -1,9 +1,13 @@
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
+
+require 5.008;
+
 WriteMakefile(
-    NAME	 => 'Proc::Daemon',
-    DISTNAME	 => 'Proc-Daemon',
-    VERSION_FROM => 'Daemon.pm', # finds $VERSION
-    dist	 => { COMPRESS => 'gzip', SUFFIX => 'gz'},
-);
+	NAME => 'Proc::Daemon',
+	AUTHOR => 'Earl Hood earl at earlhood.com, Detlef Pilzecker deti at cpan.org',
+	VERSION_FROM => 'lib/Proc/Daemon.pm',
+	PREREQ_PM => {
+		'POSIX' => 0,
+	},
+	LICENSE => 'perl',
+);

Modified: trunk/libproc-daemon-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/README?rev=65287&op=diff
==============================================================================
--- trunk/libproc-daemon-perl/README (original)
+++ trunk/libproc-daemon-perl/README Fri Nov 26 11:58:03 2010
@@ -1,48 +1,55 @@
-README for Proc::Daemon v0.03
-
----------------------------------------------------------------------------
-    Copyright (C) 1997-1999	Earl Hood, earl at earlhood.com
-        All rights reserved.
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of either:
-  
-    a) the GNU General Public License as published by the Free Software
-       Foundation; either version 1, or (at your option) any later
-       version, or
-  
-    b) the "Artistic License" which comes with Perl.
-
----------------------------------------------------------------------------
-SUMMARY
-
-Proc::Daemon provides the capability for a Perl program to run
-as a Unix daemon process.
-
----------------------------------------------------------------------------
-INSTALLATION
-
-You should be able to install the module(s) with the following:
-
-    perl Makefile.PL
-    make
-    make test
-    make install
-
-If you want to install in a specific directory, try:
-
-    perl Makefile.PL PREFIX=/tmp/myperl5
-    make
-    make test
-    make install
-
----------------------------------------------------------------------------
-DOCUMENTATION
-
-Documentation is in POD format and should automatically get installed
-with the module(s).
-
----------------------------------------------------------------------------
-Earl Hood, earl at earlhood.com
-<http://www.earlhood.com/>
-03/06/19 17:50:50
+README for Proc::Daemon
+
+---------------------------------------------------------------------------
+SUMMARY
+
+Proc::Daemon provides the capability for a Perl program to run
+as a Unix daemon process.
+
+---------------------------------------------------------------------------
+INSTALLATION
+
+This module can be installed on Perl 5.8.
+It was not tested on older versions but it might work.
+
+You should be able to install the module with the following:
+
+    perl Makefile.PL
+    make
+    make test
+    make install
+
+If you want to install in a specific directory, try:
+
+    perl Makefile.PL PREFIX=/tmp/myperl5
+    ...
+
+If you'd like to see the raw output of the tests, try:
+
+    ...
+    make test TEST_VERBOSE=1
+    ...
+
+---------------------------------------------------------------------------
+DOCUMENTATION
+
+Documentation is in the Daemon.pod file and should automatically get installed
+with the module.
+
+---------------------------------------------------------------------------
+COPYRIGHT (C) 1997-2010
+
+Earl Hood
+earl at earlhood.com
+http://www.earlhood.com/
+
+and
+
+Detlef Pilzecker
+deti at cpan.org
+http://www.secure-sip-server.net/
+
+All rights reserved.
+
+This module is free software. It may be used, redistributed and/or modified
+under the same terms as Perl itself.

Modified: trunk/libproc-daemon-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/changelog?rev=65287&op=diff
==============================================================================
--- trunk/libproc-daemon-perl/debian/changelog (original)
+++ trunk/libproc-daemon-perl/debian/changelog Fri Nov 26 11:58:03 2010
@@ -1,3 +1,9 @@
+libproc-daemon-perl (0.05-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyżaniak (eloy) <eloy at debian.org>  Fri, 26 Nov 2010 12:57:31 +0100
+
 libproc-daemon-perl (0.03-2.0) UNRELEASED; urgency=low
 
   * NOT YET RELEASED, don't upload before squeeze release




More information about the Pkg-perl-cvs-commits mailing list