1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- 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
This commit is contained in:
Dmitry Marakasov 2017-02-09 18:10:09 +00:00
parent 3862308532
commit 7e09ac287e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=433761
4 changed files with 31 additions and 0 deletions

View File

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

22
devel/py-rply/Makefile Normal file
View File

@ -0,0 +1,22 @@
# Created by: David Kalliecharan <dave@dal.ca>
# $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 <bsd.port.mk>

3
devel/py-rply/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1486663679
SHA256 (rply-0.7.4.tar.gz) = 723303d6c5f05a7ee19f59531f66c8c7d41cfaef2676057369db1eb5520b378b
SIZE (rply-0.7.4.tar.gz) = 16339

5
devel/py-rply/pkg-descr Normal file
View File

@ -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/