rorqual-venv
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
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)
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) highlightedpkgname=rorqual-venv
_pkgname=rorqual
pkgver=9
pkgrel=1
pkgdesc="A TUI Subsonic client"
arch=(any)
url="https://github.com/janbuchar/rorqual"
makedepends=(git python-pip)
depends=(python mpv)
options=(!strip)
source=("$_pkgname-$pkgver.tar.gz::https://github.com/janbuchar/rorqual/archive/refs/tags/release-9.tar.gz"
"requirements.txt"
"rorqual")
sha256sums=("6bdbe20446446855359c476cedd3422612fbc37bab0bbb3bfdcf744d51940f9a"
"5250285c573a5b88300131ee3d955a426b5ca9b1617cab68fc3f592933aab046"
"dafe97dbf17b6c3c2a3ec54476971ea6d3f96230412279756b5d0185c34b37cd")
package() {
# Create virtualenv
export PIP_DISABLE_PIP_VERSION_CHECK=1
export PYTHONDONTWRITEBYTECODE=1
python -m venv "$pkgdir"/opt/rorqual/virtualenv
source "$pkgdir"/opt/rorqual/virtualenv/bin/activate
# Install dependencies
pip install --upgrade pip wheel
pip install -r requirements.txt
# Install rorqual
pushd $srcdir/${_pkgname}-release-${pkgver}
pip install .
popd
# Deactivate virtualenv
deactivate
# Install launcher script
install -Dm755 rorqual "$pkgdir"/usr/bin/rorqual
}
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 virtualenvScan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |