Date: Monday, February 13, 2023 @ 15:59:39
Author: andyrtr
Revision: 468725
archrelease: copy trunk to testing-x86_64
Added:
gnutls/repos/testing-x86_64/
gnutls/repos/testing-x86_64/PKGBUILD
(from rev 468724, gnutls/trunk/PKGBUILD)
gnutls/repos/testing-x86_64/keys/
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Copied: gnutls/repos/testing-x86_64/PKGBUILD (from rev 468724,
gnutls/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-13 15:59:39 UTC (rev 468725)
@@ -0,0 +1,54 @@
+# Maintainer: Andreas Radke <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+
+pkgname=gnutls
+pkgver=3.8.0
+pkgrel=1
+pkgdesc="A library which provides a secure layer over a reliable transport
layer"
+arch=('x86_64')
+license=('GPL3' 'LGPL2.1')
+url="https://www.gnutls.org/"
+options=('!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit' 'libidn2'
+ 'zstd' 'libidn2.so' 'libunistring' 'brotli')
+makedepends=('tpm2-tss')
+checkdepends=('net-tools' 'tpm2-tools')
+optdepends=('tpm2-tss: support for TPM2 wrapped keys')
+source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha256sums=('0ea0d11a1660a1e63f960f157b197abe6d0c8cb3255be24e1fb3815930b9bdc5'
+ 'SKIP')
+validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # "Daiki Ueno
<[email protected]>"
+#validpgpkeys=('5D46CB0F763405A7053556F47A75A648B3F9220C') # "Zoltan Fridrich
<[email protected]>"
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr \
+ --disable-static \
+ --with-idn \
+ --with-brotli \
+ --with-zstd \
+ --with-tpm2 \
+ --enable-openssl-compatibility \
+ --with-default-trust-store-pkcs11="pkcs11:"
+# --enable-ktls \ # breaks testsuite
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+}
+
+check() {
+ cd ${pkgname}-${pkgver}
+ # disable parallel tests:
+ # FAIL: serv-udp.sh
+# make -j1 check
+ make check
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+
+ # 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 {} \;
+}