From 7a1ce027c3c4b944e57afbc0450ae9a6b28959cd Mon Sep 17 00:00:00 2001 From: EWouters <6179932+EWouters@users.noreply.github.com> Date: Fri, 1 Sep 2023 20:41:12 +0200 Subject: [PATCH] Ports/libgpg-error: Update libgpg-error to version 1.47 This also sets the sysroot to to allow libassuan to find it when building with Clang, and it explicitly installs gpgrt-config. --- Ports/AvailablePorts.md | 2 +- Ports/libgpg-error/package.sh | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 063e368c5e8..6aef75543b3 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -148,7 +148,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`libfts`](libfts/) | libfts | 1.2.7 | https://github.com/void-linux/musl-fts | | [`libgcrypt`](libgcrypt/) | libgcrypt | 1.10.2 | https://gnupg.org/software/libgcrypt/index.html | | [`libgd`](libgd/) | libgd | 2.3.3 | https://libgd.github.io/ | -| [`libgpg-error`](libgpg-error/) | libgpg-error | 1.45 | https://gnupg.org/software/libgpg-error/index.html | +| [`libgpg-error`](libgpg-error/) | libgpg-error | 1.47 | https://gnupg.org/software/libgpg-error/index.html | | [`libiconv`](libiconv/) | GNU libiconv | 1.17 | https://www.gnu.org/software/libiconv/ | | [`libicu`](libicu/) | ICU | 69.1 | http://site.icu-project.org/ | | [`libjodycode`](libjodycode/) | libjodycode | 3.1 | https://github.com/jbruchon/libjodycode | diff --git a/Ports/libgpg-error/package.sh b/Ports/libgpg-error/package.sh index 35240b7b460..e0940f91f35 100755 --- a/Ports/libgpg-error/package.sh +++ b/Ports/libgpg-error/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port='libgpg-error' -version='1.45' +version='1.47' files=( - "https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${version}.tar.bz2#570f8ee4fb4bff7b7495cff920c275002aea2147e9a1d220c068213267f80a26" + "https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${version}.tar.bz2#9e3c670966b96ecc746c28c2c419541e3bcb787d1a73930f5e5f5e1bcbbb9bdb" ) useconfigure='true' use_fresh_config_sub='true' @@ -17,6 +17,8 @@ configure() { run ./configure \ --host="${SERENITY_ARCH}-pc-serenity" \ --build="$("${workdir}/build-aux/config.guess")" \ + --with-sysroot="${SERENITY_INSTALL_ROOT}" \ --disable-tests \ - --disable-threads + --disable-threads \ + --enable-install-gpg-error-config }