[SCM] Debian packaging of libcdk-perl branch, master, updated. debian/20120324-1-6-g6916a9c

gregor herrmann gregoa at debian.org
Sat May 18 11:52:56 UTC 2013


The following commit has been merged in the master branch:
commit 3aff21044b3f1ac95c8d0b6fc1130c9801c012db
Author: gregor herrmann <gregoa at debian.org>
Date:   Sat May 18 13:49:22 2013 +0200

    Add patch from Niko Tyni to fix a few parameter typos
    
    caught be newer versions of ExtUtils::ParseXS.
    
    Closes: #708593

diff --git a/debian/patches/0001-Fix-a-few-parameter-typos-caught-be-newer-versions-o.patch b/debian/patches/0001-Fix-a-few-parameter-typos-caught-be-newer-versions-o.patch
new file mode 100644
index 0000000..4804779
--- /dev/null
+++ b/debian/patches/0001-Fix-a-few-parameter-typos-caught-be-newer-versions-o.patch
@@ -0,0 +1,66 @@
+Forwarded: Thomas Dickey <dickey at invisible-island.net>
+Bug-Debian: http://bugs.debian.org/708593
+
+From 1a9b3a0f61059daaa40b3a1819ac75c4a52d7565 Mon Sep 17 00:00:00 2001
+From: Niko Tyni <ntyni at debian.org>
+Date: Sat, 18 May 2013 13:20:10 +0300
+Subject: [PATCH] Fix a few parameter typos caught be newer versions of
+ ExtUtils::ParseXS
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+ExtUtils::ParseXS 3.18 (bundled with Perl 5.18) makes the build
+fail due to a few apparent cut-and-paste errors.
+
+ Cdk.c: In function ‘XS_Cdk__Menu_Draw’:
+ Cdk.c:5244:2: error: too few arguments to function ‘sv2int’
+ Cdk.xs:718:1: note: declared here
+ Cdk.c: In function ‘XS_Cdk__Alphalist_SetFillerChar’:
+ Cdk.c:16542:2: error: too few arguments to function ‘sv2chtype’
+ Cdk.xs:341:1: note: declared here
+ Cdk.c: In function ‘XS_Cdk__Alphalist_SetHighlight’:
+ Cdk.c:16571:2: error: too few arguments to function ‘sv2chtype’
+ Cdk.xs:341:1: note: declared here
+---
+ Cdk.xs |    8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/Cdk.xs b/Cdk.xs
+index cd31557..9d9cc7e 100644
+--- a/Cdk.xs
++++ b/Cdk.xs
+@@ -2434,7 +2434,7 @@ PostProcess(object,functionRef)
+ 	   RETVAL
+ 
+ void
+-Draw(object)
++Draw(object, Box)
+ 	CDKMENU *	object
+ 	int		Box = sv2int ($arg);
+ 	CODE:
+@@ -6585,7 +6585,7 @@ SetContents(object,list)
+ 	}
+ 
+ void
+-SetFillerChar(object,fille)
++SetFillerChar(object,filler)
+ 	CDKALPHALIST*	object
+ 	chtype	filler = sv2chtype ($arg);
+ 	CODE:
+@@ -6596,10 +6596,10 @@ SetFillerChar(object,fille)
+ void
+ SetHighlight(object,highlight)
+ 	CDKALPHALIST*	object
+-	chtype	filler = sv2chtype ($arg);
++	chtype	highlight = sv2chtype ($arg);
+ 	CODE:
+ 	{
+-	   setCDKAlphalistHighlight (object,filler);
++	   setCDKAlphalistHighlight (object,highlight);
+ 	}
+ 
+ void
+-- 
+1.7.10.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..6243b62
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-a-few-parameter-typos-caught-be-newer-versions-o.patch

-- 
Debian packaging of libcdk-perl



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