Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Add patch for FTBFS #917738
· 207cfdc6
Tony Mancill
authored
Mar 10, 2019
207cfdc6
Bump Standards-Version to 4.3.0
· 788da922
Tony Mancill
authored
Mar 10, 2019
788da922
Update Vcs- URLs to point to Salsa
· d9dea2f4
Tony Mancill
authored
Mar 10, 2019
d9dea2f4
Use debhelper 12
· 1448b803
Tony Mancill
authored
Mar 10, 2019
1448b803
prepare changelog for upload
· 4bb00a5c
Tony Mancill
authored
Mar 10, 2019
4bb00a5c
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4bb00a5c
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 <tmancill@debian.org> Sun, 10 Mar 2019 15:51:46 -0700
openhft-chronicle-threads (1.1.6-1) unstable; urgency=medium
* Initial release (Closes: #832927)
...
...
debian/compat
View file @
4bb00a5c
9
12
debian/control
View file @
4bb00a5c
...
...
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends:
debhelper (>=
9
),
debhelper (>=
12
),
default-jdk,
junit4,
libintellij-annotations-java,
...
...
@@ -13,9 +13,9 @@ Build-Depends:
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
...
...
debian/patches/remove-WebServiceException.patch
0 → 100644
View file @
4bb00a5c
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))
debian/patches/series
0 → 100644
View file @
4bb00a5c
remove-WebServiceException.patch