--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package netrek-client-cow
The fix for #924291, a possible infinite loop, was wrong. This update
corrects the problem. My apologies for any inconvenience this may
cause.
Please find attached the debdiff.
Regards,
Markus
unblock netrek-client-cow/3.3.1-3
-- System Information:
Debian Release: buster/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 4.9.0-8-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: unable to detect
diff -Nru netrek-client-cow-3.3.1/debian/changelog netrek-client-cow-3.3.1/debian/changelog
--- netrek-client-cow-3.3.1/debian/changelog 2019-03-20 21:31:57.000000000 +0100
+++ netrek-client-cow-3.3.1/debian/changelog 2019-03-24 13:31:40.000000000 +0100
@@ -1,3 +1,10 @@
+netrek-client-cow (3.3.1-3) unstable; urgency=medium
+
+ * Team upload.
+ * Fix infinite loop patch. Really (Closes: #924291)
+
+ -- Markus Koschany <apo@debian.org> Sun, 24 Mar 2019 13:31:40 +0100
+
netrek-client-cow (3.3.1-2) unstable; urgency=medium
* Team upload.
diff -Nru netrek-client-cow-3.3.1/debian/patches/possible-infinite-loop.patch netrek-client-cow-3.3.1/debian/patches/possible-infinite-loop.patch
--- netrek-client-cow-3.3.1/debian/patches/possible-infinite-loop.patch 2019-03-20 21:31:57.000000000 +0100
+++ netrek-client-cow-3.3.1/debian/patches/possible-infinite-loop.patch 2019-03-24 13:31:40.000000000 +0100
@@ -16,7 +16,7 @@
newkey: mkkey
- until ./mkkey $(KEYFILE) "Client Of Win" $(DESC) $(MAKER) $(COMMENT) "inl,standard2"; do sleep 1; done
-+ attempts=32; until ./mkkey $(KEYFILE) "Client Of Win" $(DESC) $(MAKER) $(COMMENT) "inl,standard2"; do attempts=$(attempts - 1); test $(attempts) -le 0 && exit 1; sleep 1; done
++ attempts=32; until ./mkkey $(KEYFILE) "Client Of Win" $(DESC) $(MAKER) $(COMMENT) "inl,standard2"; do attempts=$$((attempts - 1)); test $$(attempts) -le 0 && exit 1; sleep 1; done
mkkey: system.mk
$(MAKE) -f system.mk KEYDEF=$(KEYDEF) mkkey
--- End Message ---