[med-svn] r20653 - in trunk/packages/raster3d/trunk/debian: . patches
Andreas Tille
tille at moszumanska.debian.org
Sat Dec 5 22:59:19 UTC 2015
Author: tille
Date: 2015-12-05 22:59:18 +0000 (Sat, 05 Dec 2015)
New Revision: 20653
Added:
trunk/packages/raster3d/trunk/debian/patches/fix_bashism.patch
Modified:
trunk/packages/raster3d/trunk/debian/changelog
trunk/packages/raster3d/trunk/debian/control
trunk/packages/raster3d/trunk/debian/patches/series
Log:
Fix bashism
Modified: trunk/packages/raster3d/trunk/debian/changelog
===================================================================
--- trunk/packages/raster3d/trunk/debian/changelog 2015-12-05 22:48:13 UTC (rev 20652)
+++ trunk/packages/raster3d/trunk/debian/changelog 2015-12-05 22:59:18 UTC (rev 20653)
@@ -1,12 +1,17 @@
-raster3d (3.0-3-2) UNRELEASED; urgency=medium
+raster3d (3.0-3-2) unstable; urgency=medium
[ Jérémy Bobbio ]
* Make the build reproducible:
- Stop recording user and group when creating diffs.tar.
Closes: #775810
- -- Andreas Tille <tille at debian.org> Tue, 20 Jan 2015 13:23:55 +0100
+ [ Andreas Tille ]
+ * Fix bashism
+ Closes: #772359
+ * cme fix dpkg-control
+ -- Andreas Tille <tille at debian.org> Sat, 05 Dec 2015 23:52:57 +0100
+
raster3d (3.0-3-1) unstable; urgency=medium
* New upstream version
Modified: trunk/packages/raster3d/trunk/debian/control
===================================================================
--- trunk/packages/raster3d/trunk/debian/control 2015-12-05 22:48:13 UTC (rev 20652)
+++ trunk/packages/raster3d/trunk/debian/control 2015-12-05 22:59:18 UTC (rev 20653)
@@ -9,7 +9,7 @@
libjpeg-dev,
libpng-dev,
libtiff-dev
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/raster3d/trunk/
Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/raster3d/trunk/
Homepage: http://www.bmsc.washington.edu/raster3d/raster3d.html
Added: trunk/packages/raster3d/trunk/debian/patches/fix_bashism.patch
===================================================================
--- trunk/packages/raster3d/trunk/debian/patches/fix_bashism.patch (rev 0)
+++ trunk/packages/raster3d/trunk/debian/patches/fix_bashism.patch 2015-12-05 22:59:18 UTC (rev 20653)
@@ -0,0 +1,40 @@
+--- a/label3d
++++ b/label3d
+@@ -63,7 +63,7 @@ else
+ echo "label3d version 2.7a"
+ echo "unrecognized option: $option" 1>&2
+ echo "Usage: label3d [-tiff [out.tiff]] [-png [out.png]] < in.r3d > outfile"
+- exit -1
++ exit 1
+ fi
+ fi
+ previous="$option"
+@@ -94,7 +94,7 @@ render -labels ${tmp}_label3d.ps -fontsc
+ if [ ! -e ${tmp}_render.${img} ]; then
+ echo "label3d: could not find output ${tmp}_render.${img} from render" 1>&2
+ rm -f ${tmp}_*
+- exit -1
++ exit 1
+ fi
+ if [ ! -e ${tmp}_label3d.ps ]; then
+ cat ${tmp}_render.${img}
+@@ -113,7 +113,7 @@ then
+ else
+ echo "label3d: GhostScript error" 1>&2
+ rm -f ${tmp}_*
+- exit -1
++ exit 1
+ fi
+
+ #
+--- a/stereo3d
++++ b/stereo3d
+@@ -97,7 +97,7 @@ then
+ echo "stereo3d: normal3d seems to be OK" 1>&2
+ else
+ echo "stereo3d: normal3d failed" 1>&2
+- exit -1
++ exit 1
+ fi
+
+ echo "@${tmp}_stereo3d.tmp" >> ${tmp}_left.r3d
Modified: trunk/packages/raster3d/trunk/debian/patches/series
===================================================================
--- trunk/packages/raster3d/trunk/debian/patches/series 2015-12-05 22:48:13 UTC (rev 20652)
+++ trunk/packages/raster3d/trunk/debian/patches/series 2015-12-05 22:59:18 UTC (rev 20653)
@@ -17,3 +17,4 @@
render.man.diff
rods.man.diff
+fix_bashism.patch
More information about the debian-med-commit
mailing list