[med-svn] r20058 - in trunk/packages/minc/minc-tools/trunk/debian: . patches

Steven Michael Robbins smr at moszumanska.debian.org
Sun Sep 13 01:10:58 UTC 2015


Author: smr
Date: 2015-09-13 01:10:58 +0000 (Sun, 13 Sep 2015)
New Revision: 20058

Removed:
   trunk/packages/minc/minc-tools/trunk/debian/patches/acrnema-version.patch
   trunk/packages/minc/minc-tools/trunk/debian/patches/clang.patch
   trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null-voxel-loop.patch
   trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null.patch
   trunk/packages/minc/minc-tools/trunk/debian/patches/makefile.patch
   trunk/packages/minc/minc-tools/trunk/debian/patches/maxpathlen.patch
Modified:
   trunk/packages/minc/minc-tools/trunk/debian/changelog
   trunk/packages/minc/minc-tools/trunk/debian/control
   trunk/packages/minc/minc-tools/trunk/debian/patches/series
Log:
Final updates for new upstream tarball.

Modified: trunk/packages/minc/minc-tools/trunk/debian/changelog
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/changelog	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/changelog	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,10 +1,8 @@
-minc-tools (1.0.00~2015-09-03-1) UNRELEASED; urgency=medium
+minc-tools (2.3.00-1) unstable; urgency=medium
 
-  * STILL STAGING; awaiting new upstream release with corrected version number.
-  
   * New upstream release.
 
- -- Steve M. Robbins <smr at debian.org>  Thu, 03 Sep 2015 05:57:52 -0500
+ -- Steve M. Robbins <smr at debian.org>  Sat, 12 Sep 2015 19:49:48 -0500
 
 minc (2.2.00-6) unstable; urgency=medium
 

Modified: trunk/packages/minc/minc-tools/trunk/debian/control
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/control	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/control	2015-09-13 01:10:58 UTC (rev 20058)
@@ -6,6 +6,8 @@
 Priority: optional
 Build-Depends: debhelper (>= 9),
 	       cmake (>= 2.8.5),
