You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB

  1. #
  2. # Copyright (C) 2015-2018 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-pyopenssl
  9. PKG_VERSION:=21.0.0
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=pyOpenSSL
  12. PKG_HASH:=5e2d8c5e46d0d865ae933bef5230090bdaf5506281e9eec60fa250ee80600cb3
  13. PKG_LICENSE:=Apache-2.0
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  16. PKG_CPE_ID:=cpe:/a:pyopenssl_project:pyopenssl
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/python3-pyopenssl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=OpenSSL wrapper
  25. URL:=https://pyopenssl.org/
  26. DEPENDS:= \
  27. +python3-light \
  28. +python3-cryptography \
  29. +python3-six
  30. endef
  31. define Package/python3-pyopenssl/description
  32. Python wrapper module around the OpenSSL library
  33. endef
  34. $(eval $(call Py3Package,python3-pyopenssl))
  35. $(eval $(call BuildPackage,python3-pyopenssl))
  36. $(eval $(call BuildPackage,python3-pyopenssl-src))