Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Feb 2015 11:33:45 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378920 - in head/textproc: . py-mistune
Message-ID:  <201502131133.t1DBXjDG018012@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Feb 13 11:33:45 2015
New Revision: 378920
URL: https://svnweb.freebsd.org/changeset/ports/378920
QAT: https://qat.redports.org/buildarchive/r378920/

Log:
  [NEW] textproc/py-mistune: Fastest markdown parser in pure Python
  
  The fastest markdown parser in pure Python, inspired by marked.
  
  Features:
  
    * Pure Python. Tested in Python 2.6+, Python 3.3+ and PyPy.
    * Very Fast. It is the fastest in all pure Python markdown parsers.
    * More Features. Table, footnotes, autolink, fenced code etc.
  
  WWW: https://github.com/lepture/mistune

Added:
  head/textproc/py-mistune/
  head/textproc/py-mistune/Makefile   (contents, props changed)
  head/textproc/py-mistune/distinfo   (contents, props changed)
  head/textproc/py-mistune/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Feb 13 11:18:31 2015	(r378919)
+++ head/textproc/Makefile	Fri Feb 13 11:33:45 2015	(r378920)
@@ -1191,6 +1191,7 @@
     SUBDIR += py-mako
     SUBDIR += py-markdown
     SUBDIR += py-markdown2
+    SUBDIR += py-mistune
     SUBDIR += py-openpyxl
     SUBDIR += py-openpyxl1
     SUBDIR += py-paragrep

Added: head/textproc/py-mistune/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-mistune/Makefile	Fri Feb 13 11:33:45 2015	(r378920)
@@ -0,0 +1,24 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	mistune
+PORTVERSION=	0.5
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Fastest markdown parser in pure Python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+regression-test: build
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/textproc/py-mistune/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-mistune/distinfo	Fri Feb 13 11:33:45 2015	(r378920)
@@ -0,0 +1,2 @@
+SHA256 (mistune-0.5.tar.gz) = d53d868cfd10cf757160e88adb5760fce95f7026a243f15a02b7c604238e5869
+SIZE (mistune-0.5.tar.gz) = 184883

Added: head/textproc/py-mistune/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-mistune/pkg-descr	Fri Feb 13 11:33:45 2015	(r378920)
@@ -0,0 +1,9 @@
+The fastest markdown parser in pure Python, inspired by marked.
+
+Features:
+
+  * Pure Python. Tested in Python 2.6+, Python 3.3+ and PyPy.
+  * Very Fast. It is the fastest in all pure Python markdown parsers.
+  * More Features. Table, footnotes, autolink, fenced code etc.
+
+WWW: https://github.com/lepture/mistune



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502131133.t1DBXjDG018012>