diff -Nru openhft-chronicle-threads-1.1.6/debian/changelog openhft-chronicle-threads-1.1.6/debian/changelog --- openhft-chronicle-threads-1.1.6/debian/changelog 2016-07-31 12:41:12.000000000 +0000 +++ openhft-chronicle-threads-1.1.6/debian/changelog 2019-03-10 22:51:46.000000000 +0000 @@ -1,3 +1,14 @@ +openhft-chronicle-threads (1.1.6-2) unstable; urgency=medium + + * Team upload + * Add patch for FTBFS (Closes: #917738) + Thank you to Joe Lee for providing the patch. + * Bump Standards-Version to 4.3.0 + * Update Vcs- URLs to point to Salsa + * Use debhelper 12 + + -- tony mancill Sun, 10 Mar 2019 15:51:46 -0700 + openhft-chronicle-threads (1.1.6-1) unstable; urgency=medium * Initial release (Closes: #832927) diff -Nru openhft-chronicle-threads-1.1.6/debian/compat openhft-chronicle-threads-1.1.6/debian/compat --- openhft-chronicle-threads-1.1.6/debian/compat 2016-07-31 12:41:12.000000000 +0000 +++ openhft-chronicle-threads-1.1.6/debian/compat 2019-03-10 22:51:46.000000000 +0000 @@ -1 +1 @@ -9 +12 diff -Nru openhft-chronicle-threads-1.1.6/debian/control openhft-chronicle-threads-1.1.6/debian/control --- openhft-chronicle-threads-1.1.6/debian/control 2016-07-31 12:41:12.000000000 +0000 +++ openhft-chronicle-threads-1.1.6/debian/control 2019-03-10 22:51:46.000000000 +0000 @@ -4,7 +4,7 @@ Maintainer: Debian Java Maintainers Uploaders: Emmanuel Bourg Build-Depends: - debhelper (>= 9), + debhelper (>= 12), default-jdk, junit4, libintellij-annotations-java, @@ -13,9 +13,9 @@ libopenhft-chronicle-core-java, libslf4j-java, maven-debian-helper (>= 2.1) -Standards-Version: 3.9.8 -Vcs-Git: https://anonscm.debian.org/git/pkg-java/openhft-chronicle-threads.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/openhft-chronicle-threads.git +Standards-Version: 4.3.0 +Vcs-Git: https://salsa.debian.org/java-team/openhft-chronicle-threads.git +Vcs-Browser: https://salsa.debian.org/java-team/openhft-chronicle-threads Homepage: https://github.com/OpenHFT/Chronicle-Threads Package: libopenhft-chronicle-threads-java diff -Nru openhft-chronicle-threads-1.1.6/debian/patches/remove-WebServiceException.patch openhft-chronicle-threads-1.1.6/debian/patches/remove-WebServiceException.patch --- openhft-chronicle-threads-1.1.6/debian/patches/remove-WebServiceException.patch 1970-01-01 00:00:00.000000000 +0000 +++ openhft-chronicle-threads-1.1.6/debian/patches/remove-WebServiceException.patch 2019-03-10 22:51:46.000000000 +0000 @@ -0,0 +1,26 @@ +Description: remove WebServiceException +Origin: upstream, https://github.com/OpenHFT/Chronicle-Threads/commit/bb1d4edfc7a783ebdc7c58bfc2f278f665e2539e#diff-e5af304c7efa4fec7930553b2fab754b +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917738 + +Index: openhft-chronicle-threads-1.1.6/src/main/java/net/openhft/chronicle/threads/MonitorEventLoop.java +=================================================================== +--- openhft-chronicle-threads-1.1.6.orig/src/main/java/net/openhft/chronicle/threads/MonitorEventLoop.java ++++ openhft-chronicle-threads-1.1.6/src/main/java/net/openhft/chronicle/threads/MonitorEventLoop.java +@@ -25,7 +25,6 @@ import org.jetbrains.annotations.NotNull + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + +-import javax.xml.ws.WebServiceException; + import java.io.Closeable; + import java.util.ArrayList; + import java.util.List; +@@ -120,7 +119,8 @@ public class MonitorEventLoop implements + } + + @Override +- public void close() throws WebServiceException { ++ public void close() { ++ stop(); + service.shutdown(); + try { + if (!service.awaitTermination(100, TimeUnit.MILLISECONDS)) diff -Nru openhft-chronicle-threads-1.1.6/debian/patches/series openhft-chronicle-threads-1.1.6/debian/patches/series --- openhft-chronicle-threads-1.1.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ openhft-chronicle-threads-1.1.6/debian/patches/series 2019-03-10 22:51:46.000000000 +0000 @@ -0,0 +1 @@ +remove-WebServiceException.patch