diff --git a/srcpkgs/python-curl/patches/0001-Accept-LibreSSL-in-lieu-of-OpenSSL-at-link-time.-PR-.patch b/srcpkgs/python-curl/patches/0001-Accept-LibreSSL-in-lieu-of-OpenSSL-at-link-time.-PR-.patch deleted file mode 100644 index 1dfbb580556..00000000000 --- a/srcpkgs/python-curl/patches/0001-Accept-LibreSSL-in-lieu-of-OpenSSL-at-link-time.-PR-.patch +++ /dev/null @@ -1,26 +0,0 @@ -From d834971874bddc389ea7a6313b4d72f46b68be72 Mon Sep 17 00:00:00 2001 -From: JiCiT -Date: Wed, 1 Oct 2014 17:32:30 -0400 -Subject: [PATCH 1/4] Accept LibreSSL in lieu of OpenSSL at link-time. (PR - #209) - ---- - src/module.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/module.c b/src/module.c -index 1b3ee59..ff97f6c 100644 ---- src/module.c -+++ src/module.c -@@ -299,6 +299,8 @@ initpycurl(void) - runtime_ssl_lib = "none/other"; - } else if (!strncmp(vi->ssl_version, "OpenSSL/", 8)) { - runtime_ssl_lib = "openssl"; -+ } else if (!strncmp(vi->ssl_version, "LibreSSL/", 9)) { -+ runtime_ssl_lib = "openssl"; - } else if (!strncmp(vi->ssl_version, "GnuTLS/", 7)) { - runtime_ssl_lib = "gnutls"; - } else if (!strncmp(vi->ssl_version, "NSS/", 4)) { --- -2.1.2 - diff --git a/srcpkgs/python-curl/template b/srcpkgs/python-curl/template index 125bee8ffb9..f97e77fe27e 100644 --- a/srcpkgs/python-curl/template +++ b/srcpkgs/python-curl/template @@ -1,7 +1,7 @@ # Template file for 'python-curl' pkgname=python-curl -version=7.19.5 -revision=2 +version=7.19.5.1 +revision=1 wrksrc="pycurl-${version}" build_style=python-module python_versions="2.7 3.4" @@ -15,7 +15,7 @@ license="LGPL-2.1, MIT" maintainer="Juan RP " update_pkgname="pycurl" distfiles="http://pycurl.sourceforge.net/download/pycurl-${version}.tar.gz" -checksum=69a0aa7c9dddbfe4cebf4d1f674c490faccf739fc930d85d8990ce2fd0551a43 +checksum=6e9770f80459757f73bd71af82fbb29cd398b38388cdf1beab31ea91a331bc6c CFLAGS="-fno-strict-aliasing"