[med-svn] r18157 - in trunk/packages/imagevis3d/trunk/debian: . patches

Mathieu Malaterre malat at moszumanska.debian.org
Tue Sep 30 09:08:51 UTC 2014


Author: malat
Date: 2014-09-30 09:08:50 +0000 (Tue, 30 Sep 2014)
New Revision: 18157

Added:
   trunk/packages/imagevis3d/trunk/debian/patches/lz4.patch
Modified:
   trunk/packages/imagevis3d/trunk/debian/changelog
   trunk/packages/imagevis3d/trunk/debian/patches/series
Log:
new upload

Modified: trunk/packages/imagevis3d/trunk/debian/changelog
===================================================================
--- trunk/packages/imagevis3d/trunk/debian/changelog	2014-09-30 09:01:36 UTC (rev 18156)
+++ trunk/packages/imagevis3d/trunk/debian/changelog	2014-09-30 09:08:50 UTC (rev 18157)
@@ -1,3 +1,9 @@
+imagevis3d (3.1.0-4) unstable; urgency=low
+
+  * Handle obsolete symbol in liblz4. Closes: #763246
+
+ -- Mathieu Malaterre <malat at debian.org>  Tue, 30 Sep 2014 11:05:09 +0200
+
 imagevis3d (3.1.0-3) unstable; urgency=low
 
   * Fix compilation on sparc. Closes: #751374

Added: trunk/packages/imagevis3d/trunk/debian/patches/lz4.patch
===================================================================
--- trunk/packages/imagevis3d/trunk/debian/patches/lz4.patch	                        (rev 0)
+++ trunk/packages/imagevis3d/trunk/debian/patches/lz4.patch	2014-09-30 09:08:50 UTC (rev 18157)
@@ -0,0 +1,24 @@
+Description: FTBFS: IO/UVF/ExtendedOctree/Lz4Compression.cpp:53:44: error: 'LZ4_uncompress' was not declared in this scope
+Forwarded: not-needed
+Author: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
+Bug-Debian: http://bugs.debian.org/763246
+Reviewed-by: Mathieu Malaterre <malat at debian.org>
+
+Index: imagevis3d-3.1.0/Tuvok/IO/UVF/ExtendedOctree/Lz4Compression.cpp
+===================================================================
+--- imagevis3d-3.1.0.orig/Tuvok/IO/UVF/ExtendedOctree/Lz4Compression.cpp	2014-04-07 10:09:36.000000000 +0200
++++ imagevis3d-3.1.0/Tuvok/IO/UVF/ExtendedOctree/Lz4Compression.cpp	2014-09-30 11:06:04.941864315 +0200
+@@ -48,11 +48,11 @@
+     throw std::runtime_error("Expected output data too big for LZ4 (max ~1.9GB)");
+ 
+   int const outputSize = static_cast<int>(uncompressedBytes);
+-  int readBytes = LZ4_uncompress((const char*)src.get(),
++  int readBytes = LZ4_decompress_fast((const char*)src.get(),
+                                  (char*)dst.get(),
+                                  outputSize);
+   if (readBytes < 0)
+-    throw std::runtime_error(std::string("LZ4_uncompress failed: faulty input "
++    throw std::runtime_error(std::string("LZ4_decompress_fast failed: faulty input "
+                              "byte at position ") +
+                              SysTools::ToString(-readBytes));
+ }

Modified: trunk/packages/imagevis3d/trunk/debian/patches/series
===================================================================
--- trunk/packages/imagevis3d/trunk/debian/patches/series	2014-09-30 09:01:36 UTC (rev 18156)
+++ trunk/packages/imagevis3d/trunk/debian/patches/series	2014-09-30 09:08:50 UTC (rev 18157)
@@ -10,3 +10,4 @@
 fopenmp.patch
 thirdparty.patch
 fixsparc.patch
+lz4.patch




More information about the debian-med-commit mailing list