[med-svn] [Git][med-team/raster3d][master] 7 commits: New upstream version 3.0-4

Andreas Tille gitlab at salsa.debian.org
Fri Jul 12 22:55:31 BST 2019



Andreas Tille pushed to branch master at Debian Med / raster3d


Commits:
bb4b122f by Andreas Tille at 2019-07-12T20:06:27Z
New upstream version 3.0-4
- - - - -
f5f66363 by Andreas Tille at 2019-07-12T20:06:37Z
Update upstream source from tag 'upstream/3.0-4'

Update to upstream version '3.0-4'
with Debian dir 6560227275a2633bafd052920ecdc4f926e93edb
- - - - -
b1d4c1b9 by Andreas Tille at 2019-07-12T20:06:37Z
New upstream version

- - - - -
a99a1395 by Andreas Tille at 2019-07-12T20:06:37Z
debhelper 12

- - - - -
e93d3b55 by Andreas Tille at 2019-07-12T20:06:53Z
Standards-Version: 4.4.0

- - - - -
a37106f0 by Andreas Tille at 2019-07-12T21:34:49Z
No override for debian-watch-uses-insecure-uri

- - - - -
58a12cef by Andreas Tille at 2019-07-12T21:37:50Z
Upload to unstable

- - - - -


11 changed files:

- CHANGELOG
- INSTALL
- README
- VERSION
- VERSION.incl
- avs2ps.c
- debian/changelog
- debian/compat
- debian/control
- − debian/source/lintian-overrides
- local.c


Changes:

=====================================
CHANGELOG
=====================================
@@ -1,3 +1,5 @@
+21-Jan-2019	Package 3.0-4
+21-Jan-2019	suppress compiler warnings for unused variables
 29-Mar-2014	Package (somewhat belatedly) 3.0-3
 01-May-2012	local.c: only #include <in.h> if NETWORK_BYTEORDER
 		Makefile: but don't define NETWORK_BYTEORDER for linux


=====================================
INSTALL
=====================================
@@ -7,7 +7,7 @@ shared by all platforms.
 User configurable options are contained in two files:
    	Makefile.template	select or deselect TIFF support, etc
 
-1) Make sure the development version of any necessaary support libraries are
+1) Make sure the development version of any necessary support libraries are
    installed.  This primarily means libgd, which is used to produce png and jpeg
    files. If you want to build in support for direct tiff output then you also
    need libtiff.


=====================================
README
=====================================
@@ -1,9 +1,15 @@
-Most recent change:	  26-Mar-2011
+Most recent change:	  21-Jan-2019
 
-The file Raster3D_3.0-2.tar.gz contains the full source distribution for
+The file Raster3D_3.0-4.tar.gz contains the full source distribution for
 version 3.0 of Raster3D.
 
   See CHANGELOG for a history of changes to the package.
+  Basically nothing has changed since verison 3.0-3 (2014) except that I 
+  tried to suppress some harmless compiler warnings.
+
+  Note: The programs from Raster3D version 3.0-3 are included in the
+  CCP4 crystallography suite.  You might find it easier to use that
+  pre-built version.
 
 - In a nutshell, the installation procedure is:
 


=====================================
VERSION
=====================================
@@ -1 +1 @@
-VERSION = "3.0-3"
+VERSION = "3.0-4"


=====================================
VERSION.incl
=====================================
@@ -1,2 +1,2 @@
 	CHARACTER*8 VERSION
-	PARAMETER  (VERSION='V3.0.3  ')
+	PARAMETER  (VERSION='V3.0.4  ')


=====================================
avs2ps.c
=====================================
@@ -51,6 +51,8 @@ int	ny, nx, nb;
 float	x_origin, y_origin, x_scale, y_scale;
 time_t	date;
 
+(void)alpha;
+
 /* Command line options */
     for (i=1; i<argc; i++)
 	{


=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+raster3d (3.0-4-1) unstable; urgency=medium
+
+  * New upstream version
+  * debhelper 12
+  * Standards-Version: 4.4.0
+  * No override for debian-watch-uses-insecure-uri
+
+ -- Andreas Tille <tille at debian.org>  Fri, 12 Jul 2019 23:35:22 +0200
+
 raster3d (3.0-3-5) unstable; urgency=medium
 
   [ Piper McCorkle ]


=====================================
debian/compat
=====================================
@@ -1 +1 @@
-11
+12


=====================================
debian/control
=====================================
@@ -3,13 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.
 Uploaders: Andreas Tille <tille at debian.org>
 Section: science
 Priority: optional
-Build-Depends: debhelper (>= 11~),
+Build-Depends: debhelper (>= 12~),
                gfortran,
                libgd-dev,
                libjpeg-dev,
                libpng-dev,
                libtiff-dev
-Standards-Version: 4.2.1
+Standards-Version: 4.4.0
 Vcs-Browser: https://salsa.debian.org/med-team/raster3d
 Vcs-Git: https://salsa.debian.org/med-team/raster3d.git
 Homepage: http://www.bmsc.washington.edu/raster3d/raster3d.html


=====================================
debian/source/lintian-overrides deleted
=====================================
@@ -1,2 +0,0 @@
-# Upstream only supports http
-raster3d source: debian-watch-uses-insecure-uri line*


=====================================
local.c
=====================================
@@ -697,6 +697,10 @@ int addlabel_(fontname, fontsize, fontscale, fontalign, xp, yp, zp, red, grn, bl
 	out_size = trimwhitespace(instring, 128, labelstring);
 	string = instring;
 
+	(void)out_size;		/* prevents compiler complaints */
+	(void)last_z;		/* about unused variables */
+	(void)justify;
+
 	/* Allocate colours */
 	/* FIXME: how to pass non-zero alpha value? */
 	font_color = gdImageColorAllocateAlpha(label_img, 



View it on GitLab: https://salsa.debian.org/med-team/raster3d/compare/64c4622f33dafd4a8fe2b5fc790b04733ad17d11...58a12cef6203a3f49cba11874849cfbbb7304d54

-- 
View it on GitLab: https://salsa.debian.org/med-team/raster3d/compare/64c4622f33dafd4a8fe2b5fc790b04733ad17d11...58a12cef6203a3f49cba11874849cfbbb7304d54
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190712/f4cf1708/attachment-0001.html>


More information about the debian-med-commit mailing list