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/changelog 2014-08-28 18:48:58.000000000 +0300 +++ lasso-2.4.1/debian/changelog 2017-05-25 20:03:22.000000000 +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 <b...@debian.org> 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.000000000 +0200 +++ lasso-2.4.1/debian/patches/0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch 2017-05-25 20:03:23.000000000 +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?= <fpet...@entrouvert.com> +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.000000000 +0300 +++ lasso-2.4.1/debian/patches/series 2017-05-25 20:03:23.000000000 +0300 @@ -1 +1,2 @@ Use-INSTALLDIRS-vendor-for-the-Perl-bindings-as-per-.patch +0001-perl-remove-quotes-from-PERL-V-ccflags-output.patch