core/gnutls to 3.8.9-1

This commit is contained in:
Kevin Mihelich 2025-02-11 00:39:02 +00:00
parent 20ea12545b
commit 058d763064
2 changed files with 17 additions and 23 deletions
core/gnutls

View file

@ -1,6 +1,6 @@
pkgbase = gnutls
pkgdesc = A library which provides a secure layer over a reliable transport layer
pkgver = 3.8.8
pkgver = 3.8.9
pkgrel = 1
url = https://www.gnutls.org/
arch = x86_64
@ -15,6 +15,7 @@ pkgbase = gnutls
depends = libtasn1
depends = zlib
depends = nettle
depends = leancrypto
depends = libp11-kit
depends = libidn2
depends = zstd
@ -25,12 +26,12 @@ pkgbase = gnutls
options = !zipman
backup = etc/gnutls/config
backup = etc/modules-load.d/gnutls.conf
source = https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.8.tar.xz
source = https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.8.tar.xz.sig
source = https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.9.tar.xz
source = https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.9.tar.xz.sig
source = config
source = gnutls-ktls_disable_keyupdate_test.patch
validpgpkeys = 462225C3B46F34879FC8496CD605848ED7E69871
sha256sums = ac4f020e583880b51380ed226e59033244bc536cad2623f2e26f5afa2939d8fb
sha256sums = 69e113d802d1670c4d5ac1b99040b1f2d5c7c05daec5003813c049b5184820ed
sha256sums = SKIP
sha256sums = 22e614510fe52defe8c233ce3e5ead2205739fd967657ce3176ca121f3c562b5
sha256sums = 2a911615739cb327b6dced36b595ea10c89f40bb7274d062dab14a9ecfe89708

View file

@ -5,14 +5,14 @@
# - compile v7 with -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64
pkgname=gnutls
pkgver=3.8.8
pkgver=3.8.9
pkgrel=1
pkgdesc="A library which provides a secure layer over a reliable transport layer"
arch=('x86_64')
license=('GPL-3.0-or-later AND LGPL-2.1-or-later')
url="https://www.gnutls.org/"
options=('!zipman')
depends=('glibc' 'gcc-libs' 'gmp' 'libtasn1' 'zlib' 'nettle'
depends=('glibc' 'gcc-libs' 'gmp' 'libtasn1' 'zlib' 'nettle' 'leancrypto'
'libp11-kit' 'libidn2' 'zstd' 'libidn2.so' 'libunistring' 'brotli')
makedepends=('tpm2-tss'
# required for autoreconf when patching
@ -24,7 +24,7 @@ backup=(etc/gnutls/config
source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.tar.xz{,.sig}
config
gnutls-ktls_disable_keyupdate_test.patch)
sha256sums=('ac4f020e583880b51380ed226e59033244bc536cad2623f2e26f5afa2939d8fb'
sha256sums=('69e113d802d1670c4d5ac1b99040b1f2d5c7c05daec5003813c049b5184820ed'
'SKIP'
'22e614510fe52defe8c233ce3e5ead2205739fd967657ce3176ca121f3c562b5'
'2a911615739cb327b6dced36b595ea10c89f40bb7274d062dab14a9ecfe89708')
@ -41,14 +41,15 @@ build() {
cd ${pkgname}-${pkgver}
[[ $CARCH == "armv7h" ]] && CPPFLAGS+=" -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64"
./configure --prefix=/usr \
--disable-static \
--with-idn \
--with-brotli \
--with-zstd \
--with-tpm2 \
--enable-openssl-compatibility \
--with-default-trust-store-pkcs11="pkcs11:" \
--enable-ktls
--disable-static \
--with-idn \
--with-brotli \
--with-zstd \
--with-tpm2 \
--enable-openssl-compatibility \
--with-default-trust-store-pkcs11="pkcs11:" \
--enable-ktls \
--with-leancrypto
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
@ -69,12 +70,4 @@ package() {
# disable ktls by default for now
install -dm755 "$pkgdir"/etc/gnutls
install -Dm644 "${srcdir}"/config "$pkgdir"/etc/gnutls/config
# license due to notice about gmp/nettle
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# lots of .png files are put into infodir and are gzipped by makepkg! this needs to be fixed by using !zipman
# gzip -9 all files in infodir and manpages manually
find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -n -9 {} \;
find "$pkgdir/usr/share/man" -exec gzip -n -9 {} \;
}