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.

53 lines
1.6 KiB

  1. #
  2. # Copyright (C) 2015-2016 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:=cryptography
  9. PKG_VERSION:=1.5.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/21/e1/37fc14f9d77924e84ba0dcb88eb8352db914583af229287c6c965d66ba0d
  13. PKG_MD5SUM:=66a3e01f5f436d2413ef47b7e6bb7729
  14. PKG_BUILD_DEPENDS:=python-cffi/host
  15. PKG_LICENSE:=Apache-2.0 BSD-3-Clause
  16. PKG_LICENSE_FILES:=LICENSE.APACHE LICENSE.BSD
  17. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  18. include $(INCLUDE_DIR)/package.mk
  19. $(call include_mk, python-package.mk)
  20. define Package/python-cryptography
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=python-cryptography
  25. URL:=https://github.com/pyca/cryptography
  26. DEPENDS:=+libopenssl +python +python-cffi +python-enum34 +python-idna +python-ipaddress +python-pyasn1 +python-six +python-setuptools
  27. endef
  28. define Package/python-cryptography/description
  29. cryptography is a package which provides cryptographic recipes and
  30. primitives to Python developers. Our goal is for it to be your "cryptographic
  31. standard library". It supports Python 2.6-2.7, Python 3.3+, and PyPy 2.6+.
  32. endef
  33. define PyPackage/python-cryptography/filespec
  34. +|$(PYTHON_PKG_DIR)
  35. -|$(PYTHON_PKG_DIR)/cryptography/hazmat/backends/commoncrypto
  36. -|$(PYTHON_PKG_DIR)/cryptography/hazmat/bindings/commoncrypto
  37. endef
  38. define Build/Compile
  39. $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
  40. endef
  41. $(eval $(call PyPackage,python-cryptography))
  42. $(eval $(call BuildPackage,python-cryptography))