Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package ladish unblock ladish/1+dfsg0-5.1 changelog | 8 ++++++++ patches/arm64-hppa-sparc64-no-stacktrace.patch | 15 +++++++++++++++ patches/series | 1 + 3 files changed, 24 insertions(+) diff -Nru ladish-1+dfsg0/debian/changelog ladish-1+dfsg0/debian/changelog --- ladish-1+dfsg0/debian/changelog 2014-09-17 11:13:14.000000000 +0300 +++ ladish-1+dfsg0/debian/changelog 2017-03-20 21:36:13.000000000 +0200 @@ -1,3 +1,11 @@ +ladish (1+dfsg0-5.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add arm64, hppa and sparc64 to the architectures where stacktraces + are disabled, thanks to Helge Deller. (Closes: #762016) + + -- Adrian Bunk <b...@debian.org> Mon, 20 Mar 2017 21:36:13 +0200 + ladish (1+dfsg0-5) unstable; urgency=medium * Add patch to avoid gladish crash when DBus connection has failed. diff -Nru ladish-1+dfsg0/debian/patches/arm64-hppa-sparc64-no-stacktrace.patch ladish-1+dfsg0/debian/patches/arm64-hppa-sparc64-no-stacktrace.patch --- ladish-1+dfsg0/debian/patches/arm64-hppa-sparc64-no-stacktrace.patch 1970-01-01 02:00:00.000000000 +0200 +++ ladish-1+dfsg0/debian/patches/arm64-hppa-sparc64-no-stacktrace.patch 2017-03-20 21:36:13.000000000 +0200 @@ -0,0 +1,15 @@ +Description: Add architectures where stacktraces are disabled + Fixes FTBFS on these architectures. +Bug-Debian: https://bugs.debian.org/762016 + +--- ladish-1+dfsg0.orig/daemon/sigsegv.c ++++ ladish-1+dfsg0/daemon/sigsegv.c +@@ -59,7 +59,7 @@ char * __cxa_demangle(const char * __man + # define REGFORMAT "%x" + #endif + +-#if defined(__arm__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__) || defined (__sh__) ++#if defined(__arm__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__) || defined (__sh__) || defined (__aarch64__) || defined (__hppa__) || (defined (__sparc__) && defined (__arch64__)) + # define DISABLE_STACKTRACE + #endif + diff -Nru ladish-1+dfsg0/debian/patches/series ladish-1+dfsg0/debian/patches/series --- ladish-1+dfsg0/debian/patches/series 2014-09-17 11:09:50.000000000 +0300 +++ ladish-1+dfsg0/debian/patches/series 2017-03-20 21:36:13.000000000 +0200 @@ -4,3 +4,4 @@ 0002-new_laditools.patch eglibc-2.17.patch 0003-dont_crash_when_dbus_fail.patch +arm64-hppa-sparc64-no-stacktrace.patch