Bug#863352: jessie-pu: package lasso/2.4.1-1+deb8u1

2017-06-27 Thread Cyril Brulebois
Control: tag -1 moreinfo

Adrian Bunk  (2017-05-25):
>  changelog|9 +++
>  patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch |   25 
> ++
>  patches/series   |1 
>  3 files changed, 35 insertions(+)

I won't repeat myself about the total lack of context in your pu
mails, but I can assure you it's still very much not welcome.

Also, is this coordinated with the maintainer at all?

Also tired of this:
| patching file debian/changelog
| patching file 
debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch
| patching file debian/patches/series
| patch unexpectedly ends in middle of line
| patch:  malformed patch at line 62:  

Please send a proper debdiff, as an attachment.


KiBi.


signature.asc
Description: Digital signature


Bug#863352: jessie-pu: package lasso/2.4.1-1+deb8u1

2017-05-25 Thread Adrian Bunk
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu


 changelog|9 +++
 patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch |   25 
++
 patches/series   |1 
 3 files changed, 35 insertions(+)

diff -Nru lasso-2.4.1/debian/changelog lasso-2.4.1/debian/changelog
--- lasso-2.4.1/debian/changelog2014-08-28 18:48:58.0 +0300
+++ lasso-2.4.1/debian/changelog2017-05-25 20:03:22.0 +0300
@@ -1,3 +1,12 @@
+lasso (2.4.1-1+deb8u1) jessie; urgency=medium
+
+  * Non-maintainer upload.
+  * Add patch from Frederic Peters to make sure to remove quotes
+given by "perl -V::ccflags:" as they broke Lasso on 32bit
+architectures. (Closes: #809759)
+
+ -- Adrian Bunk   Thu, 25 May 2017 19:40:08 +0300
+
 lasso (2.4.1-1) unstable; urgency=medium
 
   * New upstream release.
diff -Nru 
lasso-2.4.1/debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch
 
lasso-2.4.1/debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch
--- 
lasso-2.4.1/debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch
 1970-01-01 02:00:00.0 +0200
+++ 
lasso-2.4.1/debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch
 2017-05-25 20:03:23.0 +0300
@@ -0,0 +1,25 @@
+From 5e26495b8801e347edf70a567d36b0423542c552 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= 
+Date: Mon, 11 Jan 2016 09:15:27 +0100
+Subject: [PATCH] perl: remove quotes from $PERL -V::ccflags: output
+
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 7a1a6ce..3e8d325 100644
+--- a/configure.ac
 b/configure.ac
+@@ -531,7 +531,7 @@ AC_ARG_ENABLE(perl, [  --disable-perl  disable the 
Perl binding],,
+ if test "X$PERL" != "X"; then
+   PERLINSTALLSITEARCH=`$PERL -MConfig -e 'print $Config{installsitearch};'`
+   PERLMAN3DIR=`$PERL -MConfig -e 'print $Config{man3dir};'`
+-  PERL_CFLAGS=$($PERL -V::ccflags:)
++  PERL_CFLAGS=$($PERL -V::ccflags: | tr -d "'")
+ else
+   PERLINSTALLSITEARCH=none
+   PERLMAN3DIR=none
+-- 
+2.7.0.rc3
+
diff -Nru lasso-2.4.1/debian/patches/series lasso-2.4.1/debian/patches/series
--- lasso-2.4.1/debian/patches/series   2014-08-28 18:48:18.0 +0300
+++ lasso-2.4.1/debian/patches/series   2017-05-25 20:03:23.0 +0300
@@ -1 +1,2 @@
 Use-INSTALLDIRS-vendor-for-the-Perl-bindings-as-per-.patch
+0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch