On Sun, Mar 23, 2014 at 2:08 AM, Michael Gilbert wrote: > control: tag -1 patch > > On Sat, Mar 22, 2014 at 9:51 AM, Arno Töll wrote: >> severity 731074 important >> thanks >> >> I will downgrade this bug to important for now, as long at is uncertain >> if this is a bug in lighttpd or kfreebsd's libc. Either way we need to >> have a newer lighttpd in Testing. If you feel like, feel free to upgrade >> the severity again, once 1.4.35 hits Testing. > > Here is a patch that disables the mod-fastcgi test only on kfreebsd.
Hi, I've uploaded this fix to delayed/10 since the build failure is blocking lighttpd from testing. Please see attached patch. Best wishes, Mike
diff -Nru lighttpd-1.4.35/debian/changelog lighttpd-1.4.35/debian/changelog --- lighttpd-1.4.35/debian/changelog 2014-03-22 10:07:21.000000000 -0400 +++ lighttpd-1.4.35/debian/changelog 2014-03-28 22:42:08.000000000 -0400 @@ -1,3 +1,10 @@ +lighttpd (1.4.35-1+nmu1) unstable; urgency=medium + + * Non-maintainer upload. + * Disable indeterminant test on kfreebsd (closes: #731074). + + -- Michael Gilbert <mgilb...@debian.org> Sat, 29 Mar 2014 02:41:09 +0000 + lighttpd (1.4.35-1) unstable; urgency=low * New upstream version (fixes CVE-2014-2323, CVE-2014-2324) diff -Nru lighttpd-1.4.35/debian/patches/kfreebsd-disable-test.patch lighttpd-1.4.35/debian/patches/kfreebsd-disable-test.patch --- lighttpd-1.4.35/debian/patches/kfreebsd-disable-test.patch 1969-12-31 19:00:00.000000000 -0500 +++ lighttpd-1.4.35/debian/patches/kfreebsd-disable-test.patch 2014-03-28 22:43:31.000000000 -0400 @@ -0,0 +1,18 @@ +description: disable mod-fastcgi test on kfreebsd +author: Michael Gilbert <mgilb...@debian.org> + +--- a/tests/run-tests.pl 2014-03-23 06:02:39.000000000 +0000 ++++ b/tests/run-tests.pl 2014-03-23 06:04:40.473881736 +0000 +@@ -16,5 +16,12 @@ + push @fs, $srcdir.'/'.$f; + } + } ++ ++# avoid indeterminant test on kfreebsd ++use Config; ++if (index($Config{'archname'}, 'freebsd') != -1) { ++ @fs = grep(!/mod-fastcgi.t/, @fs); ++} ++ + closedir DIR; + runtests (sort @fs); diff -Nru lighttpd-1.4.35/debian/patches/series lighttpd-1.4.35/debian/patches/series --- lighttpd-1.4.35/debian/patches/series 2014-03-22 09:56:41.000000000 -0400 +++ lighttpd-1.4.35/debian/patches/series 2014-03-28 22:43:17.000000000 -0400 @@ -0,0 +1 @@ +kfreebsd-disable-test.patch