diff --git a/textproc/Makefile b/textproc/Makefile index c84c034f9e1a..3624ed879d45 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1322,6 +1322,7 @@ SUBDIR += py-markdown SUBDIR += py-markdown-math SUBDIR += py-markdown2 + SUBDIR += py-markups SUBDIR += py-mistune SUBDIR += py-mkdocs SUBDIR += py-mkdocs-nature diff --git a/textproc/py-markups/Makefile b/textproc/py-markups/Makefile new file mode 100644 index 000000000000..3780dcb49bae --- /dev/null +++ b/textproc/py-markups/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= Markups +PORTVERSION= 3.0.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= arved@FreeBSD.org +COMMENT= Wrapper around various text markup languages + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.2+ +USE_PYTHON= distutils autoplist + +.include diff --git a/textproc/py-markups/distinfo b/textproc/py-markups/distinfo new file mode 100644 index 000000000000..bdb8195f504e --- /dev/null +++ b/textproc/py-markups/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1532462202 +SHA256 (Markups-3.0.0.tar.gz) = 1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39 +SIZE (Markups-3.0.0.tar.gz) = 16966 diff --git a/textproc/py-markups/pkg-descr b/textproc/py-markups/pkg-descr new file mode 100644 index 000000000000..9fb23369e78e --- /dev/null +++ b/textproc/py-markups/pkg-descr @@ -0,0 +1,6 @@ +This module provides a wrapper around various text markup languages. + +Available by default are Markdown, reStructuredText and Textile, but you can +easily add your own markups. + +WWW: https://pypi.org/project/Markups/