Control: tags 954711 + pending Dear maintainer,
I've prepared an NMU for sight (versioned as 19.0.0-6.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. cu Adrian
diff -Nru sight-19.0.0/debian/changelog sight-19.0.0/debian/changelog --- sight-19.0.0/debian/changelog 2020-04-25 15:47:51.000000000 +0300 +++ sight-19.0.0/debian/changelog 2020-06-15 18:20:23.000000000 +0300 @@ -1,3 +1,11 @@ +sight (19.0.0-6.1) unstable; urgency=high + + * Non-maintainer upload. + * Add patch from Giovanni Mascellani for FTBFS with Boost 1.71. + (Closes: #954711) + + -- Adrian Bunk <b...@debian.org> Mon, 15 Jun 2020 18:20:23 +0300 + sight (19.0.0-6) unstable; urgency=medium [ Etienne Mollier ] diff -Nru sight-19.0.0/debian/patches/0007-Fix-FTBFS-with-Boost-1.71.patch sight-19.0.0/debian/patches/0007-Fix-FTBFS-with-Boost-1.71.patch --- sight-19.0.0/debian/patches/0007-Fix-FTBFS-with-Boost-1.71.patch 1970-01-01 02:00:00.000000000 +0200 +++ sight-19.0.0/debian/patches/0007-Fix-FTBFS-with-Boost-1.71.patch 2020-06-15 18:20:20.000000000 +0300 @@ -0,0 +1,34 @@ +From: Giovanni Mascellani <g...@debian.org> +Date: Sun, 22 Mar 2020 14:34:26 +0100 +Subject: Fix FTBFS with Boost 1.71. + +Apparently CMake expects library names to be lowercase. +--- + Bundles/ui/guiQml/CMakeLists.txt | 2 +- + Bundles/ui/guiQt/CMakeLists.txt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Bundles/ui/guiQml/CMakeLists.txt b/Bundles/ui/guiQml/CMakeLists.txt +index 42c008e..7f9c228 100644 +--- a/Bundles/ui/guiQml/CMakeLists.txt ++++ b/Bundles/ui/guiQml/CMakeLists.txt +@@ -1,6 +1,6 @@ + fwLoadProperties() + +-find_package(Boost QUIET COMPONENTS Regex REQUIRED) ++find_package(Boost QUIET COMPONENTS regex REQUIRED) + find_package(Qt5 QUIET COMPONENTS Core Gui Quick Qml QuickControls2 REQUIRED) + + +diff --git a/Bundles/ui/guiQt/CMakeLists.txt b/Bundles/ui/guiQt/CMakeLists.txt +index 3aff5d1..ff52b89 100644 +--- a/Bundles/ui/guiQt/CMakeLists.txt ++++ b/Bundles/ui/guiQt/CMakeLists.txt +@@ -1,6 +1,6 @@ + fwLoadProperties() + +-find_package(Boost QUIET COMPONENTS Regex REQUIRED) ++find_package(Boost QUIET COMPONENTS regex REQUIRED) + find_package(Qt5 QUIET COMPONENTS Core Gui Widgets REQUIRED) + + diff -Nru sight-19.0.0/debian/patches/series sight-19.0.0/debian/patches/series --- sight-19.0.0/debian/patches/series 2020-04-25 15:47:51.000000000 +0300 +++ sight-19.0.0/debian/patches/series 2020-06-15 18:20:20.000000000 +0300 @@ -4,3 +4,4 @@ fix_launcher_library_path.patch fix_dcmtk_scp_cfg.patch revert_qVTK_widget.patch +0007-Fix-FTBFS-with-Boost-1.71.patch