[med-svn] [Git][med-team/raster3d][upstream] New upstream version 3.0-7
Andreas Tille
gitlab at salsa.debian.org
Wed Sep 30 10:04:53 BST 2020
Andreas Tille pushed to branch upstream at Debian Med / raster3d
Commits:
b9349df7 by Andreas Tille at 2020-09-30T09:13:27+02:00
New upstream version 3.0-7
- - - - -
5 changed files:
- CHANGELOG
- Makefile
- README
- VERSION
- parse.f
Changes:
=====================================
CHANGELOG
=====================================
@@ -1,3 +1,10 @@
+29-Sep-2020 Package 3.0-7
+13-May-2020 -std=legacy seems to reduce pedantry from gfortran 10.1
+10-May-2020 gfortran 10.1 is insanely picky - must wrap hex constants in INT(...)
+08-May-2020 Package 3.0-6
+08-May-2020 Change flag for hexadecimal constant from X'000 to Z'000
+08-May-2020 recent gfortran has inverted the meaning of compiler flag -Wtabs (?!)
+12-Nov-2019 Package 3.0-5
12-Nov-2019 rods.f: gfortran 8.3 requires decimal point after floating 0
12-Nov-2019 import into git
21-Jan-2019 Package 3.0-4
=====================================
Makefile
=====================================
@@ -52,7 +52,7 @@ linux:
@echo OS = linux >> Makefile.incl
@echo CC = gcc >> Makefile.incl
@echo CFLAGS = -g -Wall -Dgfortran >> Makefile.incl
- @echo FC = gfortran >> Makefile.incl
+ @echo FC = gfortran -std=legacy >> Makefile.incl
@echo FFLAGS = -g -w -O3 -Wno-tabs -ffixed-line-length-132 >> Makefile.incl
@echo RM = /bin/rm -f >> Makefile.incl
@echo OSDEFS = -DLINUX -DNETWORKBYTEORDER >> Makefile.incl
=====================================
README
=====================================
@@ -1,6 +1,6 @@
-Most recent change: 06-May-2020
+Most recent change: 29-Sep-2020
-The file Raster3D_3.0-6.tar.gz contains the full source distribution for
+The file Raster3D_3.0-7.tar.gz contains the full source distribution for
version 3.0 of Raster3D.
See CHANGELOG for a history of changes to the package.
=====================================
VERSION
=====================================
@@ -1 +1 @@
-VERSION = "3.0-6"
+VERSION = "3.0-7"
=====================================
parse.f
=====================================
@@ -115,8 +115,8 @@ c
else if (option(1:3).eq.'-bg') then
iarg = iarg + 1
call getarg( iarg, option )
- if (option(1:5).eq.'white') xbg = Z'FFFFFF'
- if (option(1:5).eq.'black') xbg = Z'000000'
+ if (option(1:5).eq.'white') xbg = INT(Z'FFFFFF')
+ if (option(1:5).eq.'black') xbg = INT(Z'000000')
if (option(1:1).eq.'#') then
read (option(2:7),'(1Z6)') xbg
if (verbose) then
View it on GitLab: https://salsa.debian.org/med-team/raster3d/-/commit/b9349df722746a1d11888ab616f3e1c4cf4282fd
--
View it on GitLab: https://salsa.debian.org/med-team/raster3d/-/commit/b9349df722746a1d11888ab616f3e1c4cf4282fd
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/20200930/e9f5c1c2/attachment-0001.html>
More information about the debian-med-commit
mailing list