From b60f27b792331dd4dc9eefd87819aacbdb5d3a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Duje=20Mihanovi=C4=87?= Date: Sun, 16 Jun 2024 15:11:14 +0200 Subject: [PATCH] Depend strictly on JDK 21 for building dkaparis on AUR pointed out that the Gradle version currently used by Haveno (8.6) does not support being run with anything after 21. Reflect this in the makedepends. --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 41e2ed8cf43e..29469f5024ac 100755 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = haveno-reto pkgdesc = Decentralised P2P exchange built on Monero and Tor - unofficial Reto network pkgver = 1.0.7 - pkgrel = 1 + pkgrel = 2 url = https://github.com/retoaccess1/haveno-reto install = haveno-reto.install arch = any license = AGPL-3.0-or-later - makedepends = java-environment>=21 + makedepends = java-environment=21 depends = bash depends = java-runtime>=21 conflicts = haveno diff --git a/PKGBUILD b/PKGBUILD index b45b7c335949..48a1e9d578b5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,13 +8,13 @@ pkgname="haveno-reto" pkgver="1.0.7" -pkgrel="1" +pkgrel="2" pkgdesc="Decentralised P2P exchange built on Monero and Tor - unofficial Reto network" arch=("any") url="https://github.com/retoaccess1/${pkgname}" license=("AGPL-3.0-or-later") depends=("bash" "java-runtime>=21") -makedepends=("java-environment>=21") +makedepends=("java-environment=21") conflicts=("haveno") source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz" "${pkgname}.desktop")