auroradownloader
maintainer bacem
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
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
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 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)
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: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
1
# Maintainer: Bacem Abidi <abidi.bacem.ab.25@gmail.com>
2
pkgname=auroradownloader
3
pkgver=1.0.10
4
pkgrel=1
5
pkgdesc="Your all in one web based music manager"
6
arch=('any')
7
url="https://github.com/Bacem-Abidi/AuroraDownloader"
8
license=('GPL3')
9
depends=(
10
'ffmpeg'
11
'python'
12
'redis' # required for Server‑Sent Events
13
'mpc'
14
)
15
makedepends=()
16
optdepends=()
17
source=("$pkgname-$pkgver.tar.gz::https://github.com/Bacem-Abidi/AuroraDownloader/archive/refs/tags/$pkgver.tar.gz"
18
"$pkgname.service"
19
"$pkgname-user.service"
20
"$pkgname.install")
21
install="$pkgname.install"
22
sha256sums=('SKIP'
23
'SKIP'
24
'SKIP'
25
'SKIP')
26
27
package() {
28
local _extracted_dir="AuroraDownloader-$pkgver"
29
30
# 1. Install application files
31
install -d "$pkgdir/opt/$pkgname"
32
cp -r "$srcdir/$_extracted_dir"/* "$pkgdir/opt/$pkgname/"
33
34
# 2. Create virtual environment (using system Python, with copies)
35
cd "$pkgdir/opt/$pkgname"
36
/usr/bin/python -m venv --copies venv
37
38
# 3. Install Python dependencies
39
./venv/bin/pip install --no-cache-dir --upgrade pip
40
./venv/bin/pip install --no-cache-dir gunicorn
41
./venv/bin/pip install --no-cache-dir -r requirements.txt
42
43
# 4. Fix shebangs – replace build‑time paths with the final venv path
44
find venv/bin -type f -exec sed -i '1s|^#!.*python.*|#!/opt/auroradownloader/venv/bin/python|' {} \;
45
46
# In package() after creating venv:
47
install -Dm644 "$srcdir/$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service"
48
install -Dm644 "$srcdir/$pkgname-user.service" "$pkgdir/usr/lib/systemd/user/$pkgname.service"
49
50
# 6. Create log directory (ownership will be set in .install)
51
install -d "$pkgdir/var/log/$pkgname"
52
}
53
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 |