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