Skip to content

Commit d0c8c99

Browse files
committed
updpkg: 2.5.0
1 parent 2b3bdee commit d0c8c99

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.SRCINFO

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgbase = gotify-server
22
pkgdesc = A simple server for sending and receiving messages in real-time per WebSocket.
3-
pkgver = 2.4.0
3+
pkgver = 2.5.0
44
pkgrel = 1
55
url = https://gotify.net/
66
install = gotify-server.install
@@ -16,13 +16,13 @@ pkgbase = gotify-server
1616
depends = glibc
1717
options = emptydirs
1818
backup = etc/gotify/config.yml
19-
source = gotify-server-2.4.0.tar.gz::https://github.com/gotify/server/archive/v2.4.0.tar.gz
19+
source = gotify-server-2.5.0.tar.gz::https://github.com/gotify/server/archive/v2.5.0.tar.gz
2020
source = sysusers.d
2121
source = gotify-server.service
2222
source = config.patch
23-
sha256sums = ef217ca84232334ed03dcf30ccb67315a07508e6f5a58a923c01ea197e198226
23+
sha256sums = 209eb48ac233ff8d9d67b405c4063cb5a33612688e1e8183ebade2128c69c798
2424
sha256sums = 39fc913f205bbb102ba42ce3d419f2feb0f9143f14ccffd242b3cd5f51a8c0de
2525
sha256sums = 9aa04ff9a2981aa885d4f8df7467c4d7722aa12de7ae27376a4a11b559a0d1e2
26-
sha256sums = a8a511e2b98fa548391a1602fcfa05df0e10fae6f5904cbfc4202566f2dd8265
26+
sha256sums = c251cc61b80968f606df9f9840519456fa5ba5f35ced44f73fda49059ed650b6
2727

2828
pkgname = gotify-server

PKGBUILD

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: jmattheis <contact AT jmattheis DOT de>
22
# Contributor: ml <[email protected]>
33
pkgname=gotify-server
4-
pkgver=2.4.0
4+
pkgver=2.5.0
55
pkgrel=1
66
pkgdesc='A simple server for sending and receiving messages in real-time per WebSocket.'
77
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
@@ -18,10 +18,10 @@ source=(
1818
'gotify-server.service'
1919
'config.patch'
2020
)
21-
sha256sums=('ef217ca84232334ed03dcf30ccb67315a07508e6f5a58a923c01ea197e198226'
21+
sha256sums=('209eb48ac233ff8d9d67b405c4063cb5a33612688e1e8183ebade2128c69c798'
2222
'39fc913f205bbb102ba42ce3d419f2feb0f9143f14ccffd242b3cd5f51a8c0de'
2323
'9aa04ff9a2981aa885d4f8df7467c4d7722aa12de7ae27376a4a11b559a0d1e2'
24-
'a8a511e2b98fa548391a1602fcfa05df0e10fae6f5904cbfc4202566f2dd8265')
24+
'c251cc61b80968f606df9f9840519456fa5ba5f35ced44f73fda49059ed650b6')
2525

2626
prepare() {
2727
patch -N -p1 -d "server-$pkgver" <config.patch

config.patch

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
diff -ura package.orig/config.example.yml package.new/config.example.yml
22
--- package.orig/config.example.yml 2020-03-08 14:59:02.828681120 +0100
33
+++ package.new/config.example.yml 2020-03-12 02:30:06.273495477 +0100
4-
@@ -3,7 +3,7 @@
5-
4+
@@ -4,7 +4,7 @@
65
server:
7-
listenaddr: "" # the address to bind on, leave empty to bind on all addresses
6+
keepaliveperiodseconds: 0 # 0 = use Go default (15s); -1 = disable keepalive; set the interval in which keepalive packets will be sent. Only change this value if you know what you are doing.
7+
listenaddr: "" # the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock".
88
- port: 80 # the port the HTTP server will listen on
99
+ port: 9071 # the port the HTTP server will listen on
10-
10+
1111
ssl:
1212
enabled: false # if https should be enabled
13-
@@ -15,7 +15,7 @@
13+
@@ -16,7 +16,7 @@
1414
letsencrypt:
1515
enabled: false # if the certificate should be requested from letsencrypt
1616
accepttos: false # if you accept the tos from letsencrypt
@@ -19,7 +19,7 @@ diff -ura package.orig/config.example.yml package.new/config.example.yml
1919
hosts: # the hosts for which letsencrypt should request certificates
2020
# - mydomain.tld
2121
# - myotherdomain.tld
22-
@@ -42,12 +43,12 @@
22+
@@ -46,12 +46,12 @@
2323

2424
database: # for database see (configure database section)
2525
dialect: sqlite3

0 commit comments

Comments
 (0)