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.

38 lines
1003 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=MarkupSafe
  6. PKG_VERSION:=1.1.1
  7. PKG_RELEASE:=2
  8. PYPI_NAME:=$(PKG_NAME)
  9. PKG_HASH:=29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b
  10. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_LICENSE_FILES:=LICENSE.rst
  13. include ../pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-markupsafe
  17. SECTION:=lang
  18. CATEGORY:=Languages
  19. SUBMENU:=Python
  20. TITLE:=MarkupSafe
  21. URL:=https://palletsprojects.com/p/markupsafe/
  22. DEPENDS:=+python3-light
  23. VARIANT:=python3
  24. endef
  25. define Package/python3-markupsafe/description
  26. MarkupSafe implements a text object that escapes characters so it is safe to use in HTML and XML.
  27. endef
  28. $(eval $(call Py3Package,python3-markupsafe))
  29. $(eval $(call BuildPackage,python3-markupsafe))
  30. $(eval $(call BuildPackage,python3-markupsafe-src))