mumps
maintainer MartinDiehl
· 14 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a tarball from the project's official domain (mumps-solver.org), which is not on the whitelist but plausibly legitimate; building from official project source is normal AUR packaging behavior and poses low risk.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The source is a tarball from the project's official domain (mumps-solver.org), which is not on the whitelist but plausibly legitimate; building from official project source is normal AUR packaging behavior and poses low risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:16
source=(https://mumps-solver.org/MUMPS_${pkgver}.tar.gz
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Martin Diehl <aur@martin-diehl.net>
2
# Contributor: eDgar <eDgar |at| openmail.cc >
3
# Contributor: Michele Mocciola <mickele>
4
# Contributor: Guillaume Dollé < dolle dot guillaume at gmail dot com >
5
# Contributor: Lucas H. Gabrielli
6
pkgname=mumps
7
pkgver=5.9.1
8
pkgrel=1
9
pkgdesc='Sparse solver library using Gaussian elimination'
10
url='https://mumps-solver.org'
11
license=('custom')
12
depends=('lapack' 'openmpi' 'scotch' 'scalapack' 'metis' 'zlib' 'bzip2')
13
makedepends=('gcc-fortran')
14
conflicts=('mumps-par' 'mumps4')
15
arch=('i686' 'x86_64')
16
source=(https://mumps-solver.org/MUMPS_${pkgver}.tar.gz
17
Makefile.inc)
18
sha512sums=('1984b1d4b9b7ba4d48f90975c3ae864c1afc487ef1864e972ea7f4fdcba0ee174611f31384d2472bc9dbe5a6ccbdc3995800a13800e1e9bb1ba2426d1f93aad5'
19
'a8a6b86a0eb058d018e6bed0550780e6369d6f08341ba8d35a1353375acd46f34a4f05db082abb5ce7b8900c03dfb63d3c222d3df370101cc6030850ebbfeea0')
20
21
prepare () {
22
cd "${srcdir}/MUMPS_${pkgver}"
23
cp "${srcdir}/Makefile.inc" .
24
}
25
26
build() {
27
cd "${srcdir}/MUMPS_${pkgver}"
28
make all
29
}
30
31
check () {
32
cd "${srcdir}/MUMPS_${pkgver}/examples"
33
make all
34
# From the README (in examples)
35
MPIRUN="mpirun -np 3 --mca plm_rsh_agent sh --mca opal_warn_on_missing_libcuda 0 --oversubscribe"
36
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${srcdir}/MUMPS_${pkgver}/lib"
37
${MPIRUN} ./ssimpletest < input_simpletest_real
38
${MPIRUN} ./dsimpletest < input_simpletest_real
39
${MPIRUN} ./csimpletest < input_simpletest_cmplx
40
${MPIRUN} ./zsimpletest < input_simpletest_cmplx
41
${MPIRUN} ./c_example
42
${MPIRUN} ./multiple_arithmetics_example
43
${MPIRUN} ./ssimpletest_save_restore < input_simpletest_real
44
${MPIRUN} ./dsimpletest_save_restore < input_simpletest_real
45
${MPIRUN} ./csimpletest_save_restore < input_simpletest_cmplx
46
${MPIRUN} ./zsimpletest_save_restore < input_simpletest_cmplx
47
${MPIRUN} ./c_example_save_restore
48
}
49
50
package(){
51
# Install all headers
52
cd "${srcdir}/MUMPS_${pkgver}/include"
53
install -d -m755 "${pkgdir}/usr/include"
54
install -D -m644 *.h "${pkgdir}/usr/include"
55
56
# Install all libraries
57
cd "${srcdir}/MUMPS_${pkgver}/lib"
58
install -d -m755 ${pkgdir}/usr/lib
59
install -D -m644 *.so ${pkgdir}/usr/lib
60
61
# Install examples
62
install -m 755 -d "${pkgdir}/usr/share/doc/${pkgname}/examples"
63
cd "${srcdir}/MUMPS_${pkgver}/examples"
64
install -m 644 * "${pkgdir}/usr/share/doc/${pkgname}/examples"
65
install -m 644 "${srcdir}/MUMPS_${pkgver}/Makefile.inc" "${pkgdir}/usr/share/doc/${pkgname}/examples"
66
sed -i 's_\(topdir =\).*_\1 /usr_g; s-.*\(Makefile.inc\)-include Makefile.inc-g' "${pkgdir}/usr/share/doc/${pkgname}/examples/Makefile"
67
68
# Install license
69
install -D -m644 "${srcdir}/MUMPS_${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
70
}
71
Changes since previous scan
--- PKGBUILD @ 2026-07-25 00:13+++ PKGBUILD @ 2026-08-03 00:08@@ -4,7 +4,7 @@ # Contributor: Guillaume Dollé < dolle dot guillaume at gmail dot com > # Contributor: Lucas H. Gabrielli pkgname=mumps-pkgver=5.9.0+pkgver=5.9.1 pkgrel=1 pkgdesc='Sparse solver library using Gaussian elimination' url='https://mumps-solver.org'@@ -15,7 +15,7 @@ arch=('i686' 'x86_64') source=(https://mumps-solver.org/MUMPS_${pkgver}.tar.gz Makefile.inc)-sha512sums=('0f90a4976ff066ce8872087ad5377690fa0907533425a6285dcf8855b78c0a66b4f0e8488dffb9433e35666570de5de1d056b72f0d701a10fea58d5287d89dde'+sha512sums=('1984b1d4b9b7ba4d48f90975c3ae864c1afc487ef1864e972ea7f4fdcba0ee174611f31384d2472bc9dbe5a6ccbdc3995800a13800e1e9bb1ba2426d1f93aad5' 'a8a6b86a0eb058d018e6bed0550780e6369d6f08341ba8d35a1353375acd46f34a4f05db082abb5ce7b8900c03dfb63d3c222d3df370101cc6030850ebbfeea0') prepare () {Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 09:29:42 | MEDIUM | 1 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |