basicanalysis

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

The source is a tarball from a BSC subdomain, which is plausibly the project's official host; building from source is normal for AUR, and the package installs only the project's own scripts and data.

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 a BSC subdomain, which is plausibly the project's official host; building from source is normal for AUR, and the package installs only the project's own scripts and data.

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:14 source=("https://ftp.tools.bsc.es/$pkgname/$pkgname-$pkgver-src.tar.bz2")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Joan Bruguera Micó <joanbrugueram@gmail.com>
2pkgname='basicanalysis'
3pkgdesc='Framework for automatic extraction of fundamental factors for Paraver traces (from BSC).'
4pkgver='2026.09.15'
5pkgrel='1'
6arch=('any')
7url='https://www.bsc.es/discover-bsc/organisation/scientific-structure/performance-tools'
8license=('LGPL-2.1-or-later')
9depends=(python wxparaver dimemas
10 python-pandas python-seaborn python-matplotlib python-numpy python-scipy
11 python-plotly python-yaml)
12optdepends=('gnuplot: Drawing the generated plots'
13 'chromium: Exporting reports to PDF')
14source=("https://ftp.tools.bsc.es/$pkgname/$pkgname-$pkgver-src.tar.bz2")
15sha512sums=(2c42dd797502d86b249c6dc8fdf86a79392021b72aebfb91589923349d71ff3b63c88f7392c7a4a06a5a26fcde03ba75bd4480a957f1c5a6567bb412485075cd)
16
17package() {
18 # Install the whole source tree in /usr/lib/basicanalysis
19 cd "$srcdir/$pkgname-$pkgver"
20 local instdir="$pkgdir/usr/lib/basicanalysis"
21
22 install -d -m755 "$instdir"
23 cp -a . "$instdir/"
24
25 # Create symlinks to the user-facing scripts in /usr/bin for ease of use
26 mkdir -p "$pkgdir/usr/bin"
27 chmod 0755 "$pkgdir/usr/bin" "$pkgdir/usr"
28 for script in modelfactors.py analyze_trace.py merge_trace_results.py \
29 compute_metrics_from_merged.py html_to_pdf.py; do
30 ln -s "/usr/lib/basicanalysis/$script" "$pkgdir/usr/bin/$script"
31 done
32}
33

Changes since previous scan

--- PKGBUILD @ 2026-09-16 00:03
+++ PKGBUILD @ 2026-09-17 00:27
@@ -1,28 +1,33 @@
# Maintainer: Joan Bruguera Micó <joanbrugueram@gmail.com>
pkgname='basicanalysis'
pkgdesc='Framework for automatic extraction of fundamental factors for Paraver traces (from BSC).'
-pkgver='0.5.1.20260423'
+pkgver='2026.09.15'
pkgrel='1'
arch=('any')
url='https://www.bsc.es/discover-bsc/organisation/scientific-structure/performance-tools'
license=('LGPL-2.1-or-later')
depends=(python wxparaver dimemas
- python-pandas python-seaborn python-matplotlib python-numpy python-scipy)
-optdepends=('gnuplot: Drawing the generated plots')
-source=("https://ftp.tools.bsc.es/$pkgname/$pkgname-${pkgver%.*}-src.tar.bz2")
-sha512sums=(d626f74f97ed148dea910bf3cc41ae98650867ce3d0430e1e307151d67d15b2184e370a146d59681fcc33430f0fb8abc8cdcd59efcc7116188bd523014d3e484)
+ python-pandas python-seaborn python-matplotlib python-numpy python-scipy
+ python-plotly python-yaml)
+optdepends=('gnuplot: Drawing the generated plots'
+ 'chromium: Exporting reports to PDF')
+source=("https://ftp.tools.bsc.es/$pkgname/$pkgname-$pkgver-src.tar.bz2")
+sha512sums=(2c42dd797502d86b249c6dc8fdf86a79392021b72aebfb91589923349d71ff3b63c88f7392c7a4a06a5a26fcde03ba75bd4480a957f1c5a6567bb412485075cd)
package() {
- # Install script and configurations in /usr/lib/basicanalysis
- cd "$srcdir/$pkgname-${pkgver%.*}"
- install -d -m755 "$pkgdir/usr/lib/basicanalysis/cfgs/"
- find "." -type f -name "*.py" -exec install -D -m755 "{}" "$pkgdir/usr/lib/basicanalysis/" \;
- find "cfgs" -type f -exec install -D -m644 "{}" "$pkgdir/usr/lib/basicanalysis/cfgs/" \;
- rm "$pkgdir/usr/lib/basicanalysis/cfgs/.directory" # Remove crap
+ # Install the whole source tree in /usr/lib/basicanalysis
+ cd "$srcdir/$pkgname-$pkgver"
+ local instdir="$pkgdir/usr/lib/basicanalysis"
- # Create a symlink to the main script in /usr/bin for ease of use
+ install -d -m755 "$instdir"
+ cp -a . "$instdir/"
+
+ # Create symlinks to the user-facing scripts in /usr/bin for ease of use
mkdir -p "$pkgdir/usr/bin"
chmod 0755 "$pkgdir/usr/bin" "$pkgdir/usr"
- ln -s "/usr/lib/basicanalysis/modelfactors.py" "$pkgdir/usr/bin/modelfactors.py"
+ for script in modelfactors.py analyze_trace.py merge_trace_results.py \
+ compute_metrics_from_merged.py html_to_pdf.py; do
+ ln -s "/usr/lib/basicanalysis/$script" "$pkgdir/usr/bin/$script"
+ done
}

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 23:24:19 Medium 1
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 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