Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Feb 2017 18:10:09 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433761 - in head/devel: . py-rply
Message-ID:  <201702091810.v19IA9Q0088907@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <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>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702091810.v19IA9Q0088907>