From 8535f755926c778f63e65a6ccab7b54fb7f778ac Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 6 May 2025 13:26:49 -0400 Subject: [PATCH] ilot/listmonk: upgrade to 5.0.0 --- ilot/listmonk/APKBUILD | 6 ++++-- ilot/listmonk/use-go-1.23.patch | 12 ++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 ilot/listmonk/use-go-1.23.patch diff --git a/ilot/listmonk/APKBUILD b/ilot/listmonk/APKBUILD index 1bf9721..75df130 100644 --- a/ilot/listmonk/APKBUILD +++ b/ilot/listmonk/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Antoine Martin (ayakael) # Maintainer: Antoine Martin (ayakael) pkgname=listmonk -pkgver=4.1.0 +pkgver=5.0.0 pkgrel=0 pkgdesc='Self-hosted newsletter and mailing list manager with a modern dashboard' arch="all" @@ -18,6 +18,7 @@ source=" $pkgname-$pkgver.tar.gz::https://github.com/knadh/listmonk/archive/v$pkgver.tar.gz listmonk.sh listmonk.openrc + use-go-1.23.patch " install="$pkgname.pre-install $pkgname.post-install $pkgname.post-upgrade" subpackages="$pkgname-openrc" @@ -67,7 +68,8 @@ package() { ln -s /etc/listmonk/config.toml "$pkgdir"/usr/share/webapps/listmonk/config.toml } sha512sums=" -936b33d6de1d69ee4e7f768810116ac997c516754aace0371089bc8106bebee944197864afc11b7bc5725afa9a4f195d6629957bfcdd37c847e3780aa34558ec listmonk-4.1.0.tar.gz +b0875124106ac737550eb340c209f079698c0b9e1f1e55c70eca113720dbc9dcfaac63aa65722299a1448a582cedf0f9ee20b24ea0625d4e780d83e0d6bab198 listmonk-5.0.0.tar.gz 939450af4b23708e3d23a5a88fad4c24b957090bdd21351a6dd520959e52e45e5fcac117a3eafa280d9506616dae39ad3943589571f008cac5abe1ffd8062424 listmonk.sh 8e9c0b1f335c295fb741418246eb17c7566e5e4200a284c6483433e8ddbf5250aa692435211cf062ad1dfcdce3fae9148def28f03f2492d33fe5e66cbeebd4bd listmonk.openrc +17cfaae69348daef4ae68403178444934d1bac9660695ba6a7f125ccfa9aa831ef5443cb90cc626b1a1625efeb82bad9648a58bd45b04ddb3c86a1058001098d use-go-1.23.patch " diff --git a/ilot/listmonk/use-go-1.23.patch b/ilot/listmonk/use-go-1.23.patch new file mode 100644 index 0000000..d1f15fb --- /dev/null +++ b/ilot/listmonk/use-go-1.23.patch @@ -0,0 +1,12 @@ +diff --git a/go.mod.orig b/go.mod +index 1fa857a..1280236 100644 +--- a/go.mod.orig ++++ b/go.mod +@@ -1,6 +1,6 @@ + module github.com/knadh/listmonk + +-go 1.24.1 ++go 1.23.9 + + require ( + github.com/Masterminds/sprig/v3 v3.3.0