auroradownloader
The pip install commands install gunicorn and project dependencies from a requirements.txt file sourced from the project's own GitHub repository, which is a normal and legitimate practice for Python applications; the risk is low as the source is the project's official repository.
Triggered rules
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 95%): The pip install commands install gunicorn and project dependencies from a requirements.txt file sourced from the project's own GitHub repository, which is a normal and legitimate practice for Python applications; the risk is low as the source is the project's official 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:39
./venv/bin/pip install --no-cache-dir --upgrade pip -
PKGBUILD:40
./venv/bin/pip install --no-cache-dir gunicorn -
PKGBUILD:41
./venv/bin/pip install --no-cache-dir -r requirements.txt
PKGBUILD
3 offending line(s) highlighted# Maintainer: Bacem Abidi <abidi.bacem.ab.25@gmail.com>
pkgname=auroradownloader
pkgver=1.0.10
pkgrel=1
pkgdesc="Your all in one web based music manager"
arch=('any')
url="https://github.com/Bacem-Abidi/AuroraDownloader"
license=('GPL3')
depends=(
'ffmpeg'
'python'
'redis' # required for Server‑Sent Events
'mpc'
)
makedepends=()
optdepends=()
source=("$pkgname-$pkgver.tar.gz::https://github.com/Bacem-Abidi/AuroraDownloader/archive/refs/tags/$pkgver.tar.gz"
"$pkgname.service"
"$pkgname-user.service"
"$pkgname.install")
install="$pkgname.install"
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP')
package() {
local _extracted_dir="AuroraDownloader-$pkgver"
# 1. Install application files
install -d "$pkgdir/opt/$pkgname"
cp -r "$srcdir/$_extracted_dir"/* "$pkgdir/opt/$pkgname/"
# 2. Create virtual environment (using system Python, with copies)
cd "$pkgdir/opt/$pkgname"
/usr/bin/python -m venv --copies venv
# 3. Install Python dependencies
./venv/bin/pip install --no-cache-dir --upgrade pip
./venv/bin/pip install --no-cache-dir gunicorn
./venv/bin/pip install --no-cache-dir -r requirements.txt
# 4. Fix shebangs – replace build‑time paths with the final venv path
find venv/bin -type f -exec sed -i '1s|^#!.*python.*|#!/opt/auroradownloader/venv/bin/python|' {} \;
# In package() after creating venv:
install -Dm644 "$srcdir/$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service"
install -Dm644 "$srcdir/$pkgname-user.service" "$pkgdir/usr/lib/systemd/user/$pkgname.service"
# 6. Create log directory (ownership will be set in .install)
install -d "$pkgdir/var/log/$pkgname"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 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 |
| 2026-08-29 00:29:17 | Low | 2 |