eccodes

LOW
maintainer jankoh 15 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package downloads source code and test data from official ECMWF domains (confluence.ecmwf.int and get.ecmwf.int) which are legitimate project hosts; building from project-owned sources even on non-whitelisted hosts is normal AUR practice and not inherently dangerous.

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 package downloads source code and test data from official ECMWF domains (confluence.ecmwf.int and get.ecmwf.int) which are legitimate project hosts; building from project-owned sources even on non-whitelisted hosts is normal AUR practice and not inherently dangerous.

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 "${pkgname}-${pkgver}-Source.tar.gz::https://confluence.ecmwf.int/download/attachments/${_attnum}/${pkgname}-${pkgver}-Source.tar.gz?api=v2"
  • PKGBUILD:17 "${pkgname}-${pkgver}-test-data.tar.gz::https://get.ecmwf.int/repository/test-data/eccodes/eccodes_test_data.tar.gz"

PKGBUILD

2 offending line(s) highlighted
1# Maintainer: "Jan Kohnert <bughunter@jan-kohnert.de"
2# Contributor: Graziano Giuliani <graziano.giuliani@poste.it>
3pkgname=eccodes
4pkgver=2.48.0
5_attnum=45757960
6pkgrel=2
7pkgdesc="ECMWF decoding library for GRIB, BUFR and GTS"
8arch=("i686" "x86_64")
9url="https://confluence.ecmwf.int/display/ECC/ecCodes+Home"
10license=("Apache-2.0")
11depends=("glibc" "libaec" "libgcc" "libgfortran" "libpng" "libstdc++" "openjpeg2" "netcdf")
12makedepends=("gcc-fortran" "cmake")
13optdepends=("bash" "ksh")
14conflicts=("grib_api" "libbufr-ecmwf")
15source=(
16 "${pkgname}-${pkgver}-Source.tar.gz::https://confluence.ecmwf.int/download/attachments/${_attnum}/${pkgname}-${pkgver}-Source.tar.gz?api=v2"
17 "${pkgname}-${pkgver}-test-data.tar.gz::https://get.ecmwf.int/repository/test-data/eccodes/eccodes_test_data.tar.gz"
18)
19sha512sums=(
20 "9e1b7c456ed65a06415038b2181543ce89ad9aa606380653d635b4304f5ef0ec243742702b441b265e927b98242bbc342ebd55e2426627dc1a40ab45e5ce3674"
21 "c7fde9744f63d4329a8373ee034169df6162ccd00b7f51bd8e271747d961101eeb93d5ec2c5ed644bec5eb82f3967c29630ba7375197a3cb40e7148f8d8484f2"
22)
23
24build() {
25 # make sure we have a clean build environment
26 if [ -d build ]; then
27 rm -rf build
28 fi
29 local cmake_options=(
30 -B build
31 -S "$pkgname-$pkgver-Source"
32 -W no-dev
33 -D CMAKE_BUILD_TYPE=None
34 -D CMAKE_INSTALL_PREFIX=/usr
35 -D CMAKE_INSTALL_DATADIR=/usr/share
36 -D CMAKE_INSTALL_DATAROOTDIR="/usr/share/$pkgname/definitions"
37 -D ENABLE_AEC=ON
38 -D ENABLE_ECCODES_THREADS=ON
39 -D ENABLE_EXTRA_TESTS=ON
40 -D ENABLE_JPG=ON
41 -D ENABLE_JPG_LIBJASPER=OFF
42 -D ENABLE_JPG_LIBOPENJPEG=ON
43 -D ENABLE_PNG=ON
44 )
45 cmake "${cmake_options[@]}"
46 cmake --build build
47}
48
49check() {
50 # copy extra test data to build dir so we can skip downloading data while testing
51 cp -a data/* build/data/
52 # Test 'eccodes_t_grib_ecc-2221' does not work reliably an all machines
53 local excluded_tests="eccodes_t_grib_ecc-2221"
54 local ctest_flags=(
55 --test-dir build
56 # show the stdout and stderr when the test fails
57 --output-on-failure
58 # execute tests in parallel
59 --parallel $(nproc)
60 # exclude problematic tests
61 --exclude-regex "$excluded_tests"
62 )
63 ctest "${ctest_flags[@]}"
64}
65
66package() {
67 DESTDIR="$pkgdir" cmake --install build
68}
69

Changes since previous scan

--- PKGBUILD @ 2026-09-05 00:16
+++ PKGBUILD @ 2026-09-17 00:27
@@ -3,7 +3,7 @@
pkgname=eccodes
pkgver=2.48.0
_attnum=45757960
-pkgrel=1
+pkgrel=2
pkgdesc="ECMWF decoding library for GRIB, BUFR and GTS"
arch=("i686" "x86_64")
url="https://confluence.ecmwf.int/display/ECC/ecCodes+Home"
@@ -18,7 +18,7 @@
)
sha512sums=(
"9e1b7c456ed65a06415038b2181543ce89ad9aa606380653d635b4304f5ef0ec243742702b441b265e927b98242bbc342ebd55e2426627dc1a40ab45e5ce3674"
- "8b4c7159dd7ed0e1e69068ec7dcabe94064f0d2abf9eac4fca2a9c730d500999e8edf1e7eeebba6fb12ae99b223c1b0843e31414538333c52f2508cb2d410151"
+ "c7fde9744f63d4329a8373ee034169df6162ccd00b7f51bd8e271747d961101eeb93d5ec2c5ed644bec5eb82f3967c29630ba7375197a3cb40e7148f8d8484f2"
)
build() {

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 00:22:44 Low 2
2026-09-09 00:04:09 Low 2
2026-09-08 00:18:08 Low 2
2026-09-07 00:30:15 Low 2
2026-09-06 00:17:06 Low 2
2026-09-05 07:59:42 Medium 1
2026-09-05 00:16:27 Low 2
2026-09-04 00:03:13 Low 2
2026-09-03 00:15:47 Low 2
2026-09-02 00:02:31 Low 2
2026-09-01 00:11:19 Low 2
2026-08-31 00:19:57 Low 2
2026-08-30 00:04:14 Low 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion