diff --git a/textproc/Makefile b/textproc/Makefile index 21e943d4dd37..e2e0fd55c785 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1304,6 +1304,7 @@ SUBDIR += py-diff-match-patch SUBDIR += py-docutils SUBDIR += py-docx2txt + SUBDIR += py-dominate SUBDIR += py-dsv SUBDIR += py-duecredit SUBDIR += py-elasticsearch diff --git a/textproc/py-dominate/Makefile b/textproc/py-dominate/Makefile new file mode 100644 index 000000000000..024d7b4c2737 --- /dev/null +++ b/textproc/py-dominate/Makefile @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= dominate +PORTVERSION= 2.3.4 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Create and manipulate HTML documents using DOM API + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/textproc/py-dominate/distinfo b/textproc/py-dominate/distinfo new file mode 100644 index 000000000000..1428b6a21ce8 --- /dev/null +++ b/textproc/py-dominate/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1542290513 +SHA256 (dominate-2.3.4.tar.gz) = 8dfcca2bde3937a2d03db6e55efcb0c0dea0d4ab0923dc983d794b19e9247328 +SIZE (dominate-2.3.4.tar.gz) = 27834 diff --git a/textproc/py-dominate/pkg-descr b/textproc/py-dominate/pkg-descr new file mode 100644 index 000000000000..b111ebbdf087 --- /dev/null +++ b/textproc/py-dominate/pkg-descr @@ -0,0 +1,6 @@ +Dominate is a Python library for creating and manipulating HTML documents using +an elegant DOM API. It allows you to write HTML pages in pure Python very +concisely, which eliminates the need to learn another template language, and +lets you take advantage of the more powerful features of Python. + +WWW: https://github.com/Knio/dominate