diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:56:31 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:56:31 +0000 |
commit | 8fceab979343b518eca1a49330ce0ac1abc54b90 (patch) | |
tree | 321799d2a89583afc4371fd0e8ba0d28a8bd4708 | |
parent | e0d963f29560ee2bcaff21e17a8ea7e2e6a14305 (diff) |
automatic import of python-typed-ast
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-typed-ast.spec | 113 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 115 insertions, 0 deletions
@@ -0,0 +1 @@ +/typed_ast-1.5.4.tar.gz diff --git a/python-typed-ast.spec b/python-typed-ast.spec new file mode 100644 index 0000000..2736051 --- /dev/null +++ b/python-typed-ast.spec @@ -0,0 +1,113 @@ +%global _empty_manifest_terminate_build 0 +Name: python-typed-ast +Version: 1.5.4 +Release: 1 +Summary: a fork of Python 2 and 3 ast modules with type comment support +License: Apache License 2.0 +URL: https://github.com/python/typed_ast +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/07/d2/d55702e8deba2c80282fea0df53130790d8f398648be589750954c2dcce4/typed_ast-1.5.4.tar.gz + + +%description +`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` below Python 3.8, +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. + +**Note:** The `ast` module of Python 3.8+ supports all features of `typed_ast`. +`typed_ast` does not support parsing code that uses syntax introduced in +Python 3.8 onwards. +We recommend using `ast` on Python 3.8 or above. + + + +%package -n python3-typed-ast +Summary: a fork of Python 2 and 3 ast modules with type comment support +Provides: python-typed-ast +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-typed-ast +`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` below Python 3.8, +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. + +**Note:** The `ast` module of Python 3.8+ supports all features of `typed_ast`. +`typed_ast` does not support parsing code that uses syntax introduced in +Python 3.8 onwards. +We recommend using `ast` on Python 3.8 or above. + + + +%package help +Summary: Development documents and examples for typed-ast +Provides: python3-typed-ast-doc +%description help +`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` below Python 3.8, +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. + +**Note:** The `ast` module of Python 3.8+ supports all features of `typed_ast`. +`typed_ast` does not support parsing code that uses syntax introduced in +Python 3.8 onwards. +We recommend using `ast` on Python 3.8 or above. + + + +%prep +%autosetup -n typed-ast-1.5.4 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-typed-ast -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.5.4-1 +- Package Spec generated @@ -0,0 +1 @@ +1b0183d362a886a447d8314a97bc37b3 typed_ast-1.5.4.tar.gz |