Skip to content
Commits on Source (6)
insighttoolkit4 (4.13.2-dfsg1-2) UNRELEASED; urgency=medium
insighttoolkit4 (4.13.2-dfsg1-3) unstable; urgency=medium
* d/rules: Fix lintian file generation
* d/control: add dh-python to build-deps
-- Gert Wollny <gewo@debian.org> Mon, 18 Nov 2019 09:25:17 +0100
insighttoolkit4 (4.13.2-dfsg1-2) unstable; urgency=medium
* d/control: Switch python package name to python3
* d/*: Make it compile with gcc-9, Closes: #944179
* d/p/remove..: Add patch to pass all gcc version tests
-- Gert Wollny <gewo@debian.org> Mon, 11 Nov 2019 19:23:04 +0100
-- Gert Wollny <gewo@debian.org> Sun, 17 Nov 2019 10:03:19 +0100
insighttoolkit4 (4.13.2-dfsg1-1) unstable; urgency=medium
......
......@@ -7,6 +7,7 @@ Uploaders: Steve M. Robbins <smr@debian.org>,
Gert Wollny <gewo@debian.org>
Build-Depends: debhelper (>= 9),
cmake (>= 2.8.9),
dh-python,
swig3.0,
castxml (>= 0.2-3),
zlib1g-dev (>= 1.2.2),
......
......@@ -67,12 +67,13 @@
#if defined(_WIN32) || defined(WIN32)
--- a/Modules/ThirdParty/VNL/src/vxl/vcl/tests/test_preprocessor.cxx
+++ b/Modules/ThirdParty/VNL/src/vxl/vcl/tests/test_preprocessor.cxx
@@ -64,6 +64,11 @@
@@ -64,6 +64,12 @@
++minor_count;
#endif
+#ifdef VCL_GCC_73
+ ++compiler_count;
+ ++major_count;
+ ++minor_count;
+#endif
+
......
......@@ -107,7 +107,7 @@ override_dh_auto_test:
override_dh_lintian:
echo "#ITK embeds various patched libraries" > debian/$(pkg_lib).lintian-overrides
echo "$(pkg_lib): embedded-library" > debian/$(pkg_lib).lintian-overrides
echo "$(pkg_lib): package-name-doesnt-match-sonames" > debian/$(pkg_lib).lintian-overrides
echo "$(pkg_lib): package-name-doesnt-match-sonames" >> debian/$(pkg_lib).lintian-overrides
dh_lintian
override_dh_install-indep:
......