summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Diehl2021-09-28 16:40:33 +0200
committerMartin Diehl2021-09-28 16:40:33 +0200
commit28b34821af4e7c9bb19187289a8da51454ff0636 (patch)
treec423097d0d22aa8180be37c0b75b223d121fbacd
parent4725598c33c377eeb6c8d3e264a461f69ec762cd (diff)
downloadaur-28b34821af4e7c9bb19187289a8da51454ff0636.tar.gz
6.1.1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD9
2 files changed, 9 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 047278699549..41e4aee26782 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,12 @@
pkgbase = scotch
pkgdesc = Software package and libraries for graph, mesh and hypergraph partitioning, static mapping, and sparse matrix block ordering. This is the all-inclusive version (MPI/serial/esmumps).
- pkgver = 6.1.0
+ pkgver = 6.1.1
pkgrel = 1
url = https://gitlab.inria.fr/scotch/scotch
arch = i686
arch = x86_64
license = custom:CeCILL-C
+ makedepends = gcc-fortran
depends = zlib
depends = openmpi
depends = bzip2
@@ -17,8 +18,7 @@ pkgbase = scotch
conflicts = scotch_esmumps
conflicts = scotch_esmumps5
options = !emptydirs
- source = https://gitlab.inria.fr/scotch/scotch/-/archive/v6.1.0/scotch-v6.1.0.tar.gz
- sha256sums = 4fe537f608f0fe39ec78807f90203f9cca1181deb16bfa93b7d4cd440e01bbd1
+ source = https://gitlab.inria.fr/scotch/scotch/-/archive/v6.1.1/scotch-v6.1.1.tar.gz
+ sha256sums = 14daf151399fc67f83fd3ff2933854f5e8d2207c7d35dd66a05660bf0bbd583c
pkgname = scotch
-
diff --git a/PKGBUILD b/PKGBUILD
index 96ff472bf398..f5045efedead 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,16 @@
pkgname=scotch
-pkgver=6.1.0
+pkgver=6.1.1
pkgrel=1
pkgdesc="Software package and libraries for graph, mesh and hypergraph partitioning, static mapping, and sparse matrix block ordering. This is the all-inclusive version (MPI/serial/esmumps)."
url="https://gitlab.inria.fr/scotch/scotch"
license=("custom:CeCILL-C")
depends=('zlib' 'openmpi' 'bzip2')
+makedepends=('gcc-fortran')
provides=('ptscotch' 'ptscotch-openmpi' 'scotch_esmumps' 'scotch_ptesmumps')
conflicts=('ptscotch-openmpi' 'scotch_esmumps' 'scotch_esmumps5')
arch=('i686' 'x86_64')
source=("https://gitlab.inria.fr/scotch/scotch/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
-sha256sums=('4fe537f608f0fe39ec78807f90203f9cca1181deb16bfa93b7d4cd440e01bbd1')
+sha256sums=('14daf151399fc67f83fd3ff2933854f5e8d2207c7d35dd66a05660bf0bbd583c')
options=(!emptydirs)
@@ -55,8 +56,8 @@ build() {
check() {
cd "${srcdir}/${pkgname}-v${pkgver}/src"
- make check LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../../lib"
- make ptcheck LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../../lib"
+ make check FC=gfortran LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../../lib"
+ make ptcheck FC=gfortran LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../../lib"
}
package() {