Package Details: radarr 6.1.1.10360-1

Git Clone URL: https://aur.archlinux.org/radarr.git (read-only, click to copy)
Package Base: radarr
Description: Movie organizer/manager for usenet and torrent users
Upstream URL: https://radarr.video
Licenses: GPL-3.0-or-later
Groups: servarr
Submitter: txtsd
Maintainer: txtsd (fryfrog)
Last Packager: fryfrog
Votes: 6
Popularity: 0.33
First Submitted: 2024-10-15 09:39 (UTC)
Last Updated: 2026-04-02 15:59 (UTC)

Dependencies (22)

Required by (18)

Sources (5)

Pinned Comments

txtsd commented on 2024-10-21 03:36 (UTC) (edited on 2024-10-30 12:49 (UTC) by txtsd)

Alternate versions

radarr-bin (binary version of this package)
radarr-develop (develop branch)
radarr-develop-bin (binary version of the develop branch)
radarr-nightly-bin (nightly builds)

Latest Comments

cF1nny commented on 2026-04-26 20:55 (UTC) (edited on 2026-04-26 20:58 (UTC) by cF1nny)

Thanks ZimbiX, this is still needed until the new radarr release comes out (currently pre-release), as an alt I bumped the version as they did in pre-release vs suppressing the vulnerability warning, if want to run that route via:

diff --git a/PKGBUILD b/PKGBUILD
index 25932cd..5a0c203 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -74,6 +74,9 @@ prepare() {
   export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
   dotnet new globaljson --sdk-version 8.0.112 --force

+  # Temporary bump MailKit to 4.16.0 matching current pre-release version until released upstream
+  sed -i 's|Include="MailKit" Version="4.15.1"|Include="MailKit" Version="4.16.0"|' src/NzbDrone.Core/Radarr.Core.csproj
+
   # Prepare backend
   dotnet restore "src/${_pkgname}.sln" \
     --runtime "${_runtime}" \

ZimbiX commented on 2026-04-25 09:22 (UTC)

I needed this patch to be able to update currently:

diff --git a/PKGBUILD b/PKGBUILD
index 25932cd..b4db5d6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -74,6 +74,9 @@ prepare() {
   export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
   dotnet new globaljson --sdk-version 8.0.112 --force

+  # Prevent MailKit vulnerability warning (GHSA-9j88-vvj5-vhgr) being treated as an error, to still allow installation prior to release of Radarr 6.2.0 which bumps MailKit to 4.16.0
+  sed -i -E 's|(<TreatWarningsAsErrors>true</TreatWarningsAsErrors>).*|\1<WarningsNotAsErrors>NU1902</WarningsNotAsErrors>|' src/Directory.Build.props
+
   # Prepare backend
   dotnet restore "src/${_pkgname}.sln" \
     --runtime "${_runtime}" \

txtsd commented on 2025-11-19 03:37 (UTC)

Thanks @remanifest

I was actually waiting on an update to nodejs since there was a bug in 25.2.0 that was breaking building the frontend.

remanifest commented on 2025-11-17 18:43 (UTC)

Here's a gist for the changes I had to make to the PKGBUILD to get the 6.0.4.10291 release to install: https://gist.github.com/remanifest/7f3816d53147c5af9da99d10dc066273

Namely, the dotnet and aspnet runtimes are bumped to 8.0, and I needed to change the version in global.json to 8.0.120, to align with the version we have in Arch.

LaserEyess commented on 2025-08-17 18:58 (UTC)

/usr/lib/systemd/system/radarr.service:38: LogsDirectory= path is absolute, ignoring: /var/lib/radarr/logs

https://www.freedesktop.org/software/systemd/man/latest/systemd.exec.html#RuntimeDirectory=

You can't have LogsDirectory= be an absolute path, and furthermore since it's under StateDirectory= already it will have no effect.

jtheoof commented on 2025-07-06 18:24 (UTC)

For some reason, the package cannot be built if there is no .editorconfig in the home directory. Had to manually create one.

touch ~/.editorconfig

txtsd commented on 2024-11-02 02:21 (UTC)

@jkhsjdhjs Thank you for your kind words! They mean a lot! Please consider a minor contribution. You can find a link on my homepage.

In a recent commit, I mention PrivateUsers in the comments at the top of the service file. Not about LXC, but it could hint at what one needs.

jkhsjdhjs commented on 2024-11-02 02:17 (UTC)

Thanks for your efforts on making this package build from source, I appreciate it!

I noticed that

[Service]
PrivateUsers=true

prevents Radarr from running in my privileged LXC:

radarr.service: Failed to set up user namespacing: Operation not permitted
radarr.service: Failed at step USER spawning /usr/lib/radarr/bin/Radarr: Operation not permitted

Workaround is to create an override with PrivateUsers=false

justin-sleep commented on 2024-10-30 13:27 (UTC)

FYI, the addition of the recent hardening options in the systemd service broke networking (search, connectivity to download clients) for me. I had to add:

[Service]
RestrictAddressFamilies=

to an override with sudo systemctl edit radarr to get it working again.

txtsd commented on 2024-10-21 03:36 (UTC) (edited on 2024-10-30 12:49 (UTC) by txtsd)

Alternate versions

radarr-bin (binary version of this package)
radarr-develop (develop branch)
radarr-develop-bin (binary version of the develop branch)
radarr-nightly-bin (nightly builds)