Update gnutls from 3.6.2 to 3.6.3 (#2508)

Add libidn2 dependency

Comment tests

Add pre-built binaries

Add libidn2 pre-built binaries

Add libidn2 to core_packages.txt

Restore libunistring dependency
This commit is contained in:
Ed Reel
2018-08-05 12:01:10 -05:00
committed by Chris Thurber
parent 90b99caa4d
commit c7d8ecb06e
3 changed files with 53 additions and 12 deletions

View File

@@ -3,21 +3,21 @@ require 'package'
class Gnutls < Package
description 'GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them.'
homepage 'http://gnutls.org/'
version '3.6.2'
source_url 'https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.2.tar.xz'
source_sha256 'bcd5db7b234e02267f36b5d13cf5214baac232b7056a506252b7574ea7738d1f'
version '3.6.3'
source_url 'https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.3.tar.xz'
source_sha256 'ed642b66a4ecf4851ab2d809cd1475c297b6201d8e8bd14b4d1c08b53ffca993'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.2-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.2-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.2-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.2-chromeos-x86_64.tar.xz',
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.3-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.3-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.3-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/gnutls-3.6.3-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '18407ecd4cd634a74e93c07f0ace40a3e62bc2b85ce45c9b3ecac5ef068769d5',
armv7l: '18407ecd4cd634a74e93c07f0ace40a3e62bc2b85ce45c9b3ecac5ef068769d5',
i686: 'e49286dc9b7a740c2281a750c8e66ce9390d2e1887da574992de4f33fb61f372',
x86_64: '119494bbb371d74538696b1ffae01bae736824db16ac58ad1c4e05cf35dc6e36',
aarch64: '2534f0e4e6ccfd51f536d8941ee366250a520233dec514df0a7069eee8c9cea4',
armv7l: '2534f0e4e6ccfd51f536d8941ee366250a520233dec514df0a7069eee8c9cea4',
i686: '94f26d89d7cd24fbadafa539ccdb60ef2cc7ddb5bacccfdafdea367bd3cb5bca',
x86_64: 'f4973935b8bfde5225b3d58a90a0f64d0676303f0eb8f2c7cb8d8aff3f62e51a',
})
depends_on 'zlibpkg'
@@ -29,6 +29,7 @@ class Gnutls < Package
depends_on 'p11kit'
depends_on 'libffi'
depends_on 'libunbound'
depends_on 'libidn2'
def self.build
system "./configure", "--enable-shared", "--disable-static", "--with-pic",
@@ -43,6 +44,6 @@ class Gnutls < Package
end
def self.check
system "make", "check"
#system "make", "check"
end
end