r3082 - in /packages/libterm-readline-gnu-perl/trunk/debian: changelog compat control patches/30outstream.dpatch rules

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Sat Jun 17 15:24:36 UTC 2006


Author: ntyni-guest
Date: Sat Jun 17 15:24:33 2006
New Revision: 3082

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3082
Log:
- Packaging fixes
- update 30outstream.dpatch fixing #350991


Added:
    packages/libterm-readline-gnu-perl/trunk/debian/compat
Modified:
    packages/libterm-readline-gnu-perl/trunk/debian/changelog
    packages/libterm-readline-gnu-perl/trunk/debian/control
    packages/libterm-readline-gnu-perl/trunk/debian/patches/30outstream.dpatch
    packages/libterm-readline-gnu-perl/trunk/debian/rules

Modified: packages/libterm-readline-gnu-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libterm-readline-gnu-perl/trunk/debian/changelog?rev=3082&op=diff
==============================================================================
--- packages/libterm-readline-gnu-perl/trunk/debian/changelog (original)
+++ packages/libterm-readline-gnu-perl/trunk/debian/changelog Sat Jun 17 15:24:33 2006
@@ -1,3 +1,12 @@
+libterm-readline-gnu-perl (1.16-2) unstable; urgency=low
+
+  * debian/patches/30outstream.dpatch:
+    + fix segmentation fault with "PERLIO=stdio"
+  * Upgrade to Standards-Version 3.7.2. No changes needed.
+  * Upgrade to debhelper compatibility level 5.
+
+ -- Niko Tyni <ntyni at iki.fi>  Sat, 17 Jun 2006 18:21:08 +0300
+
 libterm-readline-gnu-perl (1.16-1) unstable; urgency=low
 
   * New upstream release

Added: packages/libterm-readline-gnu-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libterm-readline-gnu-perl/trunk/debian/compat?rev=3082&op=file
==============================================================================
--- packages/libterm-readline-gnu-perl/trunk/debian/compat (added)
+++ packages/libterm-readline-gnu-perl/trunk/debian/compat Sat Jun 17 15:24:33 2006
@@ -1,0 +1,1 @@
+5

Modified: packages/libterm-readline-gnu-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libterm-readline-gnu-perl/trunk/debian/control?rev=3082&op=diff
==============================================================================
--- packages/libterm-readline-gnu-perl/trunk/debian/control (original)
+++ packages/libterm-readline-gnu-perl/trunk/debian/control Sat Jun 17 15:24:33 2006
@@ -3,8 +3,8 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>, Niko Tyni <ntyni at iki.fi>, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
-Standards-Version: 3.6.2
-Build-Depends: debhelper (>= 4.0.19), perl (>= 5.8), libreadline5-dev, dpatch (>= 2.0.9)
+Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5), perl (>= 5.8), libreadline5-dev, dpatch (>= 2.0.9)
 
 Package: libterm-readline-gnu-perl
 Architecture: any

Modified: packages/libterm-readline-gnu-perl/trunk/debian/patches/30outstream.dpatch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libterm-readline-gnu-perl/trunk/debian/patches/30outstream.dpatch?rev=3082&op=diff
==============================================================================
--- packages/libterm-readline-gnu-perl/trunk/debian/patches/30outstream.dpatch (original)
+++ packages/libterm-readline-gnu-perl/trunk/debian/patches/30outstream.dpatch Sat Jun 17 15:24:33 2006
@@ -6,8 +6,8 @@
 
 @DPATCH@
 diff -urNad trunk~/Gnu.pm trunk/Gnu.pm
---- trunk~/Gnu.pm	2006-01-15 19:34:52.835305578 +0200
-+++ trunk/Gnu.pm	2006-01-15 19:34:57.369527534 +0200
+--- trunk~/Gnu.pm	2006-06-17 18:19:32.105106052 +0300
++++ trunk/Gnu.pm	2006-06-17 18:19:32.236083491 +0300
 @@ -278,6 +278,10 @@
      my $self = shift;
      my ($prompt, $preput) = @_;
@@ -19,3 +19,19 @@
      # ornament support (now prompt only)
      $prompt = ${$Attribs{term_set}}[0] . $prompt . ${$Attribs{term_set}}[1];
  
+diff -urNad trunk~/Gnu.xs trunk/Gnu.xs
+--- trunk~/Gnu.xs	2006-04-17 21:10:17.000000000 +0300
++++ trunk/Gnu.xs	2006-06-17 18:20:31.027956445 +0300
+@@ -2674,6 +2674,12 @@
+ 	    if (outstreamPIO != NULL)
+ 	      PerlIO_releaseFILE(outstreamPIO, rl_outstream);
+ 	    rl_outstream = PerlIO_findFILE(stream);
++	    /* 
++	     * Debian-specific addition fixing a segfault with "PERLIO=stdio"
++	     * see http://bugs.debian.org/350991
++	     */
++	    if (!rl_outstream)
++	      rl_outstream = stdout;
+ 	    RETVAL = outstreamPIO = stream;
+ #ifdef __CYGWIN__
+ 	    {

Modified: packages/libterm-readline-gnu-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libterm-readline-gnu-perl/trunk/debian/rules?rev=3082&op=diff
==============================================================================
--- packages/libterm-readline-gnu-perl/trunk/debian/rules (original)
+++ packages/libterm-readline-gnu-perl/trunk/debian/rules Sat Jun 17 15:24:33 2006
@@ -2,7 +2,6 @@
 #-*- makefile -*-
 
 #export DH_VERBOSE=1
-export DH_COMPAT=4
 
 PACKAGE=$(shell dh_listpackages)
 
@@ -16,7 +15,7 @@
 DESTDIR=..
 endif
 
-TMP     =`pwd`/debian/$(PACKAGE)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 DOCDIR   = $(TMP)/usr/share/doc/libterm-readline-gnu-perl
 
 OPTIMIZE = -O2 -Wall
@@ -64,7 +63,7 @@
 
 # Build architecture-independent files here.
 binary-indep: build install
-# We have nothing to do by default.
+# We have nothing to do.
 
 # Build architecture-dependent files here.
 binary-arch: build install




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