python-pyopenssl: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-02-08 10:04:22 +01:00 committed by Thomas Petazzoni
parent fbeeb4c8cb
commit 9d552c1997
4 changed files with 30 additions and 0 deletions

View file

@ -689,6 +689,7 @@ menu "External python modules"
source "package/python-pygame/Config.in"
source "package/python-pygments/Config.in"
source "package/python-pyinotify/Config.in"
source "package/python-pyopenssl/Config.in"
source "package/python-pyparsing/Config.in"
source "package/python-pyparted/Config.in"
source "package/python-pypcap/Config.in"

View file

@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_PYOPENSSL
bool "python-pyopenssl"
depends on BR2_INSTALL_LIBSTDCPP # python-cryptography
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Python wrapper module around the OpenSSL library.
https://github.com/pyca/pyopenssl
comment "python-pyopenssl needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View file

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=f447644afcbd5f0a1f47350fec63a4c6, sha256 locally computed
md5 f447644afcbd5f0a1f47350fec63a4c6 pyOpenSSL-0.15.1.tar.gz
sha256 f0a26070d6db0881de8bcc7846934b7c3c930d8f9c79d45883ee48984bc0d672 pyOpenSSL-0.15.1.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-pyopenssl
#
################################################################################
PYTHON_PYOPENSSL_VERSION = 0.15.1
PYTHON_PYOPENSSL_SOURCE = pyOpenSSL-$(PYTHON_PYOPENSSL_VERSION).tar.gz
PYTHON_PYOPENSSL_SITE = https://pypi.python.org/packages/source/p/pyOpenSSL
PYTHON_PYOPENSSL_LICENSE = Apache-2.0
PYTHON_PYOPENSSL_LICENSE_FILES = LICENSE
PYTHON_PYOPENSSL_SETUP_TYPE = setuptools
$(eval $(python-package))