Package Details: gotify-server-bin 2.2.4-1

Git Clone URL: https://aur.archlinux.org/gotify-server-bin.git (read-only, click to copy)
Package Base: gotify-server-bin
Description: A simple server for sending and receiving messages
Upstream URL: https://github.com/gotify/server
Keywords: gotify notify push
Licenses: MIT
Conflicts: gotify-server
Provides: gotify-server
Submitter: buckket
Maintainer: buckket (Xyne)
Last Packager: Xyne
Votes: 2
Popularity: 0.000000
First Submitted: 2019-04-18 14:47 (UTC)
Last Updated: 2023-01-29 22:21 (UTC)

Latest Comments

1 2 Next › Last »

Xyne commented on 2021-12-10 02:27 (UTC)

@FieldOfClay Fixed.

FieldOfClay commented on 2021-12-09 07:16 (UTC) (edited on 2021-12-09 07:18 (UTC) by FieldOfClay)

This still doesn't work on armv7/aarch64 as amd64 is hard coded in the first line of package(). Unfortunately it can't be easily fixed by using $CARCH, as gotify uses different arch descriptions to Arch Linux.

For aarch64 it should be:

install -Dm755 gotify-linux-arm64 "$pkgdir/usr/bin/$_pkgname"

and armv7:

install -Dm755 gotify-linux-arm-7 "$pkgdir/usr/bin/$_pkgname"

Xyne commented on 2021-12-04 21:28 (UTC) (edited on 2023-01-02 20:35 (UTC) by Xyne)

The package had been flagged out-of-date for over a month and a half so I have added myself as a co-maintainer and updated it. I've included the requested changes to support multiple architectures and I've also included the service file from the gotify-server package which has more extensive hardening.

Version 2.1.1 was released just over an hour ago but the binaries are not yet available. I will bump the version when they are uploaded.

<deleted-account> commented on 2021-08-05 21:48 (UTC)

Could you please add the other architectures to the PKGBUILD as described below? Would like to use this on aarch64 but the build fails for me on the regular package.

amo commented on 2021-05-22 10:31 (UTC)

Thank you for packaging this. I've noticed since the 2.0.18 release that the checksum verification does not pass. Can you please update the checksums with new releases?

k8ie commented on 2020-12-18 16:16 (UTC) (edited on 2020-12-18 21:10 (UTC) by k8ie)

@RuneArch Definitely, and it's pretty simple too!

source_x86_64=("$url/releases/download/v${pkgver}/gotify-linux-amd64.zip")
source_armv7h=("$url/releases/download/v${pkgver}/gotify-linux-arm-7.zip")
source_aarch64=("$url/releases/download/v${pkgver}/gotify-linux-arm64.zip")

sha256sums_x86_64=('whatever')
sha256sums_armv7h=('whatever2')
sha256sums_aarch64=('whatever3')

A few binary packages that do this come to mind. jellyfin-server-bin syncthing-bin

buckket commented on 2020-10-07 17:08 (UTC)

@caltlgin You probably still have the old gotify-linux-amd64.zip lying around. makepkg won’t overwrite it automatically. The checksum is correct. Just double checked.