Index | Thread | Search

From:
Bjorn Ketelaars <bket@openbsd.org>
Subject:
Re: borgbackup: switch to openssl/3.2
To:
Theo Buehler <tb@theobuehler.org>
Cc:
ports@openbsd.org
Date:
Mon, 15 Apr 2024 06:13:08 +0200

Download raw body.

Thread
On Sun 14/04/2024 23:48, Theo Buehler wrote:
> I'd like to remove openssl/3.1, so switch borgbackup to using 3.2.
>

BUILD_DEPENDS needs to be updated to security/openssl/3.2 as well. With
this, borgbackup-2.0 builds, passes all tests and works for me on amd64.

With the bit below on top of your diff, OK bket@


diff --git Makefile Makefile
index 2a4f6126fa7..274fba2b856 100644
--- Makefile
+++ Makefile
@@ -8,7 +8,7 @@ REVISION =		0
 
 # OpenSSL used for EVP_aes_256_ocb. It is linked statically to avoid conflicting
 # with shared libcrypto from the base OS pulled in via dependencies.
-BUILD_DEPENDS =		security/openssl/3.1
+BUILD_DEPENDS =		security/openssl/3.2
 RUN_DEPENDS =		security/py-argon2-cffi${MODPY_FLAVOR} \
 			sysutils/py-platformdirs${MODPY_FLAVOR}>=3.8.1