From owner-svn-ports-all@freebsd.org Thu Feb 9 18:10:11 2017 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 5C01ACD3C65; Thu, 9 Feb 2017 18:10:11 +0000 (UTC) (envelope-from amdmi3@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 119471431; Thu, 9 Feb 2017 18:10:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v19IAAbO088911; Thu, 9 Feb 2017 18:10:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v19IA9Q0088907; Thu, 9 Feb 2017 18:10:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702091810.v19IA9Q0088907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Feb 2017 18:10:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433761 - in head/devel: . py-rply 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.23 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, 09 Feb 2017 18:10:11 -0000 Author: amdmi3 Date: Thu Feb 9 18:10:09 2017 New Revision: 433761 URL: https://svnweb.freebsd.org/changeset/ports/433761 Log: - Add devel/py-rply rply is a pure python parser generator, that also works with RPython. It is a more-or-less direct port of David Beazley's awesome PLY, with a new public API, and RPython support. WWW: https://pypi.python.org/pypi/rply/ PR: 216783 Submitted by: dave@dal.ca Added: head/devel/py-rply/ head/devel/py-rply/Makefile (contents, props changed) head/devel/py-rply/distinfo (contents, props changed) head/devel/py-rply/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Feb 9 18:08:29 2017 (r433760) +++ head/devel/Makefile Thu Feb 9 18:10:09 2017 (r433761) @@ -4625,6 +4625,7 @@ SUBDIR += py-rope SUBDIR += py-rose SUBDIR += py-roxlib + SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rtree SUBDIR += py-rtslib-fb Added: head/devel/py-rply/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rply/Makefile Thu Feb 9 18:10:09 2017 (r433761) @@ -0,0 +1,22 @@ +# Created by: David Kalliecharan +# $FreeBSD$ + +PORTNAME= rply +PORTVERSION= 0.7.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dave@dal.ca +COMMENT= Pure python parser generator, that also works with RPython + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>0:devel/py-appdirs + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-rply/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rply/distinfo Thu Feb 9 18:10:09 2017 (r433761) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486663679 +SHA256 (rply-0.7.4.tar.gz) = 723303d6c5f05a7ee19f59531f66c8c7d41cfaef2676057369db1eb5520b378b +SIZE (rply-0.7.4.tar.gz) = 16339 Added: head/devel/py-rply/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rply/pkg-descr Thu Feb 9 18:10:09 2017 (r433761) @@ -0,0 +1,5 @@ +rply is a pure python parser generator, that also works with RPython. It is a +more-or-less direct port of David Beazley's awesome PLY, with a new public +API, and RPython support. + +WWW: https://pypi.python.org/pypi/rply/