r41292 - in /branches/upstream/libfcgi-procmanager-perl/current: META.yml ProcManager.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Aug 4 01:32:55 UTC 2009


Author: jawnsy-guest
Date: Tue Aug  4 01:32:49 2009
New Revision: 41292

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41292
Log:
[svn-upgrade] Integrating new upstream version, libfcgi-procmanager-perl (0.19)

Modified:
    branches/upstream/libfcgi-procmanager-perl/current/META.yml
    branches/upstream/libfcgi-procmanager-perl/current/ProcManager.pm

Modified: branches/upstream/libfcgi-procmanager-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-procmanager-perl/current/META.yml?rev=41292&op=diff
==============================================================================
--- branches/upstream/libfcgi-procmanager-perl/current/META.yml (original)
+++ branches/upstream/libfcgi-procmanager-perl/current/META.yml Tue Aug  4 01:32:49 2009
@@ -1,10 +1,21 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         FCGI-ProcManager
-version:      0.18
-version_from: ProcManager.pm
-installdirs:  site
-requires:
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30
+--- #YAML:1.0
+name:               FCGI-ProcManager
+version:            0.19
+abstract:           A perl-based FastCGI process manager
+author:
+    - James E Jurach (muaddib at erf.net)
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:  {}
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libfcgi-procmanager-perl/current/ProcManager.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-procmanager-perl/current/ProcManager.pm?rev=41292&op=diff
==============================================================================
--- branches/upstream/libfcgi-procmanager-perl/current/ProcManager.pm (original)
+++ branches/upstream/libfcgi-procmanager-perl/current/ProcManager.pm Tue Aug  4 01:32:49 2009
@@ -13,7 +13,7 @@
 
 use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS $Q $SIG_CODEREF);
 BEGIN {
-  $VERSION = '0.18'; 
+  $VERSION = '0.19'; 
   @ISA = qw(Exporter);
   @EXPORT_OK = qw(pm_manage pm_die pm_wait
 		  pm_write_pid_file pm_remove_pid_file
@@ -139,6 +139,7 @@
  role         => manager
  start_delay  => 0
  die_timeout  => 60
+ pm_title => 'perl-fcgi-pm'
 
 =cut
 
@@ -150,6 +151,7 @@
 	      role => "manager",
 	      start_delay => 0,
 	      die_timeout => 60,
+        pm_title => 'perl-fcgi-pm',
 	      %$init
 	     };
   bless $this, ref($proto)||$proto;
@@ -276,7 +278,7 @@
   }
 
   # change the name of this process as it appears in ps(1) output.
-  $this->pm_change_process_name("perl-fcgi-pm");
+  $this->pm_change_process_name($this->pm_parameter('pm_title'));
 
   $this->pm_write_pid_file();
 }




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