Package Details: autobrr 1.41.0-1

Git Clone URL: https://aur.archlinux.org/autobrr.git (read-only, click to copy)
Package Base: autobrr
Description: The modern download automation tool for torrents
Upstream URL: https://autobrr.com
Licenses: GPL2
Submitter: grawlinson
Maintainer: grawlinson (fryfrog)
Last Packager: fryfrog
Votes: 2
Popularity: 0.150561
First Submitted: 2022-08-21 08:54 (UTC)
Last Updated: 2024-04-16 20:13 (UTC)

Latest Comments

1 2 Next › Last »

fryfrog commented on 2024-04-04 04:04 (UTC)

On Discord, @jab started a thread about this. Your $LDFLAGS has a space in it somewhere. I just pushed a PKGBUILD change to add '' to that line, but I haven't bumped the pkgrel. Pull that or make the change yourself and see if it helps. Hop on Discord for details, "archlinux build is failing" is the thread.

veiam commented on 2024-04-04 03:54 (UTC)

Updating from 1.39.1 to 1.40.1 has started to give me the following error:

flag provided but not defined: -Wl,--sort-common
usage: link [options] main.o

fryfrog commented on 2024-01-04 04:26 (UTC)

Hey @grawlinson, I notice autobrr is flagged out of date fairly often and for awhile. Would you like help? I'd be happy to co-maintain w/ you. I take care of most of the aur packages in this stack of software.

fryfrog commented on 2023-08-10 14:09 (UTC) (edited on 2023-08-10 14:09 (UTC) by fryfrog)

It builds inside a clean chroot for me too, what in the world?

I had nodejs and npm installed to start, added pnpm package when it failed, would that cause nodejs package to not provide them? I'll play around w/ this a little more later.

grawlinson commented on 2023-08-10 04:53 (UTC)

It works in (and out of) a clean chroot, so the problem lies elsewhere.

fryfrog commented on 2023-08-10 03:53 (UTC)

When I updated autobrr w/ paru, it did not install any additional depedencies. It then failed trying to find pnpm. After installing extras/pnpm, it worked.

fryfrog@apollo ~  ❯ paru -Ql nodejs | grep bin
nodejs /usr/bin/
nodejs /usr/bin/corepack
nodejs /usr/bin/node
nodejs /usr/share/doc/node/gdbinit
fryfrog@apollo ~  ❯ paru -Qo $( which pnpm )
/usr/bin/pnpm is owned by pnpm 8.6.12-1

grawlinson commented on 2023-08-10 03:46 (UTC)

See L55-58 of the PKGBUILD: nodejs provides corepack, which provides npm, yarn, and pnpm.

fryfrog commented on 2023-08-10 03:01 (UTC)

I think pnpm needs to be a dependency. I just tried to upgrade and it wanted to run that, but twasn't installed.

katt commented on 2023-06-26 13:14 (UTC)

pnpm is in the official repos, and autobrr builds and runs just fine when built with it

diff --git a/PKGBUILD b/PKGBUILD
index 9852d96..a95d5ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,7 +11,7 @@ depends=('glibc')
 makedepends=(
   'git'
   'go'
-  'nodejs'
+  'pnpm'
 )
 optdepends=(
   'postgresql'
@@ -52,11 +52,6 @@ prepare() {
   export GOPATH="${srcdir}"
   go mod download

-  # setup corepack
-  mkdir tmp-bin
-  corepack enable --install-directory "$(pwd)/tmp-bin"
-  export PATH="$(pwd)/tmp-bin:$PATH"
-
   # download node dependencies
   cd web
   pnpm install --frozen-lockfile

katt commented on 2023-05-18 09:02 (UTC)

Upstream switched to pnpm from yarn, maybe we should do the same in the pkgbuild?

https://github.com/autobrr/autobrr/commit/762a0bb36bda522084d97463ee4dab8f3e23cef8