lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit c8240048d8a31ee505c5bcc1e72e63d63e61f5c8
parent 05a0be3255e04c214950bab6be0e53ca3672f191
Author: Yousong Zhou <yszhou4tech@gmail.com>
Date:   Tue, 22 Mar 2016 22:21:36 -0500

Merge pull request #2540 from jefferyto/python-pyopenssl-16.0.0

python-pyopenssl: update to 16.0.0
Diffstat:
Mlang/python-pyopenssl/Makefile | 6+++---
Dlang/python-pyopenssl/patches/001-omit-tests.patch | 27---------------------------
2 files changed, 3 insertions(+), 30 deletions(-)

diff --git a/lang/python-pyopenssl/Makefile b/lang/python-pyopenssl/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2015 OpenWrt.org +# Copyright (C) 2015-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pyOpenSSL -PKG_VERSION:=0.15.1 +PKG_VERSION:=16.0.0 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pyOpenSSL -PKG_MD5SUM:=f447644afcbd5f0a1f47350fec63a4c6 +PKG_MD5SUM:=9587d813dcf656e9f2760e41a3682dc3 PKG_BUILD_DEPENDS:=python python-setuptools diff --git a/lang/python-pyopenssl/patches/001-omit-tests.patch b/lang/python-pyopenssl/patches/001-omit-tests.patch @@ -1,27 +0,0 @@ -diff --git a/setup.py b/setup.py -index c376f87..6444fac 100755 ---- a/setup.py -+++ b/setup.py -@@ -22,14 +22,7 @@ setup(name='pyOpenSSL', version=__version__, - 'OpenSSL.rand', - 'OpenSSL.crypto', - 'OpenSSL.SSL', -- 'OpenSSL.version', -- 'OpenSSL.test.__init__', -- 'OpenSSL.test.util', -- 'OpenSSL.test.test_crypto', -- 'OpenSSL.test.test_rand', -- 'OpenSSL.test.test_ssl', -- 'OpenSSL.test.test_tsafe', -- 'OpenSSL.test.test_util',], -+ 'OpenSSL.version',], - description = 'Python wrapper module around the OpenSSL library', - author = 'Jean-Paul Calderone', - author_email = 'exarkun@twistedmatrix.com', -@@ -74,5 +67,4 @@ High-level wrapper around a subset of the OpenSSL library, includes - 'Topic :: Security :: Cryptography', - 'Topic :: Software Development :: Libraries :: Python Modules', - 'Topic :: System :: Networking', -- ], -- test_suite="OpenSSL") -+ ])