From owner-svn-ports-all@FreeBSD.ORG Fri Feb 13 11:33:46 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2EBDC65; Fri, 13 Feb 2015 11:33:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3B6A15D; Fri, 13 Feb 2015 11:33:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1DBXkHn018016; Fri, 13 Feb 2015 11:33:46 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1DBXjDG018012; Fri, 13 Feb 2015 11:33:45 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502131133.t1DBXjDG018012@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 13 Feb 2015 11:33:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378920 - in head/textproc: . py-mistune X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2015 11:33:47 -0000 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 +# $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 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