diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-18 17:54:03 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-08-23 06:59:47 +0000 |
commit | 55e4bbb122e0f0c8520c50e8dd9700f02ff6f3a8 (patch) | |
tree | 5cfe89a92d05db80a52d85e6e2cffedfaec25b24 | |
parent | 37efd4ece41892564b5e2ce839fba7c82a1d2b87 (diff) | |
download | aports-55e4bbb122e0f0c8520c50e8dd9700f02ff6f3a8.tar.bz2 aports-55e4bbb122e0f0c8520c50e8dd9700f02ff6f3a8.tar.xz |
main/gnutls: upgrade to 3.6.9
-rw-r--r-- | main/gnutls/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/main/gnutls/APKBUILD b/main/gnutls/APKBUILD index ea443bb5a1..e215ffb8e5 100644 --- a/main/gnutls/APKBUILD +++ b/main/gnutls/APKBUILD @@ -2,8 +2,8 @@ # Contributor: Michael Mason <ms13sp@gmail.com> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=gnutls -pkgver=3.6.8 -pkgrel=1 +pkgver=3.6.9 +pkgrel=0 pkgdesc="A TLS protocol implementation" url="https://www.gnutls.org/" arch="all" @@ -16,7 +16,13 @@ _v=${pkgver%.*} case $pkgver in *.*.*.*) _v=${_v%.*};; esac -source="https://www.gnupg.org/ftp/gcrypt/gnutls/v${_v}/gnutls-$pkgver.tar.xz" +source="https://www.gnupg.org/ftp/gcrypt/gnutls/v$_v/gnutls-$pkgver.tar.xz" + +if [ "$CARCH" = x86 ]; then + # Know bug upstream waiting to be fixed + # https://gitlab.com/gnutls/gnutls/issues/818 + options="$options textrels" +fi # secfixes: # 3.6.7-r0: @@ -65,4 +71,4 @@ xx() { mv "$pkgdir"/usr/lib/lib*xx.so.* "$subpkgdir"/usr/lib/ } -sha512sums="71f0899de0ffb2a39b25928042114e2bbfde7fbf2029d9f91f60bf60794916d13f544fc97337e4e3282e7faa17e79a8012b0e08f98805bee543c0ba4e5d5a905 gnutls-3.6.8.tar.xz" +sha512sums="a9fd0f4edae4c081d5c539ba2e5574a4d7294bc00c5c73ea25ce26cb7fd126299c2842a282d45ef5cf0544108f27066e587df28776bc7915143d190d7d5b9d07 gnutls-3.6.9.tar.xz" |