[SCM] Debian packaging of libnet-server-perl branch, master, updated. debian/0.99-4-14-g46d10dd

intrigeri intrigeri at boum.org
Wed Jun 6 13:20:34 UTC 2012


The following commit has been merged in the master branch:
commit 7bb31d3b53390e768d189c2c5fa4fd72791b9cba
Author: intrigeri <intrigeri at boum.org>
Date:   Tue Jun 5 21:04:59 2012 +0200

    Drop 03_rt-cpan-65891-reap-children.patch (obsoleted by upstream changes).

diff --git a/debian/patches/03_rt-cpan-65891-reap-children.patch b/debian/patches/03_rt-cpan-65891-reap-children.patch
deleted file mode 100644
index 7eefa1d..0000000
--- a/debian/patches/03_rt-cpan-65891-reap-children.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-Description: Comments USER and ACCESS entries in rscsi file.
-Bug: http://rt.cpan.org/Public/Bug/Display.html?id=65891
-Forwarded: http://rt.cpan.org/Public/Bug/Display.html?id=65891
-Author: Carsten Wolff <carsten at wolffcarsten.de>
-Last-Update: 2011-09-20
-
---- a/lib/Net/Server/PreFork.pm
-+++ b/lib/Net/Server/PreFork.pm
-@@ -330,6 +330,15 @@
- #               },
-                );
- 
-+  ### reclaim process exit status from any terminated child process
-+  ### inherited from a previous incarnation whose SIGCHLD signal was
-+  ### ignored during a blind period between a restart and the moment
-+  ### when the SIGCHLD handler was established just now
-+  while ( defined(my $chld = waitpid(-1, WNOHANG)) ){
-+    last unless $chld > 0;
-+    $self->{reaped_children}->{$chld} = 1;
-+  }
-+
-   ### loop on reading info from the children
-   while( 1 ){
- 
---- a/lib/Net/Server/PreForkSimple.pm
-+++ b/lib/Net/Server/PreForkSimple.pm
-@@ -331,6 +331,15 @@
- #               },
-                );
- 
-+  ### reclaim process exit status from any terminated child process
-+  ### inherited from a previous incarnation whose SIGCHLD signal was
-+  ### ignored during a blind period between a restart and the moment
-+  ### when the SIGCHLD handler was established just now
-+  while ( defined(my $chld = waitpid(-1, WNOHANG)) ){
-+    last unless $chld > 0;
-+    $self->delete_child($chld);
-+  }
-+
-   ### loop forever
-   while( 1 ){
- 
diff --git a/debian/patches/series b/debian/patches/series
index 65eba58..784b93d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
-03_rt-cpan-65891-reap-children.patch
 04_fix-pod-error-in-http-manapage.patch
 05_ipv6-support.patch
 06_cidr-workaround.patch

-- 
Debian packaging of libnet-server-perl



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