summaryrefslogtreecommitdiffstats
path: root/python-pypi
diff options
context:
space:
mode:
authorIsmael Luceno2019-09-27 20:33:02 +0200
committerIsmael Luceno2019-09-28 16:56:50 +0200
commit5d420e02676212c39f4597e18c5aa0df4d2d5f1f (patch)
tree9cbc59423fb5c7dadfea39e3da8f5ffac345e65d /python-pypi
parentb32b3e759bde0d5a8462c32953265822d394816e (diff)
python-typed-ast: new spell, ast module that parses type information
Diffstat (limited to 'python-pypi')
-rwxr-xr-xpython-pypi/python-typed-ast/DEPENDS1
-rwxr-xr-xpython-pypi/python-typed-ast/DETAILS20
-rw-r--r--python-pypi/python-typed-ast/HISTORY2
3 files changed, 23 insertions, 0 deletions
diff --git a/python-pypi/python-typed-ast/DEPENDS b/python-pypi/python-typed-ast/DEPENDS
new file mode 100755
index 0000000000..8c09196700
--- /dev/null
+++ b/python-pypi/python-typed-ast/DEPENDS
@@ -0,0 +1 @@
+depends python3
diff --git a/python-pypi/python-typed-ast/DETAILS b/python-pypi/python-typed-ast/DETAILS
new file mode 100755
index 0000000000..4e797da220
--- /dev/null
+++ b/python-pypi/python-typed-ast/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=python-typed-ast
+ VERSION=1.4.0
+ SOURCE="typed_ast-${VERSION}.tar.gz"
+ SOURCE_URL[0]=https://files.pythonhosted.org/packages/34/de/d0cfe2ea7ddfd8b2b8374ed2e04eeb08b6ee6e1e84081d151341bba596e5/${SOURCE}
+ SOURCE_HASH=sha512:b74e7fc51cde16439eae7cf41f0bdb95b5998362eccb73cf736f343cdab64daab63bc0f95f05a4911b229761749bdd31ac83423b58f2f3e1e1dadc7e6015bc1c
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SOURCE%.tar.gz}"
+ WEB_SITE="https://github.com/python/typed_ast"
+ LICENSE[0]="Apache-2.0"
+ ENTERED=20190927
+ KEYWORDS=""
+ SHORT="ast module that parses type information"
+cat << EOF
+typed_ast is a Python 3 package that provides a Python 2.7 and Python 3 parser
+similar to the standard ast library. Unlike ast, the parsers in typed_ast
+include PEP 484 type comments and are independent of the version of Python
+under which they are run. The typed_ast parsers produce the standard Python
+AST (plus type comments), and are both fast and correct, as they are based on
+the CPython 2.7 and 3.7 parsers. typed_ast runs on CPython 3.5-3.8 on Linux,
+OS X and Windows.
+EOF
diff --git a/python-pypi/python-typed-ast/HISTORY b/python-pypi/python-typed-ast/HISTORY
new file mode 100644
index 0000000000..b0b34eb51a
--- /dev/null
+++ b/python-pypi/python-typed-ast/HISTORY
@@ -0,0 +1,2 @@
+2019-09-27 Ismael Luceno <ismael@sourcemage.org>
+ * DEPENDS, DETAILS: spell created