svn commit: r433761 - in head/devel: . py-rply
Dmitry Marakasov
amdmi3 at FreeBSD.org
Thu Feb 9 18:10:11 UTC 2017
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 at 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 <dave at dal.ca>
+# $FreeBSD$
+
+PORTNAME= rply
+PORTVERSION= 0.7.4
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= dave at 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 <bsd.port.mk>
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/
More information about the svn-ports-all
mailing list