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>
|
2024-08-22 17:58:58 +02:00
|
|
|
# PkgSource : url="https://git.disroot.org/joborun-pkg/jobcore/src/branch/main/$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-08-16 02:20:05 +02:00
|
|
|
pkgver=3.8.7
|
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
|
2024-03-20 01:22:05 +01:00
|
|
|
depends=('glibc' 'gcc-libs' 'gmp' 'libtasn1' '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)
|
2024-08-16 02:20:05 +02:00
|
|
|
source=(#https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.tar.xz{,.sig}
|
|
|
|
https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.1.tar.xz{,.sig}
|
2023-11-16 22:13:51 +01:00
|
|
|
config
|
2024-08-16 02:20:05 +02:00
|
|
|
gnutls-ktls_disable_keyupdate_test.patch
|
|
|
|
MR1866.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
|
2024-08-16 02:20:05 +02:00
|
|
|
# fix broken test
|
|
|
|
patch -Np1 -i ../MR1866.patch
|
2023-11-16 22:13:51 +01:00
|
|
|
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
|
|
|
|
2024-08-16 02:20:05 +02:00
|
|
|
validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # "Daiki Ueno <ueno@unixuser.org>"
|
|
|
|
#validpgpkeys=('5D46CB0F763405A7053556F47A75A648B3F9220C') # "Zoltan Fridrich <zfridric@redhat.com>"
|
2023-02-15 01:35:34 +01:00
|
|
|
|
2024-08-16 02:20:05 +02:00
|
|
|
sha256sums=(9ca0ddaccce28a74fa18d738744190afb3b0daebef74e6ad686bf7bef99abd60 # gnutls-3.8.7.tar.xz
|
|
|
|
1303aee2243db853463d74fced547b136933d25938b208f5460d08fe623a7caf # gnutls-3.8.7.1.tar.xz.sig
|
2023-11-16 22:13:51 +01:00
|
|
|
22e614510fe52defe8c233ce3e5ead2205739fd967657ce3176ca121f3c562b5 # config
|
2024-08-16 02:20:05 +02:00
|
|
|
2a911615739cb327b6dced36b595ea10c89f40bb7274d062dab14a9ecfe89708 # gnutls-ktls_disable_keyupdate_test.patch
|
|
|
|
4fe4b334d39eb0a845cda18da1cfdbcbd12ada5fffc9f41d400cee3d2695b509) # MR1866.patch
|
2022-05-28 00:12:51 +02:00
|
|
|
|
2024-08-16 02:20:05 +02:00
|
|
|
## ec04b53238296b8fadc559bce1d8773f975e88b0041beec82050a9981233bf4e gnutls-3.8.7-01-x86_64.pkg.tar.lz
|
2023-01-31 21:17:45 +01:00
|
|
|
|