r27682 - in /trunk/libipc-shareable-perl/debian: changelog control patches/ patches/fix_perl_5.10_compat patches/series rules

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Wed Dec 3 16:59:50 UTC 2008


Author: gwolf
Date: Wed Dec  3 16:59:46 2008
New Revision: 27682

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=27682
Log:
Added patch for #507657

Added:
    trunk/libipc-shareable-perl/debian/patches/
    trunk/libipc-shareable-perl/debian/patches/fix_perl_5.10_compat
    trunk/libipc-shareable-perl/debian/patches/series
Modified:
    trunk/libipc-shareable-perl/debian/changelog
    trunk/libipc-shareable-perl/debian/control
    trunk/libipc-shareable-perl/debian/rules

Modified: trunk/libipc-shareable-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/changelog?rev=27682&op=diff
==============================================================================
--- trunk/libipc-shareable-perl/debian/changelog (original)
+++ trunk/libipc-shareable-perl/debian/changelog Wed Dec  3 16:59:46 2008
@@ -1,4 +1,4 @@
-libipc-shareable-perl (0.60-7) UNRELEASED; urgency=low
+libipc-shareable-perl (0.60-7) unstable; urgency=low
 
   [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
@@ -18,8 +18,18 @@
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
+    
+  [ Gunnar Wolf ]
+  * Adding myself as an uploader
+  * Adding build-dependency on quilt
+  * Added missing call to 'make test' during build process
+  * Including Frank Lichtenheld's patch toe the test suit pass (and the
+    module work, of course) under Perl 5.10 -
+    http://rt.cpan.org/Public/Bug/Display.html?id=41401 (Closes:
+    #507657)
+  * Standards-version 3.7.2 -> 3.8.0 (no changes needed)
 
- -- Martín Ferrari <tincho at debian.org>  Fri, 13 Jun 2008 00:04:48 +0000
+ -- Gunnar Wolf <gwolf at debian.org>  Wed, 03 Dec 2008 10:47:39 -0600
 
 libipc-shareable-perl (0.60-6) unstable; urgency=low
 

Modified: trunk/libipc-shareable-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/control?rev=27682&op=diff
==============================================================================
--- trunk/libipc-shareable-perl/debian/control (original)
+++ trunk/libipc-shareable-perl/debian/control Wed Dec  3 16:59:46 2008
@@ -2,13 +2,13 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Martín Ferrari <tincho at debian.org>
-Standards-Version: 3.7.2
+Uploaders: Martín Ferrari <tincho at debian.org>, Gunnar Wolf <gwolf at debian.org>
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/IPC-Shareable/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libipc-shareable-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libipc-shareable-perl/
 Build-Depends-Indep: perl (>= 5.6.0-16)
-Build-Depends: debhelper (>= 5.0.0)
+Build-Depends: debhelper (>= 5.0.0), quilt
 
 Package: libipc-shareable-perl
 Architecture: all

Added: trunk/libipc-shareable-perl/debian/patches/fix_perl_5.10_compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/patches/fix_perl_5.10_compat?rev=27682&op=file
==============================================================================
--- trunk/libipc-shareable-perl/debian/patches/fix_perl_5.10_compat (added)
+++ trunk/libipc-shareable-perl/debian/patches/fix_perl_5.10_compat Wed Dec  3 16:59:46 2008
@@ -1,0 +1,14 @@
+# Getting $# of an already-dereferenced-arrayref is a no-go in Perl 5.10
+Index: libipc-shareable-perl/lib/IPC/Shareable.pm
+===================================================================
+--- libipc-shareable-perl.orig/lib/IPC/Shareable.pm	2008-12-03 10:51:27.000000000 -0600
++++ libipc-shareable-perl/lib/IPC/Shareable.pm	2008-12-03 10:51:46.000000000 -0600
+@@ -452,7 +452,7 @@
+     my $n    = shift;
+ 
+     $self->{_data} = _thaw($self->{_shm}) unless $self->{_lock};
+-    $#{@{$self->{_data}}} = $n - 1;
++    $#{$self->{_data}} = $n - 1;
+     if ($self->{_lock} & LOCK_EX) {
+         $self->{_was_changed} = 1;
+     } else {

Added: trunk/libipc-shareable-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/patches/series?rev=27682&op=file
==============================================================================
--- trunk/libipc-shareable-perl/debian/patches/series (added)
+++ trunk/libipc-shareable-perl/debian/patches/series Wed Dec  3 16:59:46 2008
@@ -1,0 +1,1 @@
+fix_perl_5.10_compat

Modified: trunk/libipc-shareable-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/rules?rev=27682&op=diff
==============================================================================
--- trunk/libipc-shareable-perl/debian/rules (original)
+++ trunk/libipc-shareable-perl/debian/rules Wed Dec  3 16:59:46 2008
@@ -8,15 +8,17 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+include /usr/share/quilt/quilt.make
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 	perl Makefile.PL INSTALLDIRS=vendor
 	$(MAKE)
+	$(MAKE) test
 	touch build-stamp
 
-clean:
+clean: unpatch
 	dh_testdir
 	rm -f build-stamp
 	[ ! -f Makefile ] || $(MAKE) distclean




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