tags 917203 + pending
thanks
I've uploaded libmcrypt 2.5.8-3.4 to DELAYED/5:
libmcrypt (2.5.8-3.4) unstable; urgency=medium
* Non-maintainer upload.
* Fix FTBFS on at least two architectures due to test failures in the
"enigma". Thanks to Göran Weinholt (weinholt) for the patch.
(Closes: #917203)
* Update Vcs-{Git,Browser} to point to salsa.debian.org.
The full debdiff is attached.
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
diffstat for libmcrypt_2.5.8-3.3 libmcrypt_2.5.8-3.4
libmcrypt-2.5.8/debian/changelog | 10 ++++++++++
libmcrypt-2.5.8/debian/control | 4 ++--
modules/algorithms/enigma.h | 10 +++++-----
3 files changed, 17 insertions(+), 7 deletions(-)
diff -u libmcrypt-2.5.8/debian/changelog libmcrypt-2.5.8/debian/changelog
--- libmcrypt-2.5.8/debian/changelog
+++ libmcrypt-2.5.8/debian/changelog
@@ -1,3 +1,13 @@
+libmcrypt (2.5.8-3.4) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS on at least two architectures due to test failures in the
+ "enigma". Thanks to Göran Weinholt (weinholt) for the patch.
+ (Closes: #917203)
+ * Update Vcs-{Git,Browser} to point to salsa.debian.org.
+
+ -- Chris Lamb <[email protected]> Sun, 07 Apr 2019 14:38:10 +0200
+
libmcrypt (2.5.8-3.3) unstable; urgency=low
* Non-maintainer upload.
diff -u libmcrypt-2.5.8/debian/control libmcrypt-2.5.8/debian/control
--- libmcrypt-2.5.8/debian/control
+++ libmcrypt-2.5.8/debian/control
@@ -3,8 +3,8 @@
Priority: optional
Maintainer: RISKO Gergely <[email protected]>
Build-Depends: debhelper (>= 7.0.50), dh-autoreconf, libltdl-dev
-Vcs-Browser: http://git.debian.org/?p=collab-maint/libmcrypt.git;a=summary
-Vcs-Git: git://git.debian.org/collab-maint/libmcrypt.git
+Vcs-Browser: http://salsa.debian.org/debian/libmcrypt
+Vcs-Git: http://salsa.debian.org/debian/libmcrypt.git
Homepage: http://mcrypt.sourceforge.net/
Standards-Version: 3.8.1
--- libmcrypt-2.5.8.orig/modules/algorithms/enigma.h
+++ libmcrypt-2.5.8/modules/algorithms/enigma.h
@@ -3,11 +3,11 @@
#define MASK 0377
typedef struct crypt_key {
- char t1[ROTORSZ];
- char t2[ROTORSZ];
- char t3[ROTORSZ];
- char deck[ROTORSZ];
- char cbuf[13];
+ signed char t1[ROTORSZ];
+ signed char t2[ROTORSZ];
+ signed char t3[ROTORSZ];
+ signed char deck[ROTORSZ];
+ signed char cbuf[13];
int n1, n2, nr1, nr2;
} CRYPT_KEY;