+	       bison,
+	       flex,
 	       libminc-dev (>= 2.3),
 	       libnifti-dev,
                libnetcdf-dev,

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/acrnema-version.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/acrnema-version.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/acrnema-version.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,10 +0,0 @@
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -555,6 +555,7 @@ libvolume_io2_la_SOURCES = \
- 	volume_io/Volumes/volume_cache.c \
- 	volume_io/Volumes/volumes.c
- 
-+libacr_nema_la_LDFLAGS = -version-info 3:0:0
- libacr_nema_la_SOURCES = \
- 	conversion/Acr_nema/acr_io.c \
- 	conversion/Acr_nema/dicom_client_routines.c \

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/clang.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/clang.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/clang.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,17 +0,0 @@
-Author: Alexander Ovchinnikov <sanek23994 at gmail.com>
-Last-Changed: Sun, 16 Mar 2014 09:11:39 -0400
-Bugs-Debian: https://bugs.debian.org/741744
-Forwarded-Upstream: No
-Description: Build with clang compiler
-
---- a/libsrc2/hyper.c
-+++ b/libsrc2/hyper.c
-@@ -766,7 +766,7 @@ miget_real_value_hyperslab(mihandle_t vo
-             miicv_setint(icv, MI_ICV_DO_DIM_CONV, TRUE);
-           break;
-         default:
--          return;
-+          return (MI_ERROR);
-         }
-       }
-     result = miicv_attach(icv, file_id, var_id);

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null-voxel-loop.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null-voxel-loop.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null-voxel-loop.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,22 +0,0 @@
-Description: Fix crash when input file cannot be expanded
- This patch fixes a segmentation fault that occurs when an input
- file has a filename extension that indicates compression (e.g.
- ".bz2"), but doesn't really contain content in the corresponding
- compression format. In this case exit with an error message instead
- of just crashing.
-Author: Martin Steghöfer <martin at steghoefer.eu>
-Bug-Debian: http://bugs.debian.org/716511
-
---- a/libsrc/voxel_loop.c
-+++ b/libsrc/voxel_loop.c
-@@ -2354,6 +2354,10 @@ PRIVATE int get_input_mincid(Loopfile_In
-       filename = miexpand_file(loopfile_info->input_files[file_num], NULL,
-                                loopfile_info->headers_only,
-                                &created_tempfile);
-+      if (!filename) {
-+         fprintf(stderr, "Could not expand file \"%s\"!\n", loopfile_info->input_files[file_num]);
-+         exit(EXIT_FAILURE);
-+      }
-       loopfile_info->input_mincid[index] = miopen(filename, NC_NOWRITE);
-       if (created_tempfile) {
-          (void) remove(filename);

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/fix-crash-filename-null.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,22 +0,0 @@
-Description: Fix crash in mincconcat when header cannot be expanded
- This patch fixes a segmentation fault that occurs when an input
- file has a filename extension that indicates compression (e.g.
- ".bz2"), but doesn't really contain content in the corresponding
- compression format. In this case exit with an error message instead
- of just crashing.
-Author: Martin Steghöfer <martin at steghoefer.eu>
-Bug-Debian: http://bugs.debian.org/716616
-
---- a/progs/mincconcat/mincconcat.c
-+++ b/progs/mincconcat/mincconcat.c
-@@ -701,6 +701,10 @@ static void get_concat_dim_name(Concat_I
- 
-    /* Expand the file header and open the file */
-    filename = miexpand_file(first_filename, NULL, TRUE, &created_tempfile);
-+   if (!filename) {
-+      fprintf(stderr, "Could not expand file \"%s\"!\n", first_filename);
-+      exit(EXIT_FAILURE);
-+   }
-    input_mincid = miopen(filename, NC_NOWRITE);
-    if (created_tempfile) {
-       (void) remove(filename);

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/makefile.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/makefile.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/makefile.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,56 +0,0 @@
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -274,30 +274,30 @@ m4_files = \
- 	m4/smr_WITH_BUILD_PATH.m4
- 
- ezMINC_files = \
--	ezminc/examples/volume_msq_dist.cpp
--	ezminc/examples/CMakeLists.txt
--	ezminc/examples/fuzzy_volume_similarity.cpp
--	ezminc/examples/trilinear_resample.cpp
--	ezminc/examples/volume_avg.cpp
--	ezminc/examples/volume_gtc_similarity.cpp
--	ezminc/examples/volume_similarity.cpp
--	ezminc/minc_1_simple_rw.cpp
--	ezminc/minc_1_simple_rw.h
--	ezminc/minc_io_4d_volume.h
--	ezminc/minc_io_fixed_vector.h
--	ezminc/minc_io_simple_volume.h
--	ezminc/tests/minc_rw_test2.cpp
--	ezminc/tests/minc_rw_test_4d.cpp
--	ezminc/tests/minc_rw_test_simple.cpp
--	ezminc/tests/CMakeLists.txt
--	ezminc/tests/ezminc_rw_test.cpp
--	ezminc/tests/ezminc_stats.cpp
--	ezminc/minc_1_simple.h
--	ezminc/CMakeLists.txt
--	ezminc/minc_1_rw.cpp
--	ezminc/minc_1_rw.h
-+	ezminc/examples/volume_msq_dist.cpp \
-+	ezminc/examples/CMakeLists.txt \
-+	ezminc/examples/fuzzy_volume_similarity.cpp \
-+	ezminc/examples/trilinear_resample.cpp \
-+	ezminc/examples/volume_avg.cpp \
-+	ezminc/examples/volume_gtc_similarity.cpp \
-+	ezminc/examples/volume_similarity.cpp \
-+	ezminc/minc_1_simple_rw.cpp \
-+	ezminc/minc_1_simple_rw.h \
-+	ezminc/minc_io_4d_volume.h \
-+	ezminc/minc_io_fixed_vector.h \
-+	ezminc/minc_io_simple_volume.h \
-+	ezminc/tests/minc_rw_test2.cpp \
-+	ezminc/tests/minc_rw_test_4d.cpp \
-+	ezminc/tests/minc_rw_test_simple.cpp \
-+	ezminc/tests/CMakeLists.txt \
-+	ezminc/tests/ezminc_rw_test.cpp \
-+	ezminc/tests/ezminc_stats.cpp \
-+	ezminc/minc_1_simple.h \
-+	ezminc/CMakeLists.txt \
-+	ezminc/minc_1_rw.cpp \
-+	ezminc/minc_1_rw.h \
- 	ezminc/minc_io_exceptions.h
--	
-+
- voxeltoworld_SOURCES = progs/coordinates/voxeltoworld.c
- 
- worldtovoxel_SOURCES = progs/coordinates/worldtovoxel.c

Deleted: trunk/packages/minc/minc-tools/trunk/debian/patches/maxpathlen.patch
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/maxpathlen.patch	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/maxpathlen.patch	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,14 +0,0 @@
---- a/progs/mincmorph/mincmorph.c
-+++ b/progs/mincmorph/mincmorph.c
-@@ -30,6 +30,11 @@
- #define INTERNAL_PREC NC_FLOAT         /* should be NC_FLOAT or NC_DOUBLE */
- #define DEF_DOUBLE -DBL_MAX
- 
-+#ifndef MAXPATHLEN
-+#define MAXPATHLEN 1024
-+#endif
-+
-+
- /* function prototypes */
- char    *get_real_from_string(char *string, double *value);
- char    *get_string_from_string(char *string, char **value);

Modified: trunk/packages/minc/minc-tools/trunk/debian/patches/series
===================================================================
--- trunk/packages/minc/minc-tools/trunk/debian/patches/series	2015-09-13 00:38:41 UTC (rev 20057)
+++ trunk/packages/minc/minc-tools/trunk/debian/patches/series	2015-09-13 01:10:58 UTC (rev 20058)
@@ -1,7 +1,3 @@
-maxpathlen.patch
 01_mincedit-sensible-viewer.diff
 build-with-libnifti
-#pod_fix.diff
-#clang.patch
-#fix-crash-filename-null-voxel-loop.patch
-#fix-crash-filename-null.patch
+pod_fix.diff




More information about the debian-med-commit mailing list