r13533 - in /trunk/libdevel-gdb-perl/debian: changelog control patches/ patches/series patches/stdin.patch rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Jan 25 16:29:20 UTC 2008


Author: gregoa-guest
Date: Fri Jan 25 16:29:20 2008
New Revision: 13533

URL: http://svn.debian.org/wsvn/?sc=1&rev=13533
Log:
Add gdb and libexpect-perl to Build-Depends-Indep (used in tests),
  caught by Lucas' Build Daemon from Hell. Create patch stdin.patch (to
  make tests work without a STDIN), add quilt framework.

Added:
    trunk/libdevel-gdb-perl/debian/patches/
    trunk/libdevel-gdb-perl/debian/patches/series
    trunk/libdevel-gdb-perl/debian/patches/stdin.patch
Modified:
    trunk/libdevel-gdb-perl/debian/changelog
    trunk/libdevel-gdb-perl/debian/control
    trunk/libdevel-gdb-perl/debian/rules

Modified: trunk/libdevel-gdb-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/changelog?rev=13533&op=diff
==============================================================================
--- trunk/libdevel-gdb-perl/debian/changelog (original)
+++ trunk/libdevel-gdb-perl/debian/changelog Fri Jan 25 16:29:20 2008
@@ -4,8 +4,11 @@
     field (source stanza); Homepage field (source stanza). Removed:
     Homepage pseudo-field (Description); XS-Vcs-Svn fields.
   * debian/rules: delete /usr/lib/perl5 only if it exists.
+  * Add gdb and libexpect-perl to Build-Depends-Indep (used in tests),
+    caught by Lucas' Build Daemon from Hell. Create patch stdin.patch (to
+    make tests work without a STDIN), add quilt framework.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:28:57 +0200
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Fri, 25 Jan 2008 17:26:08 +0100
 
 libdevel-gdb-perl (2.0-1) unstable; urgency=low
 

Modified: trunk/libdevel-gdb-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/control?rev=13533&op=diff
==============================================================================
--- trunk/libdevel-gdb-perl/debian/control (original)
+++ trunk/libdevel-gdb-perl/debian/control Fri Jan 25 16:29:20 2008
@@ -1,8 +1,8 @@
 Source: libdevel-gdb-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0)
-Build-Depends-Indep: perl (>= 5.8.8-7), libtest-pod-perl, libtest-pod-coverage-perl
+Build-Depends: debhelper (>= 5.0.0), quilt
+Build-Depends-Indep: perl (>= 5.8.8-7), libtest-pod-perl, libtest-pod-coverage-perl, gdb, libexpect-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Deepak Tripathi <apenguinlinux at gmail.com>
 Standards-Version: 3.7.2

Added: trunk/libdevel-gdb-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/patches/series?rev=13533&op=file
==============================================================================
--- trunk/libdevel-gdb-perl/debian/patches/series (added)
+++ trunk/libdevel-gdb-perl/debian/patches/series Fri Jan 25 16:29:20 2008
@@ -1,0 +1,1 @@
+stdin.patch

Added: trunk/libdevel-gdb-perl/debian/patches/stdin.patch
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/patches/stdin.patch?rev=13533&op=file
==============================================================================
--- trunk/libdevel-gdb-perl/debian/patches/stdin.patch (added)
+++ trunk/libdevel-gdb-perl/debian/patches/stdin.patch Fri Jan 25 16:29:20 2008
@@ -1,0 +1,22 @@
+--- libdevel-gdb-perl.orig/t/with-threads.t
++++ libdevel-gdb-perl/t/with-threads.t
+@@ -9,7 +9,7 @@
+ plan tests => 4 ;
+ 
+ use_ok('Devel::GDB') ;
+-my $gdb = new Devel::GDB ( '-params' => '-q' ) ;
++my $gdb = new Devel::GDB ( '-params' => '-q', '-use-tty' => '/dev/pts/123' ) ;
+ ok($gdb) ;
+ ok($gdb->{'-use-threads'}) ;
+ ok($gdb -> get( 'help')) ;
+--- libdevel-gdb-perl.orig/t/without-threads.t
++++ libdevel-gdb-perl/t/without-threads.t
+@@ -6,7 +6,7 @@
+ plan tests => 4 ;
+ 
+ use_ok('Devel::GDB') ;
+-my $gdb = new Devel::GDB ( '-params' => '-q' ) ;
++my $gdb = new Devel::GDB ( '-params' => '-q', '-use-tty' => '/dev/pts/123' ) ;
+ ok($gdb) ;
+ ok(!$gdb->{'-use-threads'}) ;
+ ok($gdb -> get( 'help')) ;

Modified: trunk/libdevel-gdb-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/rules?rev=13533&op=diff
==============================================================================
--- trunk/libdevel-gdb-perl/debian/rules (original)
+++ trunk/libdevel-gdb-perl/debian/rules Fri Jan 25 16:29:20 2008
@@ -6,6 +6,8 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+
+include /usr/share/quilt/quilt.make
 
 # If set to a true value then MakeMaker's prompt function will
 # always return the default without waiting for user input.
@@ -20,7 +22,7 @@
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 
 	# Add commands to compile the package here
@@ -29,7 +31,7 @@
 
 	touch build-stamp
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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