r23378 - in /branches/upstream/libproc-processtable-perl/current: Changes META.yml ProcessTable.pm README os/Linux.h

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Fri Jul 18 15:16:10 UTC 2008


Author: ansgar-guest
Date: Fri Jul 18 15:16:05 2008
New Revision: 23378

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=23378
Log:
[svn-upgrade] Integrating new upstream version, libproc-processtable-perl (0.43)

Modified:
    branches/upstream/libproc-processtable-perl/current/Changes
    branches/upstream/libproc-processtable-perl/current/META.yml
    branches/upstream/libproc-processtable-perl/current/ProcessTable.pm
    branches/upstream/libproc-processtable-perl/current/README
    branches/upstream/libproc-processtable-perl/current/os/Linux.h

Modified: branches/upstream/libproc-processtable-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-processtable-perl/current/Changes?rev=23378&op=diff
==============================================================================
--- branches/upstream/libproc-processtable-perl/current/Changes (original)
+++ branches/upstream/libproc-processtable-perl/current/Changes Fri Jul 18 15:16:05 2008
@@ -267,4 +267,14 @@
 	<jloverso at mathworks.com>; patch to replace kinfo array and use
 	KINFO structure on darwin. Patch from Steve Linn
 	<steve at rhythm.com> for x86_64 linux. Shortened test code so it
-	only shows info for current process.
+	only shows info for current process.
+
+0.43	Thu Jul 17 20:59:23 MDT 2008
+	-Changed 'my $TTYDEVSFILE;' to 'our' to permit multiple
+	versions of perl (rt.cpan.org bug ID 37722); fixed up include
+	file order in os/Linux.h so module will build on OpenSuse 11
+	per request of Steve Linn <steve at rhythm.com>; fixed warning
+	under perl 5,10 (rt.cpan.org bug ID 36666); fixes for numerous
+	problems on darwin from  Tom Wyant <twyant3 at comcast.net>
+	(rt.cpan.org bug IDs 24331, 32761, and 33698); fix for ARG_MAX
+	dynamic configuration in os/Linux.h (rt.cpan.org bug ID 36283).

Modified: branches/upstream/libproc-processtable-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-processtable-perl/current/META.yml?rev=23378&op=diff
==============================================================================
--- branches/upstream/libproc-processtable-perl/current/META.yml (original)
+++ branches/upstream/libproc-processtable-perl/current/META.yml Fri Jul 18 15:16:05 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Proc-ProcessTable
-version:      0.42
+version:      0.43
 version_from: ProcessTable.pm
 installdirs:  site
 requires:

Modified: branches/upstream/libproc-processtable-perl/current/ProcessTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-processtable-perl/current/ProcessTable.pm?rev=23378&op=diff
==============================================================================
--- branches/upstream/libproc-processtable-perl/current/ProcessTable.pm (original)
+++ branches/upstream/libproc-processtable-perl/current/ProcessTable.pm Fri Jul 18 15:16:05 2008
@@ -1,6 +1,6 @@
 package Proc::ProcessTable;
 
-require 5.6.0;
+use 5.006;
 
 use strict;
 use Carp;
@@ -16,7 +16,7 @@
 @EXPORT = qw(
 	
 );
-$VERSION = '0.42';
+$VERSION = '0.43';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
@@ -46,7 +46,7 @@
 use File::Find;
 
 my %TTYDEVS;
-my $TTYDEVSFILE = "/tmp/TTYDEVS"; # Where we store the TTYDEVS hash
+our $TTYDEVSFILE = "/tmp/TTYDEVS"; # Where we store the TTYDEVS hash
 
 sub new 
 {

Modified: branches/upstream/libproc-processtable-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-processtable-perl/current/README?rev=23378&op=diff
==============================================================================
--- branches/upstream/libproc-processtable-perl/current/README (original)
+++ branches/upstream/libproc-processtable-perl/current/README Fri Jul 18 15:16:05 2008
@@ -1,9 +1,6 @@
-Proc::ProcessTable, version 0.41
+Proc::ProcessTable, version 0.43
 
-Please note that I've moved development of this package to
-sourceforge.net. Please address all comments/bugs/patches to:
-
-http://sourceforge.net/projects/proc-ptable/
+Please use rt.cpan.org to submit bugs and patches.
 
 STATUS
 ======
@@ -114,7 +111,7 @@
 			
 COPYRIGHT
 =========
-Copyright (c) 1998-2006 Daniel J. Urist. All rights reserved.
+Copyright (c) 1998-2008 Daniel J. Urist. All rights reserved.
 This package is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 

Modified: branches/upstream/libproc-processtable-perl/current/os/Linux.h
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-processtable-perl/current/os/Linux.h?rev=23378&op=diff
==============================================================================
--- branches/upstream/libproc-processtable-perl/current/os/Linux.h (original)
+++ branches/upstream/libproc-processtable-perl/current/os/Linux.h Fri Jul 18 15:16:05 2008
@@ -1,3 +1,4 @@
+#include <linux/limits.h>
 #include <fcntl.h>
 #include <asm/param.h>
 #include <stdlib.h>
@@ -11,8 +12,10 @@
 #include <sys/stat.h>
 #include <sys/vfs.h>
 #include <sys/types.h>
-#include <sys/param.h>
-#include <linux/limits.h>
+
+#ifndef ARG_MAX
+#define ARG_MAX sysconf(_SC_ARG_MAX)
+#endif
 
 /****************************************/
 /* Process state strings that we return */




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