Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Feb 2017 18:08:30 +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: r433760 - in head/devel: . py-astor
Message-ID:  <201702091808.v19I8UrG088652@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@dal.ca>
+# $FreeBSD$
+
+PORTNAME=	astor
+PORTVERSION=	0.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dave@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



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