3 Commits 8ec71c76ef ... 1adc2c9b1a

Author SHA1 Message Date
  Christoph Biedl 1adc2c9b1a Update lintian override 3 years ago
  Christoph Biedl 46b7bfeb49 ngircd 26-2 3 years ago
  Christoph Biedl f5637d9d14 Work around test suite failure on IPv6-only build hosts. Closes: #964276 3 years ago

+ 7 - 0
debian/changelog

@@ -1,3 +1,10 @@
+ngircd (26-2) unstable; urgency=medium
+
+  * Work around test suite failure on IPv6-only build hosts.
+    Closes: #964276
+
+ -- Christoph Biedl <debian.axhn@manchmal.in-ulm.de>  Sat, 25 Jul 2020 18:44:14 +0200
+
 ngircd (26-1) unstable; urgency=medium
 
   * New upstream version 26

+ 1 - 1
debian/ngircd.lintian-overrides

@@ -1,3 +1,3 @@
 
 # INSTALL also contains upgrading information, so ship it
-ngircd: package-contains-upstream-installation-documentation usr/share/doc/ngircd/INSTALL.gz
+ngircd: package-contains-upstream-installation-documentation usr/share/doc/ngircd/INSTALL.md.gz

+ 17 - 0
debian/patches/fix-ipv6-only-buildhost.patch

@@ -0,0 +1,17 @@
+Subject: Fix race in testsuite
+Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
+Date: 2020-07-25
+Bug-Debian: https://bugs.debian.org/964276
+Forwarded: https://github.com/ngircd/ngircd/issues/281
+
+--- a/src/ngircd/resolve.c
++++ b/src/ngircd/resolve.c
+@@ -246,7 +246,7 @@
+ 	static struct addrinfo hints;
+ 
+ #ifdef AI_ADDRCONFIG	/* glibc has this, but not e.g. netbsd 4.0 */
+-	hints.ai_flags = AI_ADDRCONFIG;
++/*	hints.ai_flags = AI_ADDRCONFIG; */
+ #endif
+ 	hints.ai_socktype = SOCK_STREAM;
+ 	hints.ai_protocol = IPPROTO_TCP;

+ 1 - 0
debian/patches/series

@@ -1,2 +1,3 @@
 # patches that should go upstream
 fix-race-in-testsuite.patch
+fix-ipv6-only-buildhost.patch