Package Details: lidarr 2.2.5.4141-1

Git Clone URL: https://aur.archlinux.org/lidarr.git (read-only, click to copy)
Package Base: lidarr
Description: Music download automation for usenet and torrents.
Upstream URL: https://github.com/lidarr/Lidarr
Licenses: GPL3
Submitter: orkeren
Maintainer: fryfrog
Last Packager: fryfrog
Votes: 13
Popularity: 0.074921
First Submitted: 2017-10-06 08:46 (UTC)
Last Updated: 2024-04-13 18:53 (UTC)

Dependencies (13)

Required by (6)

Sources (7)

Pinned Comments

fryfrog commented on 2021-02-12 07:01 (UTC)

You may also be interested in lidarr-develop or lidarr-nightly.

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

fryfrog commented on 2018-03-21 14:46 (UTC)

@binhex, the lidarr.tmpfiles creates and maintains ownership of /var/lib/lidarr and /usr/lib/lidarr. The way of the future! :)

binhex commented on 2018-03-21 12:26 (UTC)

thanks @fryfrog

btw i think you may want to take a look at the lidarr.service file, it still has references to /var/lib/lidarr, which by the look of the PKGBUILD is no longer created.....unless the very action of running the service creates this folder?, i dunno but i thought its worth mentioning.

fryfrog commented on 2018-03-17 19:55 (UTC)

Ah, this is from using the trixie url thing. :/

binhex commented on 2018-03-17 16:39 (UTC)

I'm getting validation failure:-

Validating source files with sha512sums... Lidarr.develop.0.2.0.305.linux.tar.gz ... ?[0m ?[91mFAILED

binhex commented on 2018-03-09 09:31 (UTC)

@fryfrog looks good to me mate, my automated scripts picked up your change and built a new docker image with no issues, so its all good for me.

fryfrog commented on 2018-03-08 17:39 (UTC)

@binhex and @orkeren, check out what I just pushed and see what you think. When Lidarr has regular (pre)releases, we can do away w/ the silliness. We'll still need to manually edit the pkgver, so don't forget to do that! :)

binhex commented on 2018-03-08 10:46 (UTC)

ok how about a bit of regex then so we don't rely on jq:-

lidarr_url=$(curl -s "https://services.lidarr.audio/v1/update/nightly/changes?os=linux" | grep -P -o -m 1 '(?<=url":")[^"]+' | head -1)

orkeren commented on 2018-03-08 10:04 (UTC)

@binhex - that snippet though requires jq which we would have to add as dependency.

orkeren commented on 2018-03-08 10:03 (UTC)

@fryfrog I'll add you. @binhex thanks for that snippet!

binhex commented on 2018-03-06 16:01 (UTC)

This might be of interest @fryfrog @orkeren, json output from appveyor, so you could curl this and then jq to get first entry, that way you can then just re-run without having to alter the url in the PKGBUILD:-

lidarr_url=$(curl "https://services.lidarr.audio/v1/update/nightly/changes?os=linux" | jq -r '.[0].url')