Date: Thu, 26 May 2016 15:20:36 +0000 (UTC) From: Bartek Rutkowski <robak@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415899 - head/textproc/py-parsimonious Message-ID: <201605261520.u4QFKave092552@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: robak Date: Thu May 26 15:20:36 2016 New Revision: 415899 URL: https://svnweb.freebsd.org/changeset/ports/415899 Log: textproc/py-parsimonious: NEW PORT - PEGs based parser in Python Parsimonious aims to be the fastest arbitrary-lookahead parser written in pure Python and the most usable. It's based on parsing expression grammars (PEGs), which means you feed it a simplified sort of EBNF notation. Parsimonious was designed to undergird a MediaWiki parser that wouldn't take 5 seconds or a GB of RAM to do one page, but it's applicable to all sorts of languages. WWW: https://pypi.python.org/pypi/parsimonious PR: 209732 Submitted by: Danilo G. Baio <dbaio@bsd.com.br> Added: head/textproc/py-parsimonious/ head/textproc/py-parsimonious/Makefile (contents, props changed) head/textproc/py-parsimonious/distinfo (contents, props changed) head/textproc/py-parsimonious/pkg-descr (contents, props changed) Added: head/textproc/py-parsimonious/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-parsimonious/Makefile Thu May 26 15:20:36 2016 (r415899) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= parsimonious +PORTVERSION= 0.6.2 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= PEGs based parser in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/textproc/py-parsimonious/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-parsimonious/distinfo Thu May 26 15:20:36 2016 (r415899) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463703191 +SHA256 (parsimonious-0.6.2.tar.gz) = 423ae2e16061504418ab7abf0a740e26a781f9bc7674a6cf5e2f11edb4ae8029 +SIZE (parsimonious-0.6.2.tar.gz) = 35529 Added: head/textproc/py-parsimonious/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-parsimonious/pkg-descr Thu May 26 15:20:36 2016 (r415899) @@ -0,0 +1,8 @@ +Parsimonious aims to be the fastest arbitrary-lookahead parser written +in pure Python and the most usable. It's based on parsing expression +grammars (PEGs), which means you feed it a simplified sort of EBNF +notation. Parsimonious was designed to undergird a MediaWiki parser +that wouldn't take 5 seconds or a GB of RAM to do one page, but it's +applicable to all sorts of languages. + +WWW: https://pypi.python.org/pypi/parsimonious
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605261520.u4QFKave092552>