Version in base suite: 1.0.6-2 Base version: wormhole-william_1.0.6-2 Target version: wormhole-william_1.0.6-2+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/w/wormhole-william/wormhole-william_1.0.6-2.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/w/wormhole-william/wormhole-william_1.0.6-2+deb12u1.dsc changelog | 7 +++++++ gbp.conf | 2 +- patches/disable-flaky-tests.patch | 34 ++++++++++++++++++++++++++++++++++ patches/series | 1 + 4 files changed, 43 insertions(+), 1 deletion(-) diff -Nru wormhole-william-1.0.6/debian/changelog wormhole-william-1.0.6/debian/changelog --- wormhole-william-1.0.6/debian/changelog 2022-10-10 16:19:50.000000000 +0000 +++ wormhole-william-1.0.6/debian/changelog 2023-10-24 07:50:00.000000000 +0000 @@ -1,3 +1,10 @@ +wormhole-william (1.0.6-2+deb12u1) bookworm; urgency=medium + + * Team upload. + * Disable flaky tests. Closes: #1031063. + + -- Santiago Vila Tue, 24 Oct 2023 09:50:00 +0200 + wormhole-william (1.0.6-2) unstable; urgency=medium * Don't run help2man at build time, instead generate man page diff -Nru wormhole-william-1.0.6/debian/gbp.conf wormhole-william-1.0.6/debian/gbp.conf --- wormhole-william-1.0.6/debian/gbp.conf 2022-10-10 16:19:50.000000000 +0000 +++ wormhole-william-1.0.6/debian/gbp.conf 2023-10-24 07:50:00.000000000 +0000 @@ -1,3 +1,3 @@ [DEFAULT] -debian-branch = debian/sid +debian-branch = debian/bookworm dist = DEP14 diff -Nru wormhole-william-1.0.6/debian/patches/disable-flaky-tests.patch wormhole-william-1.0.6/debian/patches/disable-flaky-tests.patch --- wormhole-william-1.0.6/debian/patches/disable-flaky-tests.patch 1970-01-01 00:00:00.000000000 +0000 +++ wormhole-william-1.0.6/debian/patches/disable-flaky-tests.patch 2023-10-24 07:50:00.000000000 +0000 @@ -0,0 +1,34 @@ +Description: Disable some flaky tests + These tests are flaky on the upstream CI as well but it doesn't appear to + impact the program when it runs +Author: Stephen Gelman +Last-Update: 2023-08-14 +Forwarded: no + +-- +--- a/wormhole/wormhole_test.go ++++ b/wormhole/wormhole_test.go +@@ -155,6 +155,7 @@ + } + + func TestVerifierAbort(t *testing.T) { ++ t.Skip() + ctx := context.Background() + + rs := rendezvousservertest.NewServer() +@@ -409,6 +410,7 @@ + } + + func TestWormholeFileTransportSendMidStreamCancel(t *testing.T) { ++ t.Skip() + ctx := context.Background() + + rs := rendezvousservertest.NewServer() +@@ -627,6 +629,7 @@ + } + + func TestWormholeDirectoryTransportSendRecvDirect(t *testing.T) { ++ t.Skip() + ctx := context.Background() + + rs := rendezvousservertest.NewServer() diff -Nru wormhole-william-1.0.6/debian/patches/series wormhole-william-1.0.6/debian/patches/series --- wormhole-william-1.0.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ wormhole-william-1.0.6/debian/patches/series 2023-10-24 07:50:00.000000000 +0000 @@ -0,0 +1 @@ +disable-flaky-tests.patch