[Pkg-gnutls-commits] r1923 - in /packages/gnutls28/branches/experimental/debian: changelog patches/50_Ignore-SIGPIPE.patch patches/series

ametzler at users.alioth.debian.org ametzler at users.alioth.debian.org
Sun Nov 10 12:23:03 UTC 2013


Author: ametzler
Date: Sun Nov 10 12:23:02 2013
New Revision: 1923

URL: http://svn.debian.org/wsvn/pkg-gnutls/?sc=1&rev=1923
Log:
Fix spurious FTBFS due to race condition.

Added:
    packages/gnutls28/branches/experimental/debian/patches/50_Ignore-SIGPIPE.patch
Modified:
    packages/gnutls28/branches/experimental/debian/changelog
    packages/gnutls28/branches/experimental/debian/patches/series

Modified: packages/gnutls28/branches/experimental/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/branches/experimental/debian/changelog?rev=1923&op=diff
==============================================================================
--- packages/gnutls28/branches/experimental/debian/changelog	(original)
+++ packages/gnutls28/branches/experimental/debian/changelog	Sun Nov 10 12:23:02 2013
@@ -3,6 +3,7 @@
   * NOT RELEASED YET
   * Print out test-suite.log on test-suite-error. (Thanks, Steven Chamberlain
     for the hint.)
+  * 50_Ignore-SIGPIPE.patch - fix spurious FTBFS due to race condition.
 
  -- Andreas Metzler <ametzler at debian.org>  Tue, 05 Nov 2013 19:54:36 +0100
 

Added: packages/gnutls28/branches/experimental/debian/patches/50_Ignore-SIGPIPE.patch
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/branches/experimental/debian/patches/50_Ignore-SIGPIPE.patch?rev=1923&op=file
==============================================================================
--- packages/gnutls28/branches/experimental/debian/patches/50_Ignore-SIGPIPE.patch	(added)
+++ packages/gnutls28/branches/experimental/debian/patches/50_Ignore-SIGPIPE.patch	Sun Nov 10 12:23:02 2013
@@ -0,0 +1,18 @@
+Description: Ignore SIGPIPE.
+ Diagnosed by Petr Salinger and Steven Chamberlain. Reported by Andreas
+ Metzler.
+ Pulled from upstream git 2dd6fde2d61a0ea5d019b76188cea4589db9fd5b, manually
+ unfuzzed.
+Author: Nikos Mavrogiannopoulos <nmav at gnutls.org>
+Origin: upstream
+
+--- gnutls28-3.2.6.orig/tests/mini-handshake-timeout.c
++++ gnutls28-3.2.6/tests/mini-handshake-timeout.c
+@@ -242,6 +242,7 @@ void
+ doit (void)
+ {
+   signal(SIGCHLD, ch_handler);
++  signal(SIGPIPE, SIG_IGN);
+ 
+   /* make sure that normal handshake occurs */
+   start(0);

Modified: packages/gnutls28/branches/experimental/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/branches/experimental/debian/patches/series?rev=1923&op=diff
==============================================================================
--- packages/gnutls28/branches/experimental/debian/patches/series	(original)
+++ packages/gnutls28/branches/experimental/debian/patches/series	Sun Nov 10 12:23:02 2013
@@ -1,3 +1,4 @@
 14_version_gettextcat.diff
 30_forcesystemlibopts.diff
 40_guilenoparallel.diff
+50_Ignore-SIGPIPE.patch




More information about the Pkg-gnutls-commits mailing list