svn commit: r506325 - in head/devel: . py-gast
Yuri Victorovich
yuri at FreeBSD.org
Wed Jul 10 00:29:33 UTC 2019
Author: yuri
Date: Wed Jul 10 00:29:32 2019
New Revision: 506325
URL: https://svnweb.freebsd.org/changeset/ports/506325
Log:
New port: devel/py-gast: AST that abstracts the underlying Python version
PR: 226400
Submitted by: Anthony <amzo1337 at gmail.com>
Added:
head/devel/py-gast/
head/devel/py-gast/Makefile (contents, props changed)
head/devel/py-gast/distinfo (contents, props changed)
head/devel/py-gast/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed Jul 10 00:14:40 2019 (r506324)
+++ head/devel/Makefile Wed Jul 10 00:29:32 2019 (r506325)
@@ -4430,6 +4430,7 @@
SUBDIR += py-game
SUBDIR += py-game_sdl2
SUBDIR += py-gamin
+ SUBDIR += py-gast
SUBDIR += py-gdata
SUBDIR += py-gdbgui
SUBDIR += py-gearman
Added: head/devel/py-gast/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-gast/Makefile Wed Jul 10 00:29:32 2019 (r506325)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= gast
+DISTVERSION= 0.2.2
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= amzo1337 at gmail.com
+COMMENT= AST that abstracts the underlying Python version
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-gast/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-gast/distinfo Wed Jul 10 00:29:32 2019 (r506325)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1562695667
+SHA256 (gast-0.2.2.tar.gz) = fe939df4583692f0512161ec1c880e0a10e71e6a232da045ab8edd3756fbadf0
+SIZE (gast-0.2.2.tar.gz) = 10294
Added: head/devel/py-gast/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-gast/pkg-descr Wed Jul 10 00:29:32 2019 (r506325)
@@ -0,0 +1,6 @@
+A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST).
+
+GAST provides a compatibility layer between the AST of various Python versions,
+as produced by ast.parse from the standard ast module.
+
+WWW: https://github.com/serge-sans-paille/gast
More information about the svn-ports-all
mailing list