Commit 9d552c19 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Thomas Petazzoni
Browse files

python-pyopenssl: new package

parent fbeeb4c8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+12 −0
Original line number Diff line number Diff line
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
+3 −0
Original line number Diff line number Diff line
# 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
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))