Jinja2: Update to 3.1.2, rename source package
authorJeffery To <jeffery.to@gmail.com>
Mon, 29 May 2023 11:39:45 +0000 (19:39 +0800)
committerDaniel Golle <daniel@makrotopia.org>
Tue, 30 May 2023 02:19:21 +0000 (03:19 +0100)
This renames the source package from Jinja2 to python-jinja2 to match
other Python packages.

This also updates the package license files, title, and list of
dependencies.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
lang/python/Jinja2/Makefile [deleted file]
lang/python/python-jinja2/Makefile [new file with mode: 0644]

diff --git a/lang/python/Jinja2/Makefile b/lang/python/Jinja2/Makefile
deleted file mode 100644 (file)
index 37e0065..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=Jinja2
-PKG_VERSION:=3.0.3
-PKG_RELEASE:=2
-
-PYPI_NAME:=$(PKG_NAME)
-PKG_HASH:=611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7
-
-PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
-PKG_LICENSE:=BSD-3-Clause
-PKG_LICENSE_FILES:=LICENSE
-PKG_CPE_ID:=cpe:/a:pocoo:jinja2
-
-include ../pypi.mk
-include $(INCLUDE_DIR)/package.mk
-include ../python3-package.mk
-
-define Package/python3-jinja2
-  SECTION:=lang
-  CATEGORY:=Languages
-  SUBMENU:=Python
-  TITLE:=Jinja2
-  URL:=https://palletsprojects.com/p/jinja/
-  DEPENDS:=+python3-light +python3-markupsafe
-endef
-
-define Package/python3-jinja2/description
-Jinja2 is a full featured template engine for Python. It has full
-unicode support, an optional integrated sandboxed execution
-environment, widely used and BSD licensed.
-endef
-
-$(eval $(call Py3Package,python3-jinja2))
-$(eval $(call BuildPackage,python3-jinja2))
-$(eval $(call BuildPackage,python3-jinja2-src))
diff --git a/lang/python/python-jinja2/Makefile b/lang/python/python-jinja2/Makefile
new file mode 100644 (file)
index 0000000..76ebb23
--- /dev/null
@@ -0,0 +1,45 @@
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=python-jinja2
+PKG_VERSION:=3.1.2
+PKG_RELEASE:=1
+
+PYPI_NAME:=Jinja2
+PKG_HASH:=31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852
+
+PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
+PKG_LICENSE:=BSD-3-Clause
+PKG_LICENSE_FILES:=LICENSE.rst
+PKG_CPE_ID:=cpe:/a:pocoo:jinja2
+
+include ../pypi.mk
+include $(INCLUDE_DIR)/package.mk
+include ../python3-package.mk
+
+define Package/python3-jinja2
+  SECTION:=lang
+  CATEGORY:=Languages
+  SUBMENU:=Python
+  TITLE:=Very fast and expressive template engine
+  URL:=https://palletsprojects.com/p/jinja/
+  DEPENDS:= \
+      +python3-light \
+      +python3-asyncio \
+      +python3-logging \
+      +python3-urllib \
+      +python3-markupsafe
+endef
+
+define Package/python3-jinja2/description
+Jinja2 is a full featured template engine for Python. It has full
+unicode support, an optional integrated sandboxed execution
+environment, widely used and BSD licensed.
+endef
+
+$(eval $(call Py3Package,python3-jinja2))
+$(eval $(call BuildPackage,python3-jinja2))
+$(eval $(call BuildPackage,python3-jinja2-src))