Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jul 2019 00:29:32 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r506325 - in head/devel: . py-gast
Message-ID:  <201907100029.x6A0TWgK076974@repo.freebsd.org>

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



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