Merge pull request #11353 from kvuorine/fwknop-fixes
[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:=1.1.1
9 PKG_RELEASE:=3
10
11 PYPI_NAME:=$(PKG_NAME)
12 PKG_HASH:=29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b
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))