rorqual-venv

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

The pip install commands are used to install dependencies and the package itself from a requirements.txt and a source tarball both sourced and checksummed in the PKGBUILD; the requirements.txt is bundled and checksummed, reducing supply chain risk, and the build uses the project's own source from a trusted repository.

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 pip install commands are used to install dependencies and the package itself from a requirements.txt and a source tarball both sourced and checksummed in the PKGBUILD; the requirements.txt is bundled and checksummed, reducing supply chain risk, and the build uses the project's own source from a trusted repository.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium pip install of an external package pip_install_external

`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.

  • PKGBUILD:28 pip install --upgrade pip wheel
  • PKGBUILD:29 pip install -r requirements.txt

PKGBUILD

2 offending line(s) highlighted
1pkgname=rorqual-venv
2_pkgname=rorqual
3pkgver=9
4pkgrel=1
5pkgdesc="A TUI Subsonic client"
6arch=(any)
7url="https://github.com/janbuchar/rorqual"
8makedepends=(git python-pip)
9depends=(python mpv)
10options=(!strip)
11
12source=("$_pkgname-$pkgver.tar.gz::https://github.com/janbuchar/rorqual/archive/refs/tags/release-9.tar.gz"
13 "requirements.txt"
14 "rorqual")
15
16sha256sums=("6bdbe20446446855359c476cedd3422612fbc37bab0bbb3bfdcf744d51940f9a"
17 "5250285c573a5b88300131ee3d955a426b5ca9b1617cab68fc3f592933aab046"
18 "dafe97dbf17b6c3c2a3ec54476971ea6d3f96230412279756b5d0185c34b37cd")
19
20package() {
21 # Create virtualenv
22 export PIP_DISABLE_PIP_VERSION_CHECK=1
23 export PYTHONDONTWRITEBYTECODE=1
24 python -m venv "$pkgdir"/opt/rorqual/virtualenv
25 source "$pkgdir"/opt/rorqual/virtualenv/bin/activate
26
27 # Install dependencies
28 pip install --upgrade pip wheel
29 pip install -r requirements.txt
30
31 # Install rorqual
32 pushd $srcdir/${_pkgname}-release-${pkgver}
33 pip install .
34 popd
35
36 # Deactivate virtualenv
37 deactivate
38
39 # Install launcher script
40 install -Dm755 rorqual "$pkgdir"/usr/bin/rorqual
41}
42

Changes since previous scan

--- PKGBUILD @ 2026-09-16 00:03
+++ PKGBUILD @ 2026-09-17 00:27
@@ -1,6 +1,6 @@
pkgname=rorqual-venv
_pkgname=rorqual
-pkgver=8
+pkgver=9
pkgrel=1
pkgdesc="A TUI Subsonic client"
arch=(any)
@@ -9,13 +9,13 @@
depends=(python mpv)
options=(!strip)
-source=("$_pkgname-$pkgver.tar.gz::https://github.com/janbuchar/rorqual/archive/refs/tags/release-8.tar.gz"
+source=("$_pkgname-$pkgver.tar.gz::https://github.com/janbuchar/rorqual/archive/refs/tags/release-9.tar.gz"
"requirements.txt"
"rorqual")
-sha256sums=("393a53a58ba162bf7bc7edbf4e740677e9176b59feeef31480c4cda87cb3c9f0"
+sha256sums=("6bdbe20446446855359c476cedd3422612fbc37bab0bbb3bfdcf744d51940f9a"
"5250285c573a5b88300131ee3d955a426b5ca9b1617cab68fc3f592933aab046"
- "216924f61c4b550a85ccaead34a353ea828d5a5182495aec91e20d2c18dcafdf")
+ "dafe97dbf17b6c3c2a3ec54476971ea6d3f96230412279756b5d0185c34b37cd")
package() {
# Create virtualenv

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 09:21:46 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