r23380 - in /trunk/libproc-processtable-perl: Changes META.yml ProcessTable.pm README debian/changelog debian/compat debian/control debian/copyright debian/docs debian/libproc-processtable-perl.docs debian/rules os/Linux.h

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


Author: ansgar-guest
Date: Fri Jul 18 16:04:53 2008
New Revision: 23380

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=23380
Log:
* New upstream release
* Update copyright years in debian/copyright
* Regenerate debian/rules for debhelper 7
  + Update debian/compat and debian/control accordingly
* Bump Standards Version to 3.8.0 (no changes needed)
* Add myself to Uploaders

Added:
    trunk/libproc-processtable-perl/debian/libproc-processtable-perl.docs
Removed:
    trunk/libproc-processtable-perl/debian/docs
Modified:
    trunk/libproc-processtable-perl/Changes
    trunk/libproc-processtable-perl/META.yml
    trunk/libproc-processtable-perl/ProcessTable.pm
    trunk/libproc-processtable-perl/README
    trunk/libproc-processtable-perl/debian/changelog
    trunk/libproc-processtable-perl/debian/compat
    trunk/libproc-processtable-perl/debian/control
    trunk/libproc-processtable-perl/debian/copyright
    trunk/libproc-processtable-perl/debian/rules
    trunk/libproc-processtable-perl/os/Linux.h

Modified: trunk/libproc-processtable-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/Changes?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/Changes (original)
+++ trunk/libproc-processtable-perl/Changes Fri Jul 18 16:04:53 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: trunk/libproc-processtable-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/META.yml?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/META.yml (original)
+++ trunk/libproc-processtable-perl/META.yml Fri Jul 18 16:04:53 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: trunk/libproc-processtable-perl/ProcessTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/ProcessTable.pm?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/ProcessTable.pm (original)
+++ trunk/libproc-processtable-perl/ProcessTable.pm Fri Jul 18 16:04:53 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: trunk/libproc-processtable-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/README?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/README (original)
+++ trunk/libproc-processtable-perl/README Fri Jul 18 16:04:53 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: trunk/libproc-processtable-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/changelog?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/debian/changelog (original)
+++ trunk/libproc-processtable-perl/debian/changelog Fri Jul 18 16:04:53 2008
@@ -1,3 +1,14 @@
+libproc-processtable-perl (0.43-1) unstable; urgency=low
+
+  * New upstream release
+  * Update copyright years in debian/copyright
+  * Regenerate debian/rules for debhelper 7
+    + Update debian/compat and debian/control accordingly
+  * Bump Standards Version to 3.8.0 (no changes needed)
+  * Add myself to Uploaders
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Fri, 18 Jul 2008 18:02:53 +0200
+
 libproc-processtable-perl (0.42-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libproc-processtable-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/compat?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/debian/compat (original)
+++ trunk/libproc-processtable-perl/debian/compat Fri Jul 18 16:04:53 2008
@@ -1,1 +1,1 @@
-6
+7

Modified: trunk/libproc-processtable-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/control?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/debian/control (original)
+++ trunk/libproc-processtable-perl/debian/control Fri Jul 18 16:04:53 2008
@@ -4,8 +4,9 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>,
  gregor herrmann <gregor+debian at comodo.priv.at>,
- Damyan Ivanov <dmn at debian.org>
-Build-Depends: debhelper (>= 6), perl (>= 5.6.0-16)
+ Damyan Ivanov <dmn at debian.org>,
+ Ansgar Burchardt <ansgar at 43-1.org>
+Build-Depends: debhelper (>= 7), perl (>= 5.6.0-16)
 Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/Proc-ProcessTable/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libproc-processtable-perl/

Modified: trunk/libproc-processtable-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/copyright?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/debian/copyright (original)
+++ trunk/libproc-processtable-perl/debian/copyright Fri Jul 18 16:04:53 2008
@@ -9,7 +9,7 @@
 
 The Proc::ProcessTable copright is as follows:
 
-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.
 

Added: trunk/libproc-processtable-perl/debian/libproc-processtable-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/libproc-processtable-perl.docs?rev=23380&op=file
==============================================================================
--- trunk/libproc-processtable-perl/debian/libproc-processtable-perl.docs (added)
+++ trunk/libproc-processtable-perl/debian/libproc-processtable-perl.docs Fri Jul 18 16:04:53 2008
@@ -1,0 +1,4 @@
+README
+README.linux
+PORTING
+TODO

Modified: trunk/libproc-processtable-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/debian/rules?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/debian/rules (original)
+++ trunk/libproc-processtable-perl/debian/rules Fri Jul 18 16:04:53 2008
@@ -1,73 +1,24 @@
 #!/usr/bin/make -f
-# This file is public domain software, originally written by Joey Hess. 
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-PERL ?= /usr/bin/perl
-
-# The "-a" here is to make dh_list_packages list only arch-dependent packages,
-# which means only the main package is listed, not the transitional one
-TMP = $(CURDIR)/debian/$(shell dh_listpackages -a)
-
-# Allow disabling build optimation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-    CFLAGS += -O0
-else
-    CFLAGS += -O2
-endif
-
 
 build: build-stamp
 build-stamp:
-	dh_testdir
-
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="$(CFLAGS)"
-	$(MAKE) test
-
+	dh build
 	touch $@
 
 clean:
-	dh_testdir
-	dh_testroot
-
-	dh_clean build-stamp install-stamp
-
-	[ ! -f Makefile ] || $(MAKE) distclean
+	dh $@
 
 install: install-stamp
 install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-
-	$(MAKE) DESTDIR=$(TMP) PREFIX=/usr install
-	# remove the incorrectly placed example.pl
-	rm -f $(TMP)/usr/lib/perl5/Proc/example.pl
-	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5
-	
+	dh install
 	touch $@
 
-binary-indep: build install
+binary-arch: install
+	dh $@
 
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs Changes
-	dh_installdocs
-	dh_installexamples example.pl
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_perl
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
+binary-indep: install
+	dh $@
 
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Modified: trunk/libproc-processtable-perl/os/Linux.h
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-processtable-perl/os/Linux.h?rev=23380&op=diff
==============================================================================
--- trunk/libproc-processtable-perl/os/Linux.h (original)
+++ trunk/libproc-processtable-perl/os/Linux.h Fri Jul 18 16:04:53 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