From 13231070feabdb558068a82cdc71a72517f3aba4 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 10 Nov 2017 01:59:46 +0000 Subject: main/python3: fix libressl build --- main/python3/APKBUILD | 3 ++- main/python3/libressl.patch | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 main/python3/libressl.patch (limited to 'main/python3') diff --git a/main/python3/APKBUILD b/main/python3/APKBUILD index 292faa5737..5eda229c0e 100644 --- a/main/python3/APKBUILD +++ b/main/python3/APKBUILD @@ -5,7 +5,7 @@ pkgname=python3 # the python2-tkinter's pkgver needs to be synchronized with this. pkgver=3.6.3 _basever="${pkgver%.*}" -pkgrel=6 +pkgrel=7 pkgdesc="A high-level scripting language" url="http://www.python.org" arch="all" @@ -19,6 +19,7 @@ source="http://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.xz musl-find_library.patch fix-xattrs-glibc.patch bpo-30353.patch + libressl.patch " builddir="$srcdir/Python-$pkgver" diff --git a/main/python3/libressl.patch b/main/python3/libressl.patch new file mode 100644 index 0000000000..21d9ed67d7 --- /dev/null +++ b/main/python3/libressl.patch @@ -0,0 +1,10 @@ +--- Python-3.6.3.orig/Lib/test/test_ssl.py ++++ Python-3.6.3/Lib/test/test_ssl.py +@@ -3303,6 +3303,7 @@ + self.assertIs(stats['client_npn_protocol'], None) + + @unittest.skipUnless(ssl.HAS_NPN, "NPN support needed for this test") ++ @unittest.skipIf(IS_LIBRESSL, "LibreSSL doesn't support NPN anymore") + def test_npn_protocols(self): + server_protocols = ['http/1.1', 'spdy/2'] + protocol_tests = [ -- cgit v1.2.3