radarr-develop-bin
maintainer txtsd
· 3 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads prebuilt binaries from the project's official update server (radarr.servarr.com), which is not on the whitelist but is the legitimate source for Radarr; the binaries are verified with sha256sums, reducing supply-chain risk to low.
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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt binaries from the project's official update server (radarr.servarr.com), which is not on the whitelist but is the legitimate source for Radarr; the binaries are verified with sha256sums, reducing supply-chain risk to low.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:47
source_x86_64=("Radarr.develop.${pkgver}.linux-core-x64.tar.gz::https://radarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
2
# Maintainer: Donald Webster <fryfrog@gmail.com>
3
# Helpful URL: https://radarr.servarr.com/v1/update/develop?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
4
5
pkgname=radarr-develop-bin
6
pkgver=6.4.0.10523
7
pkgrel=1
8
pkgdesc='Movie organizer/manager for usenet and torrent users (develop branch)'
9
arch=(x86_64 aarch64 armv7h)
10
url='https://radarr.video'
11
license=('GPL-3.0-or-later')
12
groups=(servarr-develop-bin)
13
depends=(
14
gcc-libs
15
glibc
16
sqlite
17
zlib
18
)
19
optdepends=(
20
'postgresql: postgresql database'
21
'sabnzbd: usenet downloader'
22
'nzbget: usenet downloader'
23
'qbittorrent: torrent downloader'
24
'deluge: torrent downloader'
25
'rtorrent: torrent downloader'
26
'nodejs-flood: torrent downloader'
27
'vuze: torrent downloader'
28
'aria2: torrent downloader'
29
'transmission-cli: torrent downloader (CLI and daemon)'
30
'transmission-gtk: torrent downloader (GTK+)'
31
'transmission-qt: torrent downloader (Qt)'
32
'jackett: torrent indexer proxy'
33
'nzbhydra2: torznab and usenet indexer proxy'
34
'prowlarr: torrent and usenet indexer proxy'
35
'autobrr: irc, torrent and usenet indexer proxy'
36
)
37
provides=(radarr)
38
conflicts=(radarr)
39
options=(!debug)
40
install=radarr.install
41
source=(
42
package_info
43
radarr.service
44
radarr.sysusers
45
radarr.tmpfiles
46
)
47
source_x86_64=("Radarr.develop.${pkgver}.linux-core-x64.tar.gz::https://radarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
48
source_aarch64=("Radarr.develop.${pkgver}.linux-core-arm64.tar.gz::https://radarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
49
source_armv7h=("Radarr.develop.${pkgver}.linux-core-arm.tar.gz::https://radarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
50
sha256sums=('ecfb21473ea15ab5595cce0ea01533e6d4b7835bcea9789ef617ec8d5d364a6f'
51
'25637c6496aa59673aada6acc6cf41025a5f12a844025ee41d8a6cc66b84b5c0'
52
'bb73e0c55711d7ddbf74140b3beb39cb8674ae92be8387c3dd8109bcd53faca8'
53
'c68efcb3778cb497d7c256dc97df7413ce09f07ea341e4d2683e7fee321cbcbb')
54
sha256sums_x86_64=('98ede09b49f881b645c1f8f4bbf3654bf4e4eb05ce548b4ce32415fb6651df6a')
55
sha256sums_aarch64=('87fa17620bbbc918dfcd5adfdaafd7ac87ad1d618954a11abaf51ec29060d8c3')
56
sha256sums_armv7h=('2451f4a8e1cc90b51bda4ffa185d03d58d790e81f87114d0a119132938c2f355')
57
58
package() {
59
install -dm755 "${pkgdir}/usr/lib/radarr/bin"
60
61
# License
62
install -Dm644 Radarr/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
63
rm Radarr/LICENSE
64
65
# Remove Service Helpers, and Update files
66
rm Radarr/ServiceInstall*
67
rm Radarr/ServiceUninstall*
68
rm -rf Radarr/Radarr.Update
69
70
# Disable built in updater.
71
install -Dm644 package_info "${pkgdir}/usr/lib/radarr"
72
echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/radarr/package_info"
73
74
# Copy Radarr
75
cp -dr Radarr/* "${pkgdir}/usr/lib/radarr/bin"
76
77
# Systemd
78
install -Dm644 radarr.service "${pkgdir}/usr/lib/systemd/system/radarr.service"
79
install -Dm644 radarr.sysusers "${pkgdir}/usr/lib/sysusers.d/radarr.conf"
80
install -Dm644 radarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/radarr.conf"
81
}
82
Changes since previous scan
--- PKGBUILD @ 2026-07-19 00:17+++ PKGBUILD @ 2026-08-03 00:08@@ -3,7 +3,7 @@ # Helpful URL: https://radarr.servarr.com/v1/update/develop?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true pkgname=radarr-develop-bin-pkgver=6.3.0.10514+pkgver=6.4.0.10523 pkgrel=1 pkgdesc='Movie organizer/manager for usenet and torrent users (develop branch)' arch=(x86_64 aarch64 armv7h)@@ -51,9 +51,9 @@ '25637c6496aa59673aada6acc6cf41025a5f12a844025ee41d8a6cc66b84b5c0' 'bb73e0c55711d7ddbf74140b3beb39cb8674ae92be8387c3dd8109bcd53faca8' 'c68efcb3778cb497d7c256dc97df7413ce09f07ea341e4d2683e7fee321cbcbb')-sha256sums_x86_64=('41d6455c037ff267c5ad5a0f0de4502cebe8f89ec3d051da97851933d48a4047')-sha256sums_aarch64=('392ee99a358c0cad98db1da4cd394680a9bbd9eff9d293ee5d9cf8ce93a6ba43')-sha256sums_armv7h=('0e9a281976b03f48917e478eac438d8d12e1bef8644f5ddcf8a66f2d80414a13')+sha256sums_x86_64=('98ede09b49f881b645c1f8f4bbf3654bf4e4eb05ce548b4ce32415fb6651df6a')+sha256sums_aarch64=('87fa17620bbbc918dfcd5adfdaafd7ac87ad1d618954a11abaf51ec29060d8c3')+sha256sums_armv7h=('2451f4a8e1cc90b51bda4ffa185d03d58d790e81f87114d0a119132938c2f355') package() { install -dm755 "${pkgdir}/usr/lib/radarr/bin"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 21:12:02 | MEDIUM | 1 |
| 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 |