svn commit: r415899 - head/textproc/py-parsimonious

Bartek Rutkowski robak at FreeBSD.org
Thu May 26 15:20:38 UTC 2016


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 at 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 at 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


More information about the svn-ports-head mailing list