37e00655700e7d38723973c85872fbcba8841161
[feed/packages.git] / lang / python / Jinja2 / 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:=Jinja2
8 PKG_VERSION:=3.0.3
9 PKG_RELEASE:=2
10
11 PYPI_NAME:=$(PKG_NAME)
12 PKG_HASH:=611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7
13
14 PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
15 PKG_LICENSE:=BSD-3-Clause
16 PKG_LICENSE_FILES:=LICENSE
17 PKG_CPE_ID:=cpe:/a:pocoo:jinja2
18
19 include ../pypi.mk
20 include $(INCLUDE_DIR)/package.mk
21 include ../python3-package.mk
22
23 define Package/python3-jinja2
24 SECTION:=lang
25 CATEGORY:=Languages
26 SUBMENU:=Python
27 TITLE:=Jinja2
28 URL:=https://palletsprojects.com/p/jinja/
29 DEPENDS:=+python3-light +python3-markupsafe
30 endef
31
32 define Package/python3-jinja2/description
33 Jinja2 is a full featured template engine for Python. It has full
34 unicode support, an optional integrated sandboxed execution
35 environment, widely used and BSD licensed.
36 endef
37
38 $(eval $(call Py3Package,python3-jinja2))
39 $(eval $(call BuildPackage,python3-jinja2))
40 $(eval $(call BuildPackage,python3-jinja2-src))