Package: release.debian.org Severity: normal Tags: buster User: release.debian....@packages.debian.org Usertags: pu X-Debbugs-Cc: Vincent Legout <vleg...@debian.org>
* Add upstream fix for segfault on engine selection, thanks to Eric Cooper and Bernhard Übelacker. (Closes: #962627) The only difference between the package in buster and the package in bullseye/bookworm was a missing crash fix.
diff -Nru eboard-1.1.3/debian/changelog eboard-1.1.3/debian/changelog --- eboard-1.1.3/debian/changelog 2019-05-17 16:17:10.000000000 +0300 +++ eboard-1.1.3/debian/changelog 2022-08-27 23:55:52.000000000 +0300 @@ -1,3 +1,18 @@ +eboard (1.1.3-0.4~deb10u1) buster; urgency=medium + + * Non-maintainer upload. + * Rebuild for buster. + + -- Adrian Bunk <b...@debian.org> Sat, 27 Aug 2022 23:55:52 +0300 + +eboard (1.1.3-0.4) unstable; urgency=medium + + * Non-maintainer upload. + * Add upstream fix for segfault on engine selection, + thanks to Eric Cooper and Bernhard Übelacker. (Closes: #962627) + + -- Adrian Bunk <b...@debian.org> Sat, 17 Jul 2021 21:48:28 +0300 + eboard (1.1.3-0.3) unstable; urgency=medium [ Gianfranco Costamagna ] diff -Nru eboard-1.1.3/debian/patches/0001-https-bugs.launchpad.net-ubuntu-source-eboard-bug-13.patch eboard-1.1.3/debian/patches/0001-https-bugs.launchpad.net-ubuntu-source-eboard-bug-13.patch --- eboard-1.1.3/debian/patches/0001-https-bugs.launchpad.net-ubuntu-source-eboard-bug-13.patch 1970-01-01 02:00:00.000000000 +0200 +++ eboard-1.1.3/debian/patches/0001-https-bugs.launchpad.net-ubuntu-source-eboard-bug-13.patch 2021-07-17 21:48:09.000000000 +0300 @@ -0,0 +1,21 @@ +From ed33049aff2cefd7508bcda8ab738b8ec871c948 Mon Sep 17 00:00:00 2001 +From: Christian Palazzo <i...@christianpalazzo.org> +Date: Thu, 30 Apr 2020 00:43:21 +0200 +Subject: https://bugs.launchpad.net/ubuntu/+source/eboard/+bug/1306419 + +diff --git a/proto_xboard.cc b/proto_xboard.cc +index ba48aa1..edabe1b 100644 +--- a/proto_xboard.cc ++++ b/proto_xboard.cc +@@ -1083,7 +1083,7 @@ void CraftyProtocol::readDialog() { + snprintf(EngineCommandLine,512,"crafty bookpath=%s logpath=%s tbpath=%s", + BookPath,LogPath,LogPath); + if (!global.env.Home.empty()) +- snprintf(EngineRunDir,512,"%s/.eboard/craftylog",global.env.Home.c_str()); ++ snprintf(EngineRunDir,256,"%s/.eboard/craftylog",global.env.Home.c_str()); + else + strcpy(EngineRunDir,"/tmp"); + +-- +2.20.1 + diff -Nru eboard-1.1.3/debian/patches/series eboard-1.1.3/debian/patches/series --- eboard-1.1.3/debian/patches/series 2019-05-17 16:16:10.000000000 +0300 +++ eboard-1.1.3/debian/patches/series 2021-07-17 21:48:28.000000000 +0300 @@ -2,3 +2,4 @@ hungarian-translation.patch 90_respect_deb_build_options.patch ld-as-needed.patch +0001-https-bugs.launchpad.net-ubuntu-source-eboard-bug-13.patch