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.

39 lines
1.0 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=python-certifi
  7. PKG_VERSION:=2021.10.8
  8. PKG_RELEASE:=1
  9. PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
  10. PKG_LICENSE:=MPL-2.0
  11. PKG_LICENSE_FILES:=LICENSE
  12. PYPI_NAME:=certifi
  13. PKG_HASH:=78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-certifi
  18. SUBMENU:=Python
  19. SECTION:=lang
  20. CATEGORY:=Languages
  21. TITLE:=Python package for Mozilla's CA Bundle
  22. URL:=http://certifi.io/
  23. DEPENDS:=+python3-light
  24. endef
  25. define Package/python3-certifi/description
  26. Certifi is a carefully curated collection of Root Certificates for validating the
  27. trustworthiness of SSL certificates while verifying the identity of TLS hosts.
  28. endef
  29. $(eval $(call Py3Package,python3-certifi))
  30. $(eval $(call BuildPackage,python3-certifi))
  31. $(eval $(call BuildPackage,python3-certifi-src))