rorqual-venv
maintainer Teyras
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install commands are used to install dependencies and the package from a local source directory after extracting a verified tarball from the project's official GitHub repository; the requirements.txt is bundled in the source array and checksummed, making the build process transparent and reproducible.
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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 90%): The pip install commands are used to install dependencies and the package from a local source directory after extracting a verified tarball from the project's official GitHub repository; the requirements.txt is bundled in the source array and checksummed, making the build process transparent and reproducible.
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
1
pkgname=rorqual-venv
2
_pkgname=rorqual
3
pkgver=8
4
pkgrel=1
5
pkgdesc="A TUI Subsonic client"
6
arch=(any)
7
url="https://github.com/janbuchar/rorqual"
8
makedepends=(git python-pip)
9
depends=(python mpv)
10
options=(!strip)
11
12
source=("$_pkgname-$pkgver.tar.gz::https://github.com/janbuchar/rorqual/archive/refs/tags/release-8.tar.gz"
13
"requirements.txt"
14
"rorqual")
15
16
sha256sums=("393a53a58ba162bf7bc7edbf4e740677e9176b59feeef31480c4cda87cb3c9f0"
17
"5250285c573a5b88300131ee3d955a426b5ca9b1617cab68fc3f592933aab046"
18
"216924f61c4b550a85ccaead34a353ea828d5a5182495aec91e20d2c18dcafdf")
19
20
package() {
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
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 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 |
| 2026-07-15 00:09:25 | LOW | 2 |