2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
2022-04-29 21:55:53 +02:00
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
2022-03-20 13:19:37 +01:00
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
2022-04-29 21:55:53 +02:00
|
|
|
# Website : https://pozol.eu
|
2022-03-20 13:19:37 +01:00
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
|
|
|
pkgname=gnutls
|
2024-01-17 12:36:40 +01:00
|
|
|
pkgver=3.8.3
|
2023-11-16 22:13:51 +01:00
|
|
|
pkgrel=01
|
|
|
|
pkgdesc="A library which provides a secure layer over a reliable transport layer w/o zstd "
|
2022-03-20 13:19:37 +01:00
|
|
|
url="https://www.gnutls.org/"
|
|
|
|
options=('!zipman')
|
|
|
|
#options=('!zipman' 'debug') # comment or rm zipman option above, uncomment here to have gnutls-debug pkg produced
|
2023-08-13 10:23:26 +02:00
|
|
|
depends=('glibc' 'gcc-libs' 'gmp' 'libtasn1' 'readline' 'zlib' 'nettle'
|
2023-11-16 22:13:51 +01:00
|
|
|
'libp11-kit' 'libidn2' 'libidn2.so' 'libunistring' 'brotli')
|
|
|
|
makedepends=('tpm2-tss' 'gtk-doc' 'autoconf' 'automake' 'gettext') # gtk-doc required for autoreconf when patching
|
2022-05-07 02:11:34 +02:00
|
|
|
checkdepends=('net-tools' 'tpm2-tools')
|
2023-02-15 01:35:34 +01:00
|
|
|
optdepends=('tpm2-tss: support for TPM2 wrapped keys')
|
2023-09-24 23:22:18 +02:00
|
|
|
backup=(etc/gnutls/config
|
|
|
|
etc/modules-load.d/gnutls.conf)
|
|
|
|
source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.tar.xz{,.sig}
|
2023-11-16 22:13:51 +01:00
|
|
|
config
|
|
|
|
gnutls-ktls_disable_keyupdate_test.patch)
|
2022-05-25 22:50:24 +02:00
|
|
|
|
2022-08-16 08:20:43 +02:00
|
|
|
prepare() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
2023-11-16 22:13:51 +01:00
|
|
|
patch -Np1 -i ../gnutls-ktls_disable_keyupdate_test.patch
|
|
|
|
autoreconf -vfi
|
2022-08-16 08:20:43 +02:00
|
|
|
}
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static \
|
|
|
|
--with-idn \
|
2022-05-24 13:03:11 +02:00
|
|
|
--with-brotli \
|
|
|
|
--without-zstd \
|
|
|
|
--with-tpm2 \
|
|
|
|
--enable-openssl-compatibility \
|
2023-09-24 23:22:18 +02:00
|
|
|
--enable-ktls \
|
2022-05-24 13:03:11 +02:00
|
|
|
--with-default-trust-store-pkcs11="pkcs11:"
|
2023-02-15 01:35:34 +01:00
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2022-09-29 21:43:56 +02:00
|
|
|
check() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
2023-09-24 23:22:18 +02:00
|
|
|
|
2022-09-29 21:43:56 +02:00
|
|
|
make check
|
|
|
|
}
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
2023-09-24 23:22:18 +02:00
|
|
|
# prepare to load tls module required for ktls
|
|
|
|
install -dm755 "$pkgdir"/etc/modules-load.d
|
|
|
|
echo "#tls" > "$pkgdir"/etc/modules-load.d/gnutls.conf
|
|
|
|
|
|
|
|
# disable ktls by default for now
|
|
|
|
install -dm755 "$pkgdir"/etc/gnutls
|
|
|
|
install -Dm644 "${srcdir}"/config "$pkgdir"/etc/gnutls/config
|
2024-01-17 12:36:40 +01:00
|
|
|
|
|
|
|
# license due to notice about gmp/nettle
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
2023-09-24 23:22:18 +02:00
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
# 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 {} \;
|
|
|
|
}
|
|
|
|
|
2023-08-13 10:23:26 +02:00
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
|
|
|
|
arch=(x86_64)
|
2022-03-20 13:19:37 +01:00
|
|
|
|
2024-01-17 12:36:40 +01:00
|
|
|
#license=('GPL3' 'LGPL2.1')
|
|
|
|
license=('GPL-3.0-or-later AND LGPL-2.1-or-later')
|
2022-03-20 13:19:37 +01:00
|
|
|
|
2023-02-15 01:35:34 +01:00
|
|
|
validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # "Daiki Ueno <ueno@unixuser.org>"
|
|
|
|
#validpgpkeys=('5D46CB0F763405A7053556F47A75A648B3F9220C') # "Zoltan Fridrich <zfridric@redhat.com>"
|
|
|
|
|
2024-01-17 12:36:40 +01:00
|
|
|
sha256sums=(f74fc5954b27d4ec6dfbb11dea987888b5b124289a3703afcada0ee520f4173e # gnutls-3.8.3.tar.xz
|
|
|
|
9794181088256ab5cdfb36938effcdd52dec3caae8c119e90433f8ce9d433bd9 # gnutls-3.8.3.tar.xz.sig
|
2023-11-16 22:13:51 +01:00
|
|
|
22e614510fe52defe8c233ce3e5ead2205739fd967657ce3176ca121f3c562b5 # config
|
|
|
|
2a911615739cb327b6dced36b595ea10c89f40bb7274d062dab14a9ecfe89708) # gnutls-ktls_disable_keyupdate_test.patch
|
2022-05-28 00:12:51 +02:00
|
|
|
|
2024-01-17 12:36:40 +01:00
|
|
|
## 0f3bd1b4cf00ea56e06c96ae15ae6d661689e01ad8c28903b3e51177b6a72c21 gnutls-3.8.3-01-x86_64.pkg.tar.lz
|
2023-01-31 21:17:45 +01:00
|
|
|
|