svn commit: r433760 - in head/devel: . py-astor
Dmitry Marakasov
amdmi3 at FreeBSD.org
Thu Feb 9 18:08:31 UTC 2017
Author: amdmi3
Date: Thu Feb 9 18:08:29 2017
New Revision: 433760
URL: https://svnweb.freebsd.org/changeset/ports/433760
Log:
- Add devel/py-astor
Read/rewrite/write Python ASTs
astor is designed to allow easy manipulation of Python source via the AST.
WWW: https://pypi.python.org/pypi/astor
PR: 216782
Submitted by: dave at dal.ca
Added:
head/devel/py-astor/
head/devel/py-astor/Makefile (contents, props changed)
head/devel/py-astor/distinfo (contents, props changed)
head/devel/py-astor/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu Feb 9 18:08:14 2017 (r433759)
+++ head/devel/Makefile Thu Feb 9 18:08:29 2017 (r433760)
@@ -4102,6 +4102,7 @@
SUBDIR += py-arrow
SUBDIR += py-aspects
SUBDIR += py-aspyct
+ SUBDIR += py-astor
SUBDIR += py-astroid
SUBDIR += py-asyncio
SUBDIR += py-atomiclong
Added: head/devel/py-astor/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-astor/Makefile Thu Feb 9 18:08:29 2017 (r433760)
@@ -0,0 +1,20 @@
+# Created by: David Kalliecharan <dave at dal.ca>
+# $FreeBSD$
+
+PORTNAME= astor
+PORTVERSION= 0.5
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= dave at dal.ca
+COMMENT= Astor allows easy manipulation of Python source via the AST
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= python
+USE_PYTHON= distutils autoplist
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-astor/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-astor/distinfo Thu Feb 9 18:08:29 2017 (r433760)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1486663564
+SHA256 (astor-0.5.tar.gz) = 4abff251d3f03cbe99106cc16e0dc94adc4f88d580c34a717741c7090b76aab9
+SIZE (astor-0.5.tar.gz) = 10999
Added: head/devel/py-astor/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-astor/pkg-descr Thu Feb 9 18:08:29 2017 (r433760)
@@ -0,0 +1,5 @@
+Read/rewrite/write Python ASTs
+
+astor is designed to allow easy manipulation of Python source via the AST.
+
+WWW: https://pypi.python.org/pypi/astor
More information about the svn-ports-head
mailing list