View | Details | Raw Unified | Return to bug 214915
Collapse All | Expand All

(-)security/py-cryptography/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	cryptography
4
PORTNAME=	cryptography
5
PORTVERSION=	1.4
5
PORTVERSION=	1.6
6
CATEGORIES=	security python
6
CATEGORIES=	security python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)security/py-cryptography/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1471010865
1
TIMESTAMP = 1480367088
2
SHA256 (cryptography-1.4.tar.gz) = bb149540ed90c4b2171bf694fe6991d6331bc149ae623c8ff419324f4222d128
2
SHA256 (cryptography-1.6.tar.gz) = 4d0d86d2c8d3fc89133c3fa0d164a688a458b6663ab6fa965c80d6c2cdaf9b3f
3
SIZE (cryptography-1.4.tar.gz) = 399707
3
SIZE (cryptography-1.6.tar.gz) = 410073
(-)security/py-cryptography/files/patch-src___cffi__src_openssl_ec.py (-12 lines)
Lines 1-12 Link Here
1
--- src/_cffi_src/openssl/ec.py.orig	2016-06-04 17:06:01 UTC
2
+++ src/_cffi_src/openssl/ec.py
3
@@ -371,7 +371,8 @@ EC_GROUP *(*EC_GROUP_new_curve_GF2m)(
4
 static const long Cryptography_HAS_EC2M = 1;
5
 #endif
6
 
7
-#if defined(OPENSSL_NO_EC) || OPENSSL_VERSION_NUMBER < 0x1000200f || \
8
+#if defined(OPENSSL_NO_EC) || \
9
+    OPENSSL_VERSION_NUMBER < 0x1000200f && !defined(LIBRESSL_VERSION_NUMBER) || \
10
     defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20020002L
11
 static const long Cryptography_HAS_EC_1_0_2 = 0;
12
 const char *(*EC_curve_nid2nist)(int) = NULL;

Return to bug 214915