devel/py-ast-decompiler: Add py-ast-decompiler 0.7.0

ast_decompiler is a module for generating Python code given an AST.
This commit is contained in:
Po-Chuan Hsieh 2023-04-09 21:16:47 +08:00
parent d3cac3afe4
commit 9b7323194d
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
4 changed files with 27 additions and 0 deletions

View file

@ -4203,6 +4203,7 @@
SUBDIR += py-asn1
SUBDIR += py-asn1crypto
SUBDIR += py-aspy.yaml
SUBDIR += py-ast-decompiler
SUBDIR += py-asteval
SUBDIR += py-astor
SUBDIR += py-astroid

View file

@ -0,0 +1,22 @@
PORTNAME= ast-decompiler
PORTVERSION= 0.7.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ast_decompiler-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python module to decompile AST to Python code
WWW= https://github.com/JelleZijlstra/ast_decompiler
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.4<4:devel/py-flit-core@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1680726000
SHA256 (ast_decompiler-0.7.0.tar.gz) = efc3a507e5f8963ec7b4b2ce2ea693e3755c2f52b741c231bc344a4526738337
SIZE (ast_decompiler-0.7.0.tar.gz) = 18413

View file

@ -0,0 +1 @@
ast_decompiler is a module for generating Python code given an AST.