Date: Tue, 24 Jul 2018 20:25:50 +0000 (UTC) From: Tilman Keskinoz <arved@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475275 - in head/textproc: . py-markups Message-ID: <201807242025.w6OKPoV9054409@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: arved Date: Tue Jul 24 20:25:50 2018 New Revision: 475275 URL: https://svnweb.freebsd.org/changeset/ports/475275 Log: Add Markups, a wrapper around various text markup languages. Added: head/textproc/py-markups/ head/textproc/py-markups/Makefile (contents, props changed) head/textproc/py-markups/distinfo (contents, props changed) head/textproc/py-markups/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jul 24 20:23:19 2018 (r475274) +++ head/textproc/Makefile Tue Jul 24 20:25:50 2018 (r475275) @@ -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 Added: head/textproc/py-markups/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markups/Makefile Tue Jul 24 20:25:50 2018 (r475275) @@ -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 <bsd.port.mk> Added: head/textproc/py-markups/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markups/distinfo Tue Jul 24 20:25:50 2018 (r475275) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532462202 +SHA256 (Markups-3.0.0.tar.gz) = 1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39 +SIZE (Markups-3.0.0.tar.gz) = 16966 Added: head/textproc/py-markups/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-markups/pkg-descr Tue Jul 24 20:25:50 2018 (r475275) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807242025.w6OKPoV9054409>