Merge pull request #17303 from CarlosDerSeher/feature_bt_agent
[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.0
9 PKG_RELEASE:=$(AUTORELEASE)
10
11 PYPI_NAME:=$(PKG_NAME)
12 PKG_HASH:=80beaf63ddfbc64a0452b841d8036ca0611e049650e20afcb882f5d3c266d65f
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))