Package Details: jellyseerr 2.1.0-4

Git Clone URL: https://aur.archlinux.org/jellyseerr.git (read-only, click to copy)
Package Base: jellyseerr
Description: Request management and media discovery tool for the Plex ecosystem
Upstream URL: https://github.com/Fallenbagel/jellyseerr
Licenses: MIT
Submitter: fryfrog
Maintainer: jab416171 (txtsd)
Last Packager: txtsd
Votes: 11
Popularity: 0.99
First Submitted: 2022-05-28 22:52 (UTC)
Last Updated: 2024-12-15 06:15 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

ajdunevent commented on 2022-10-23 01:25 (UTC) (edited on 2022-10-23 01:32 (UTC) by ajdunevent)

gooder007, glad it worked for you! hint: if you use makepkg -si, it'll make and install the package.

Edit: nevermind about the rest of my message, lol. fixed my problem with the painfully obvious answer.

gooder007 commented on 2022-10-20 21:39 (UTC) (edited on 2022-10-20 21:45 (UTC) by gooder007)

I had a problem with it installing as well. First time installing jellyseerr but I had overseerr installed before without Plex. I uninstalled overseerr and when I tried to install this package I got the following error. I was using paru to install with.


==> Making package: jellyseerr 1.2.1-1 (Wed 19 Oct 2022 05:47:33 PM)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Removing existing $pkgdir/ directory...
==> Starting build()...
patching file package.json
Hunk #1 FAILED at 14.
1 out of 1 hunk FAILED -- saving rejects to file package.json.rej
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'jellyseerr-1.2.1-1': 
error: packages failed to build: jellyseerr-1.2.1-1

I replaced the contents of no-prepare-husky.patch with what ajdunevent has posted and then manually ran makepkg and it worked then I just installed the created pkg with pacman -U and it installed correctly.

Thanks to everyone for creating this application and supporting it!

ajdunevent commented on 2022-10-18 01:13 (UTC) (edited on 2022-10-18 01:15 (UTC) by ajdunevent)

I think the patch file needs to be updated for the new package.json from the source.

The following worked for me:

--- package.json.org
+++ package.json
@@ -18,7 +18,7 @@
     "typecheck": "yarn typecheck:server && yarn typecheck:client",
     "typecheck:server": "tsc --project server/tsconfig.json --noEmit",
     "typecheck:client": "tsc --noEmit",
-    "prepare": "husky install",
+    "_prepare": "husky install",
     "cypress:open": "cypress open",
     "cypress:prepare": "ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/scripts/prepareTestDb.ts",
     "cypress:build": "yarn build && yarn cypress:prepare"