Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Oct 2020 17:54:21 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r553027 - in head/devel: . py-beniget
Message-ID:  <202010221754.09MHsLip059923@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Oct 22 17:54:21 2020
New Revision: 553027
URL: https://svnweb.freebsd.org/changeset/ports/553027

Log:
  Add py-beniget 0.3.0
  
  Beniget is a collection of Compile-time analyse on Python Abstract Syntax Tree
  (AST). It's a building block to write static analyzer or compiler for Python.
  
  WWW: https://github.com/serge-sans-paille/beniget

Added:
  head/devel/py-beniget/
  head/devel/py-beniget/Makefile   (contents, props changed)
  head/devel/py-beniget/distinfo   (contents, props changed)
  head/devel/py-beniget/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Oct 22 17:54:15 2020	(r553026)
+++ head/devel/Makefile	Thu Oct 22 17:54:21 2020	(r553027)
@@ -4189,6 +4189,7 @@
     SUBDIR += py-bcdoc
     SUBDIR += py-beautifultable
     SUBDIR += py-behave
+    SUBDIR += py-beniget
     SUBDIR += py-bidict
     SUBDIR += py-billiard
     SUBDIR += py-binaryornot

Added: head/devel/py-beniget/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-beniget/Makefile	Thu Oct 22 17:54:21 2020	(r553027)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	beniget
+PORTVERSION=	0.3.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Extract semantic information about static Python code
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}gast>=0.4.0<0.5:devel/py-gast@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-beniget/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-beniget/distinfo	Thu Oct 22 17:54:21 2020	(r553027)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1598542846
+SHA256 (beniget-0.3.0.tar.gz) = 062c893be9cdf87c3144fb15041cce4d81c67107c1591952cd45fdce789a0ff1
+SIZE (beniget-0.3.0.tar.gz) = 16148

Added: head/devel/py-beniget/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-beniget/pkg-descr	Thu Oct 22 17:54:21 2020	(r553027)
@@ -0,0 +1,4 @@
+Beniget is a collection of Compile-time analyse on Python Abstract Syntax Tree
+(AST). It's a building block to write static analyzer or compiler for Python.
+
+WWW: https://github.com/serge-sans-paille/beniget



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