From owner-svn-ports-all@freebsd.org Thu May 26 15:20:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 368F9B4B1BD; Thu, 26 May 2016 15:20:38 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 E14A21DAE; Thu, 26 May 2016 15:20:37 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4QFKbnj092555; Thu, 26 May 2016 15:20:37 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4QFKave092552; Thu, 26 May 2016 15:20:36 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201605261520.u4QFKave092552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Thu, 26 May 2016 15:20:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415899 - head/textproc/py-parsimonious 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.22 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: Thu, 26 May 2016 15:20:38 -0000 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 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 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