summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--linhes/calamares/.SRCINFO22
-rw-r--r--linhes/calamares/.gitignore4
-rw-r--r--linhes/calamares/PKGBUILD97
-rw-r--r--linhes/certbot-dns-duckdns/PKGBUILD6
-rw-r--r--linhes/certbot-dns-duckdns/__changelog1
-rw-r--r--linhes/libhdhomerun/PKGBUILD4
-rw-r--r--linhes/libsignal-client/PKGBUILD21
-rw-r--r--linhes/mythtv/PKGBUILD2
-rw-r--r--linhes/parsec-bin/PKGBUILD23
-rw-r--r--linhes/plex-media-server/PKGBUILD12
-rw-r--r--linhes/pyqt5-webengine/PKGBUILD2
-rw-r--r--linhes/python-requests-cache/PKGBUILD2
-rw-r--r--linhes/python-timeout-decorator/PKGBUILD14
-rw-r--r--linhes/python-url-normalize/PKGBUILD2
-rw-r--r--linhes/signal-cli/PKGBUILD18
-rw-r--r--linhes/zabbix/PKGBUILD6
16 files changed, 137 insertions, 99 deletions
diff --git a/linhes/calamares/.SRCINFO b/linhes/calamares/.SRCINFO
new file mode 100644
index 0000000..37a540f
--- /dev/null
+++ b/linhes/calamares/.SRCINFO
@@ -0,0 +1,22 @@
+pkgbase = calamares
+ pkgdesc = Distribution-independent installer framework
+ pkgver = 3.4.0
+ pkgrel = 1
+ url = https://codeberg.org/Calamares/calamares
+ arch = i686
+ arch = x86_64
+ license = GPL-3.0-or-later
+ makedepends = extra-cmake-modules
+ makedepends = ninja
+ makedepends = qt6-tools
+ makedepends = qt6-translations
+ depends = kcoreaddons
+ depends = kpmcore
+ depends = libpwquality
+ depends = qt6-declarative
+ depends = qt6-svg
+ depends = yaml-cpp
+ source = calamares-3.4.0.tar.gz::https://codeberg.org/Calamares/calamares/archive/v3.4.0.tar.gz
+ sha256sums = 45de0214f4a16095374e2ed3982032c34f0f2c2104987089152e4b928dd0548f
+
+pkgname = calamares
diff --git a/linhes/calamares/.gitignore b/linhes/calamares/.gitignore
new file mode 100644
index 0000000..018a3de
--- /dev/null
+++ b/linhes/calamares/.gitignore
@@ -0,0 +1,4 @@
+*
+!PKGBUILD
+!.SRCINFO
+!.gitignore
diff --git a/linhes/calamares/PKGBUILD b/linhes/calamares/PKGBUILD
index 4acad0c..eeb1b03 100644
--- a/linhes/calamares/PKGBUILD
+++ b/linhes/calamares/PKGBUILD
@@ -1,46 +1,69 @@
-# Ezarcher Calamares Installer pkgbuild
+# Maintainer:
+# Contributor: Rustmilian Rustmilian@proton.me
-pkgname=calamares
-pkgver=3.3.12
-_pkgver=3.3.12
-pkgrel=2
-pkgdesc='Distribution-independent installer framework'
-arch=('x86_64')
-license=(GPL)
-url="https://github.com/calamares/calamares"
-license=('LGPL')
-depends=('cryptsetup' 'dmidecode' 'doxygen' 'gptfdisk' 'hwinfo' 'kconfig' 'kcoreaddons' 'ki18n' 'kparts'
- 'kpmcore' 'kservice' 'kwidgetsaddons' 'libatasmart' 'libplasma' 'libpwquality' 'polkit-qt6'
- 'pybind11' 'python' 'qt6-declarative' 'qt6-svg' 'qt6-tools' 'qt6-virtualkeyboard' 'qt6-webengine'
- 'rsync' 'solid' 'squashfs-tools' 'udisks2' 'upower' 'yaml-cpp')
-makedepends=('cmake' 'extra-cmake-modules' 'gawk' 'git' 'kpmcore' 'python-jsonschema' 'python-pyaml'
- 'python-unidecode')
+_pkgname="calamares"
+pkgname="$_pkgname"
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="Distribution-independent installer framework"
+url="https://codeberg.org/Calamares/calamares"
+license=("GPL-3.0-or-later")
+arch=('i686' 'x86_64')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/calamares/calamares/releases/download/v$pkgver/calamares-$pkgver.tar.gz")
-sha256sums=('f44110a91a4394f34728042136af4b906541babc37e72b3b33664888b3220f2d')
+depends=(
+ 'kcoreaddons'
+ 'kpmcore'
+ 'libpwquality'
+ 'qt6-declarative'
+ 'qt6-svg'
+ 'yaml-cpp'
+)
+makedepends=(
+ 'extra-cmake-modules'
+ 'ninja'
+ 'qt6-tools'
+ 'qt6-translations'
+)
+
+_pkgsrc="$_pkgname"
+_pkgext="tar.gz"
+source=("$_pkgname-$pkgver.$_pkgext"::"$url/archive/v$pkgver.$_pkgext")
+sha256sums=('45de0214f4a16095374e2ed3982032c34f0f2c2104987089152e4b928dd0548f')
build() {
- cd ${srcdir}/calamares-${pkgver}
+ local _skip_modules=(
+ dracut
+ dracutlukscfg
+ dummycpp
+ dummyprocess
+ dummypython
+ dummypythonqt
+ initramfs
+ initramfscfg
+ interactiveterminal
+ packagechooser
+ packagechooserq
+ services-openrc
+ )
+
+ local _cmake_options=(
+ -B build
+ -S "$_pkgsrc"
+ -G Ninja
+ -DCMAKE_BUILD_TYPE=Release
+ -DCMAKE_INSTALL_PREFIX='/usr'
+ -DCMAKE_INSTALL_LIBDIR='lib'
+ -DWITH_QT6=ON
+ -DINSTALL_CONFIG=ON
+ -DSKIP_MODULES="${_skip_modules[*]}"
+ -DBUILD_TESTING=OFF
+ -Wno-dev
+ )
- mkdir -p build
- cd build
- cmake .. \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=/usr/lib \
- -DINSTALL_CONFIG=OFF \
- -DWITH_QT6=ON \
- -DWITH_PYBIND11=ON \
- -DSKIP_MODULES="tracking webview interactiveterminal initramfs netinstall \
- initramfscfg dracut dracutlukscfg finishedq summaryq \
- dummyprocess dummypython dummycpp usersq oemid packagechooser \
- dummypythonqt services-openrc keyboardq zfs zfshostid \
- localeq plasmalnf welcomeq notesqml packagechooserq"
- make
+ cmake "${_cmake_options[@]}"
+ cmake --build build
}
package() {
- cd ${srcdir}/calamares-${pkgver}/build
- make DESTDIR="$pkgdir" install
- install -Dm644 "../calamares.desktop" "$pkgdir/usr/share/applications/calamares.desktop"
+ DESTDIR="$pkgdir" cmake --install build
}
diff --git a/linhes/certbot-dns-duckdns/PKGBUILD b/linhes/certbot-dns-duckdns/PKGBUILD
index cb1f3dd..e04e65c 100644
--- a/linhes/certbot-dns-duckdns/PKGBUILD
+++ b/linhes/certbot-dns-duckdns/PKGBUILD
@@ -4,7 +4,7 @@
# Maintainer: eomanis at web dot de
pkgname='certbot-dns-duckdns'
-_pkgverUpstream="1.7.0"
+_pkgverUpstream="1.8.0"
pkgver="$_pkgverUpstream"
pkgrel=1
pkgdesc="Plugin for certbot for a DNS-01 challenge with a DuckDNS domain"
@@ -12,9 +12,9 @@ arch=('any')
url='https://github.com/infinityofspace/certbot_dns_duckdns'
license=('MIT')
depends=('certbot' 'python-dnspython' 'python-requests')
-makedepends=( 'python-build' 'python-installer' 'python-wheel' 'python-setuptools')
+makedepends=( 'python-build' 'python-installer' 'python-setuptools' )
source=("https://github.com/infinityofspace/certbot_dns_duckdns/archive/refs/tags/v${_pkgverUpstream}.tar.gz")
-sha384sums=('df71e7014252716790a058d375729926fd18db1b9d2066dc611ff3e869f5a49d626f03ca24af641f12614127da687602')
+sha384sums=('6b979300c12140862d086fa59075f50e65cb05e106fd3e22e5db852ee620c3f36dd99ff6ed84f80b66f3470fa5d05310')
build() {
local srcRootDir="${srcdir}/certbot_dns_duckdns-${_pkgverUpstream}"
diff --git a/linhes/certbot-dns-duckdns/__changelog b/linhes/certbot-dns-duckdns/__changelog
deleted file mode 100644
index d9862a1..0000000
--- a/linhes/certbot-dns-duckdns/__changelog
+++ /dev/null
@@ -1 +0,0 @@
-PKGBUILD: add to makedepends python-setuptools
diff --git a/linhes/libhdhomerun/PKGBUILD b/linhes/libhdhomerun/PKGBUILD
index 74944ce..f6d0bb3 100644
--- a/linhes/libhdhomerun/PKGBUILD
+++ b/linhes/libhdhomerun/PKGBUILD
@@ -2,11 +2,11 @@
# Contributor: Grey Christoforo <first name [at] last name [dot] net>
pkgname=libhdhomerun
-pkgver=20250506
+pkgver=20250815
pkgrel=1
pkgdesc="Library and command line utility for interfacing with HDHomeRun device"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
-url="https://www.silicondust.com/downloads"
+url="https://www.silicondust.com/support/downloads"
license=('LGPL')
optdepends=('hdhomerun-firmware-bin: firmware for hdhomerun devices'
'hdhomerun_config_gui: hdhomerun configuration gui')
diff --git a/linhes/libsignal-client/PKGBUILD b/linhes/libsignal-client/PKGBUILD
index 3002ea6..3ca2bf0 100644
--- a/linhes/libsignal-client/PKGBUILD
+++ b/linhes/libsignal-client/PKGBUILD
@@ -4,7 +4,7 @@ pkgname=libsignal-client
_pkgname=libsignal
_libname=libsignal_jni
_java_version=17
-pkgver=0.86.1
+pkgver=0.87.4
pkgrel=1
pkgdesc='Library for the Signal Protocol.'
url="https://github.com/signalapp/${_pkgname}"
@@ -16,9 +16,15 @@ arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
license=('AGPL-3.0-only')
source=(
"${_pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/refs/tags/v$pkgver.tar.gz"
+ "boring::git+https://github.com/signalapp/boring"
+ "curve25519-dalek::git+https://github.com/signalapp/curve25519-dalek"
+ "SparsePostQuantumRatchet.git::git+https://github.com/signalapp/SparsePostQuantumRatchet.git"
)
-sha512sums=('dcc66b97cdee3439add283935fd72d7ec5d30958d022094775ec508618e863f5da8a0f9cc74200c5e41f723c0a84a9667b23e84b9b27f6b0ef037bc94bc380e3')
+sha512sums=('8750e79b31ae26e20809d83721a225a59409c0b1f7a082fa888181f9a45c4359ee6f7938e031fe3707d3b8ff7e23d94891fb460fee67297f475b444604cd6eb5'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
prepare() {
tar xf "${_pkgname}-$pkgver.tar.gz"
@@ -29,9 +35,15 @@ prepare() {
sed -i 's/exit 2/suffix=""/' java/build_jni.sh
sed -i 's/-Xmx4g//' java/gradle.properties
- sed -i "s/cargo build/cargo build --frozen/" java/build_jni.sh
+ sed -i "s/echo_then_run cargo build/__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly cargo build --frozen -Zgit=shallow-deps -Zgitoxide/" java/build_jni.sh
+ sed -i "s/cargo fetch//" java/build_jni.sh
- cargo fetch --locked --target "$(rustc -vV | awk '/^host: / {print $2}')"
+ for repo in boring curve25519-dalek SparsePostQuantumRatchet.git; do
+ sed -i "s|https://github.com/signalapp/${repo}|file://${srcdir}/${repo}|g" Cargo.toml Cargo.lock
+ done
+
+ export RUSTUP_TOOLCHAIN=stable
+ __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly cargo fetch --locked --target "$(rustc -vV | awk '/^host: / {print $2}')" -Zgit=shallow-deps -Zgitoxide
}
build() {
@@ -39,7 +51,6 @@ build() {
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
- export CARGO_NET_GIT_FETCH_WITH_CLI=true
export JAVA_HOME="$(ls -d /usr/lib/jvm/java-${_java_version}-* | head -n1)"
./build_jni.sh desktop
GRADLE_USER_HOME="${srcdir}/.gradle" ./gradlew --no-daemon :client:assemble -PskipAndroid=true
diff --git a/linhes/mythtv/PKGBUILD b/linhes/mythtv/PKGBUILD
index 0ff9cce..a409d3b 100644
--- a/linhes/mythtv/PKGBUILD
+++ b/linhes/mythtv/PKGBUILD
@@ -7,7 +7,7 @@
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=mythtv
-pkgver=35+fixes.20251230.805e05b7
+pkgver=35+fixes.20260213.cf1312c0
pkgrel=1
pkgdesc="A Homebrew PVR project"
arch=('x86_64')
diff --git a/linhes/parsec-bin/PKGBUILD b/linhes/parsec-bin/PKGBUILD
index 44c2155..a941d88 100644
--- a/linhes/parsec-bin/PKGBUILD
+++ b/linhes/parsec-bin/PKGBUILD
@@ -1,31 +1,20 @@
-# Maintainer : tadly <me@tadly.de>
+# Maintainer : Zen Wen <zen.8841@gmail.com>
+# Contributor : DXC-0 <thecyberarcher@protonmail.ch>
+# Contributor : tadly <me@tadly.de>
pkgname=parsec-bin
pkgver=150_97c
-pkgrel=1
+pkgrel=2
pkgdesc='Remotely connect to a gaming pc for a low latency remote computing experience'
url='http://parsec.app'
license=('custom')
arch=('x86_64')
provides=('parsec')
-depends=('gcc-libs' 'libglvnd' 'libxext' 'libxcb' 'ffmpeg4.4' 'openssl-1.1' 'libxi')
+depends=('gcc-libs' 'libglvnd' 'libxext' 'libxcb' 'ffmpeg4.4' 'openssl' 'libxi' 'pipewire-alsa')
optdepends=('libva: For hardware accelerated decoding')
-source=("$pkgname-$pkgver.deb::https://builds.parsecgaming.com/package/parsec-linux.deb")
+source=("$pkgname-$pkgver.deb::https://builds.parsec.app/package/parsec-linux.deb")
sha256sums=('f1691ba3a97534604f5f640c26cceafaef672ccf7ab6eed66114d0abafc2cccf')
-
-#source_arm=("$pkgname-$pkgver.deb::https://builds.parsecgaming.com/package/parsec-rpi.deb")
-#sha256sums_arm=('a98e840dc44f4762018895bd0da704c88887815de0e74e0f39aa7737f5b0e802')
-#
-#source_armv6h=($source_arm)
-#sha256sums_armv6h=($sha256sums_arm)
-#
-#source_armv7h=($source_arm)
-#sha256sums_armv7h=($sha256sums_arm)
-#
-#source_aarch64=($source_arm)
-#sha256sums_aarch64=($sha256sums_arm)
-
options=('!strip')
package() {
diff --git a/linhes/plex-media-server/PKGBUILD b/linhes/plex-media-server/PKGBUILD
index 42ff87f..c399ee7 100644
--- a/linhes/plex-media-server/PKGBUILD
+++ b/linhes/plex-media-server/PKGBUILD
@@ -10,8 +10,8 @@
# Contributor: Praekon <praekon@googlemail.com>
pkgname=plex-media-server
-pkgver=1.42.2.10156
-_pkgsum=f737b826c
+pkgver=1.43.0.10492
+_pkgsum=121068a07
pkgrel=1
pkgdesc='The back-end media server component of Plex.'
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
@@ -39,10 +39,10 @@ sha256sums=('398ba7958598609453f5289b3d5f2389d2756158b340cf28e83c39d9ed60280b'
'c597bee0bcbb59ed791651555a904e5f7e9d2e82f6c6986b6352e5fc38e5b557'
'b7ff6525a3c7a8be885edc85bb523095f8e25ddb38873127e2a4e97b28f2c7ad'
'dbfb5a9a7146a975863c0932f1a68c4b040ec5d7e693361f39ddfbf60885e631')
-sha256sums_x86_64=('5092d8ade2a2f0a1dfb1406d0d4f89d05758da8ca706c6faea8b0125836e8542')
-sha256sums_i686=('9475c0f27061cf97057b8dd5e79f2ffe78baecb128e2e6939e3fbd05be6f6b0c')
-sha256sums_armv7h=('051d072275814384560d700aae07f404f7c2a269be44dbbd57045765b86df25b')
-sha256sums_aarch64=('566dfca0efb3845c87072e9f0ee32984395aa8ce3704874b9e243b5490cc0105')
+sha256sums_x86_64=('88699ccff73dd4232c764c5499a55f28ad11e6d4740190bd23e23c86535578ed')
+sha256sums_i686=('a54bc1c540fa407febb202a07ff03688f552e4e3f516176742a151fea0020751')
+sha256sums_armv7h=('53560561a56e00729e3fde7d2e5698b425caf01ade0d5c352f356c5f2789d4bc')
+sha256sums_aarch64=('62b207e75332c8bea03d69de01a578b0c503ca06aee72b599ce06043560270ba')
prepare() {
if [[ $CARCH = armv7h ]] || [[ $CARCH = aarch64 ]]; then
diff --git a/linhes/pyqt5-webengine/PKGBUILD b/linhes/pyqt5-webengine/PKGBUILD
index e23fc1b..7ad5f93 100644
--- a/linhes/pyqt5-webengine/PKGBUILD
+++ b/linhes/pyqt5-webengine/PKGBUILD
@@ -5,7 +5,7 @@ pkgbase=pyqt5-webengine
pkgname=(python-pyqt5-webengine)
pkgdesc="Python bindings for QtWebEngine"
pkgver=5.15.7
-pkgrel=2
+pkgrel=3
arch=(x86_64)
url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro"
license=(GPL)
diff --git a/linhes/python-requests-cache/PKGBUILD b/linhes/python-requests-cache/PKGBUILD
index e5ddc89..1bde8f5 100644
--- a/linhes/python-requests-cache/PKGBUILD
+++ b/linhes/python-requests-cache/PKGBUILD
@@ -9,7 +9,7 @@ _base=requests-cache
pkgname=python-${_base}
pkgdesc="A persistent cache for python requests"
pkgver=1.2.1
-pkgrel=2
+pkgrel=3
arch=(any)
url="https://github.com/${_base}/${_base}"
license=('custom:BSD-2-clause')
diff --git a/linhes/python-timeout-decorator/PKGBUILD b/linhes/python-timeout-decorator/PKGBUILD
index 38a8e78..2f38af5 100644
--- a/linhes/python-timeout-decorator/PKGBUILD
+++ b/linhes/python-timeout-decorator/PKGBUILD
@@ -3,11 +3,11 @@
_name=timeout-decorator
pkgname=python-${_name}
pkgver=0.5.0
-pkgrel=4
+pkgrel=2
pkgdesc="Timeout decorator for Python"
-arch=('i686' 'x86_64' 'armv6')
+arch=('any')
depends=('python')
-makedepends=('python-setuptools')
+makedepends=(python-build python-installer python-setuptools python-wheel)
url="https://github.com/pnpnpn/timeout-decorator"
license=('MIT')
options=(!emptydirs)
@@ -16,15 +16,13 @@ source=("https://files.pythonhosted.org/packages/source/t/${_name}/${_name}-$pkg
build() {
cd "$srcdir/${pkgname#python-}-$pkgver"
- python setup.py build
+ python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/${pkgname#python-}-$pkgver"
- python setup.py install \
- --root="$pkgdir" \
- --optimize=1
+ python -m installer --destdir="$pkgdir" dist/*.whl
}
-md5sums=('8545649e70b3ca43bcff11f08a996c3e')
+sha256sums=('6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7')
diff --git a/linhes/python-url-normalize/PKGBUILD b/linhes/python-url-normalize/PKGBUILD
index f25ef29..7ec12cc 100644
--- a/linhes/python-url-normalize/PKGBUILD
+++ b/linhes/python-url-normalize/PKGBUILD
@@ -6,7 +6,7 @@ _base=url-normalize
pkgname=python-${_base}
pkgdesc="URL normalization for Python"
pkgver=2.2.1
-pkgrel=1
+pkgrel=2
arch=(any)
url="https://github.com/niksite/${_base}"
license=(MIT)
diff --git a/linhes/signal-cli/PKGBUILD b/linhes/signal-cli/PKGBUILD
index b148945..9827e53 100644
--- a/linhes/signal-cli/PKGBUILD
+++ b/linhes/signal-cli/PKGBUILD
@@ -1,29 +1,21 @@
# Maintainer: asamk <asamk@gmx.de>
pkgname=signal-cli
-pkgver=0.13.22
+pkgver=0.14.0
pkgrel=1
pkgdesc="Provides a commandline and dbus interface for secure Signal messaging."
arch=('any')
url="https://github.com/AsamK/signal-cli"
license=('GPL-3.0-only')
-depends=('java-runtime-headless>=21' 'java-commons-logging' 'sh' 'libsignal-client')
-makedepends=('java-environment>=21' 'gradle' 'asciidoc')
+depends=('java-runtime-headless>=25' 'java-commons-logging' 'sh' 'libsignal-client')
+makedepends=('java-environment>=25' 'gradle' 'asciidoc')
source=("https://github.com/AsamK/${pkgname}/archive/v${pkgver}.tar.gz"
- "https://github.com/AsamK/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc"
+# "https://github.com/AsamK/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc"
"${pkgname}.sh")
-sha512sums=('d5bcefa6b08b85796fd15441ee29bb5d1913d3dee3c786a4381d5f94a228bfd9c8ca00f4c589ef72eab3e563ec6a1eb854c12826bae881b1c0fce1161bfa04cb'
- 'SKIP'
+sha512sums=('3c2a5e90246bb281694fb7fee4a2d5105b9f0b9c15fa9ea92e8947c6800b1a36927af2f69455963a67ddac1e22078c2ab339affb05bfbc7382db61e7871dc31e'
'64f181bd9170af5c462899fba765a92b8225e24c3fd2a25deec31d9879dec76a987de9efa065fc3e60e8f5a787e934e0abbdd43ab94445ad3eecacfe1a9de74d')
validpgpkeys=('FA10826A74907F9EC6BBB7FC2BA2CD21B5B09570')
-prepare() {
- cd "${srcdir}"
- cd "${pkgname}-${pkgver}"
-
- echo ';plugins { id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" }' >> settings.gradle.kts
-}
-
build() {
cd "${srcdir}"
cd "${pkgname}-${pkgver}"
diff --git a/linhes/zabbix/PKGBUILD b/linhes/zabbix/PKGBUILD
index b6fefc1..f87069c 100644
--- a/linhes/zabbix/PKGBUILD
+++ b/linhes/zabbix/PKGBUILD
@@ -4,8 +4,8 @@
pkgbase=zabbix
pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php zabbix-web-service)
-pkgver=7.0.22
-pkgrel=1
+pkgver=7.0.23
+pkgrel=2
arch=(x86_64)
url='https://www.zabbix.com/'
license=('GPL-2.0-only')
@@ -17,7 +17,7 @@ source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgv
zabbix-proxy-mysql.service zabbix-proxy.{sysusers,tmpfiles}
zabbix-web-service.{service,sysusers,tmpfiles})
-sha512sums=('476016cfef14c960a688594033956d380e9effbfabd96b31f24d558c83c36c98af64f747af7711c832c13b203536824838242e6d7dbe0e2ba3bb7fbcf4e5ed11'
+sha512sums=('11ed3a95d3dfd07ad9de7dd7754fbec114e08722f0422f0c67f95c82a9e9db07c199ef4d43927c18294af00759cef66f789ea75bc7b9eae7439f79778aeea314'
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'