discbandit
CLEAN
maintainer pacmanics
1 votes
scanned 2026-09-10 00:22:44.768965
Triggered rules
Clean
AI review downgraded a static finding
llm_review
The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): Package builds from source hosted on the project's own GitHub repository, installs only the project's declared files and dependencies, and contains no suspicious downloads or execution of remote code; low severity flag for few votes and recent upload is not indicative of actual risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
pkgname=discbandit
2
pkgver=1.0
3
pkgrel=1
4
pkgdesc='Graphical audio CD ripper with metadata and artwork support'
5
arch=('any')
6
url='https://github.com/pacmanics/discbandit'
7
license=('MIT')
8
9
depends=(
10
'python'
11
'pyside6'
12
'python-discid'
13
'python-musicbrainzngs'
14
'cdparanoia'
15
'ffmpeg'
16
'libcdio'
17
'util-linux'
18
'xdg-utils'
19
'hicolor-icon-theme'
20
)
21
22
makedepends=(
23
'python-build'
24
'python-installer'
25
'python-setuptools'
26
'python-wheel'
27
)
28
29
source=(
30
"$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
31
)
32
33
sha256sums=(
34
'f1f8b46a116e391da9eafa9f92b6f783c1a468c1d74e151487294e4a4e4ac012'
35
)
36
37
build() {
38
cd "$srcdir/$pkgname-$pkgver"
39
python -m build --wheel --no-isolation
40
}
41
42
package() {
43
cd "$srcdir/$pkgname-$pkgver"
44
45
python -m installer \
46
--destdir="$pkgdir" \
47
dist/*.whl
48
49
install -Dm644 \
50
packaging/linux/discbandit.desktop \
51
"$pkgdir/usr/share/applications/discbandit.desktop"
52
53
install -Dm644 \
54
LICENSE \
55
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
56
57
local size
58
for size in 16 24 32 48 64 128 256 512; do
59
install -Dm644 \
60
"assets/icons/hicolor/${size}x${size}/apps/discbandit.png" \
61
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/discbandit.png"
62
done
63
}
64
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-10 00:22:44 | Clean | 2 |
| 2026-09-09 23:20:11 | Low | 1 |