svn commit: r561106 - in head/math/mumps: . files

Thierry Thomas thierry at FreeBSD.org
Sun Jan 10 19:36:32 UTC 2021


Author: thierry
Date: Sun Jan 10 19:36:31 2021
New Revision: 561106
URL: https://svnweb.freebsd.org/changeset/ports/561106

Log:
  Fix a fatal Fortran error (invalid unit number).
  
  Submitted by:	Stephen Hickmott <stephen (at) featplus.co.uk>

Added:
  head/math/mumps/files/patch-src_dana__aux.F   (contents, props changed)
Modified:
  head/math/mumps/Makefile

Modified: head/math/mumps/Makefile
==============================================================================
--- head/math/mumps/Makefile	Sun Jan 10 19:32:23 2021	(r561105)
+++ head/math/mumps/Makefile	Sun Jan 10 19:36:31 2021	(r561106)
@@ -3,7 +3,7 @@
 
 PORTNAME=	mumps
 DISTVERSION=	5.1.2-aster7
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	math
 PKGNAMESUFFIX=	-edf
 

Added: head/math/mumps/files/patch-src_dana__aux.F
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/mumps/files/patch-src_dana__aux.F	Sun Jan 10 19:36:31 2021	(r561106)
@@ -0,0 +1,11 @@
+--- src/dana_aux.F.orig	2020-10-23 09:16:48 UTC
++++ src/dana_aux.F
+@@ -3008,7 +3008,7 @@ C
+      &  write(MPG,'(A,1I5)') 
+      &  ' Average density of rows/columns =', AvgDens
+         IF (MP.GT.0 .AND. MPG.NE.MP.AND.(ICNTL(4).GE.2))
+-     &  write(MPG,'(A,1I5)') 
++     &  write(MP,'(A,1I5)') 
+      &  ' Average density of rows/columns =', AvgDens
+       RETURN
+ 99999 FORMAT (/'*** Warning message from analysis routine ***')


More information about the svn-ports-head mailing list