diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-11-16 03:05:40 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-11-16 03:05:40 +0800 |
commit | ca42cba2ccb065e24dd6ca2d6b6a54e5d5053f04 (patch) | |
tree | 776a11ffed129f4ac35779b622f03b4d9c49be2e /textproc | |
parent | 66aecb00015741992c4cb475d288e5222ea7d41b (diff) | |
download | freebsd-ports-gnome-ca42cba2ccb065e24dd6ca2d6b6a54e5d5053f04.tar.gz freebsd-ports-gnome-ca42cba2ccb065e24dd6ca2d6b6a54e5d5053f04.tar.zst freebsd-ports-gnome-ca42cba2ccb065e24dd6ca2d6b6a54e5d5053f04.zip |
Add py-dominate 2.3.4
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
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-dominate/Makefile | 21 | ||||
-rw-r--r-- | textproc/py-dominate/distinfo | 3 | ||||
-rw-r--r-- | textproc/py-dominate/pkg-descr | 6 |
4 files changed, 31 insertions, 0 deletions
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 <sunpoet@FreeBSD.org> +# $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 <bsd.port.mk> 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 |