git: 8c8f4936fdc8 - main - Add textproc/py-chevron: Python implementation of the mustache templating language

From: Li-Wen Hsu <lwhsu_at_FreeBSD.org>
Date: Thu, 22 Dec 2022 09:34:55 UTC
The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8c8f4936fdc8b85145e1019848a7e41f02b023a5

commit 8c8f4936fdc8b85145e1019848a7e41f02b023a5
Author:     Norikatsu Shigemura <nork@ninth-nine.com>
AuthorDate: 2022-12-22 09:33:38 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2022-12-22 09:33:38 +0000

    Add textproc/py-chevron: Python implementation of the mustache templating language
    
    PR:             266618
---
 textproc/Makefile             |  1 +
 textproc/py-chevron/Makefile  | 18 ++++++++++++++++++
 textproc/py-chevron/distinfo  |  3 +++
 textproc/py-chevron/pkg-descr |  2 ++
 4 files changed, 24 insertions(+)

diff --git a/textproc/Makefile b/textproc/Makefile
index 35b85474cb2f..651719f13cbf 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -1296,6 +1296,7 @@
     SUBDIR += py-chameleon
     SUBDIR += py-chardet
     SUBDIR += py-charset-normalizer
+    SUBDIR += py-chevron
     SUBDIR += py-citeproc-py
     SUBDIR += py-citeproc-py-styles
     SUBDIR += py-cjkwrap
diff --git a/textproc/py-chevron/Makefile b/textproc/py-chevron/Makefile
new file mode 100644
index 000000000000..4341a0fa618e
--- /dev/null
+++ b/textproc/py-chevron/Makefile
@@ -0,0 +1,18 @@
+PORTNAME=	chevron
+PORTVERSION=	0.14.0
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	nork@ninth-nine.com
+COMMENT=	Mustache templating language renderer
+WWW=		https://pypi.org/project/chevron/
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/textproc/py-chevron/distinfo b/textproc/py-chevron/distinfo
new file mode 100644
index 000000000000..8a9e716a810c
--- /dev/null
+++ b/textproc/py-chevron/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1664143575
+SHA256 (chevron-0.14.0.tar.gz) = 87613aafdf6d77b6a90ff073165a61ae5086e21ad49057aa0e53681601800ebf
+SIZE (chevron-0.14.0.tar.gz) = 11440
diff --git a/textproc/py-chevron/pkg-descr b/textproc/py-chevron/pkg-descr
new file mode 100644
index 000000000000..b583717610c7
--- /dev/null
+++ b/textproc/py-chevron/pkg-descr
@@ -0,0 +1,2 @@
+A python implementation of the mustache templating language
+(https://mustache.github.io/).