2015-11-27 12:16:52 +00:00
|
|
|
#
|
2018-01-10 21:12:49 +00:00
|
|
|
# Copyright (C) 2015-2018 OpenWrt.org
|
2015-11-27 12:16:52 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-01-10 21:12:49 +00:00
|
|
|
PKG_NAME:=python-pyopenssl
|
2020-12-21 07:45:00 +00:00
|
|
|
PKG_VERSION:=20.0.1
|
2020-12-01 09:04:06 +00:00
|
|
|
PKG_RELEASE:=1
|
2015-11-27 12:16:52 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=pyOpenSSL
|
2020-12-21 07:45:00 +00:00
|
|
|
PKG_HASH:=4c231c759543ba02560fcd2480c48dcec4dae34c9da7d3747c508227e0624b51
|
2015-11-27 12:16:52 +00:00
|
|
|
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2017-08-01 07:15:00 +00:00
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
2019-09-19 14:07:09 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:pyopenssl_project:pyopenssl
|
2017-08-01 07:15:00 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2015-11-27 12:16:52 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python3-package.mk
|
2017-08-01 07:15:00 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-pyopenssl
|
2017-08-01 07:15:00 +00:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-03-11 08:42:47 +00:00
|
|
|
TITLE:=OpenSSL wrapper
|
|
|
|
URL:=https://pyopenssl.org/
|
2017-08-01 07:15:00 +00:00
|
|
|
DEPENDS:= \
|
2020-04-21 17:27:50 +00:00
|
|
|
+python3-light \
|
|
|
|
+python3-cryptography \
|
|
|
|
+python3-six
|
2015-11-27 12:16:52 +00:00
|
|
|
endef
|
|
|
|
|
2017-08-01 07:15:00 +00:00
|
|
|
define Package/python3-pyopenssl/description
|
2020-04-01 14:21:16 +00:00
|
|
|
Python wrapper module around the OpenSSL library
|
2015-11-27 12:16:52 +00:00
|
|
|
endef
|
|
|
|
|
2017-08-01 07:15:00 +00:00
|
|
|
$(eval $(call Py3Package,python3-pyopenssl))
|
|
|
|
$(eval $(call BuildPackage,python3-pyopenssl))
|
2018-01-14 14:38:54 +00:00
|
|
|
$(eval $(call BuildPackage,python3-pyopenssl-src))
|