summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 05:06:19 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 05:06:19 +0000
commitee5d61a4b4ce52004a8ccef62e6aeabcde52a7a7 (patch)
tree738fefac6401c3300400ef08d9f934c551b87b9a
parenta36e5615765a1f27717fb8773d520f0e9d82861e (diff)
automatic import of python-flake8-type-annotations
-rw-r--r--.gitignore1
-rw-r--r--python-flake8-type-annotations.spec184
-rw-r--r--sources1
3 files changed, 186 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..ec50764 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/flake8-type-annotations-0.1.0.tar.gz
diff --git a/python-flake8-type-annotations.spec b/python-flake8-type-annotations.spec
new file mode 100644
index 0000000..22b828a
--- /dev/null
+++ b/python-flake8-type-annotations.spec
@@ -0,0 +1,184 @@
+%global _empty_manifest_terminate_build 0
+Name: python-flake8-type-annotations
+Version: 0.1.0
+Release: 1
+Summary: Flake8 plugin to enforce consistent type annotation styles
+License: MIT
+URL: https://github.com/sobolevn/flake8-type-annotations
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/06/e2/6c006b0be107a05bd18c628fcb375a0385324945e3b83e134d1fc6b11bdb/flake8-type-annotations-0.1.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-flake8
+
+%description
+# flake8-type-annotations
+
+[![wemake.services](https://img.shields.io/badge/-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services) [![Build Status](https://travis-ci.org/sobolevn/flake8-type-annotations.svg?branch=master)](https://travis-ci.org/sobolevn/flake8-type-annotations) [![Coverage](https://coveralls.io/repos/github/sobolevn/flake8-type-annotations/badge.svg?branch=master)](https://coveralls.io/github/sobolevn/flake8-type-annotations?branch=master) [![Python Version](https://img.shields.io/pypi/pyversions/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/) [![PyPI version](https://badge.fury.io/py/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/)
+
+This tool is used to validate type annotations syntax
+as it was [originally proposed](https://github.com/PyCQA/pycodestyle/issues/357)
+by [Guido van Rossum](https://github.com/gvanrossum).
+
+## Installation
+
+```bash
+pip install flake8-type-annotations
+```
+
+## Code example
+
+```python
+# Consistency with this plugin:
+def function(param=0, other: int = 0) -> int:
+ return param + other
+
+
+# Possible errors without this plugin:
+def function(param=0, other: int=0)->int:
+ return param + other
+```
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:-------------------------------------------------------------:|
+| T800 | Missing spaces between parameter annotation and default value |
+| T801 | Missing spaces in return type annotation |
+
+## License
+
+MIT.
+
+
+%package -n python3-flake8-type-annotations
+Summary: Flake8 plugin to enforce consistent type annotation styles
+Provides: python-flake8-type-annotations
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-flake8-type-annotations
+# flake8-type-annotations
+
+[![wemake.services](https://img.shields.io/badge/-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services) [![Build Status](https://travis-ci.org/sobolevn/flake8-type-annotations.svg?branch=master)](https://travis-ci.org/sobolevn/flake8-type-annotations) [![Coverage](https://coveralls.io/repos/github/sobolevn/flake8-type-annotations/badge.svg?branch=master)](https://coveralls.io/github/sobolevn/flake8-type-annotations?branch=master) [![Python Version](https://img.shields.io/pypi/pyversions/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/) [![PyPI version](https://badge.fury.io/py/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/)
+
+This tool is used to validate type annotations syntax
+as it was [originally proposed](https://github.com/PyCQA/pycodestyle/issues/357)
+by [Guido van Rossum](https://github.com/gvanrossum).
+
+## Installation
+
+```bash
+pip install flake8-type-annotations
+```
+
+## Code example
+
+```python
+# Consistency with this plugin:
+def function(param=0, other: int = 0) -> int:
+ return param + other
+
+
+# Possible errors without this plugin:
+def function(param=0, other: int=0)->int:
+ return param + other
+```
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:-------------------------------------------------------------:|
+| T800 | Missing spaces between parameter annotation and default value |
+| T801 | Missing spaces in return type annotation |
+
+## License
+
+MIT.
+
+
+%package help
+Summary: Development documents and examples for flake8-type-annotations
+Provides: python3-flake8-type-annotations-doc
+%description help
+# flake8-type-annotations
+
+[![wemake.services](https://img.shields.io/badge/-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services) [![Build Status](https://travis-ci.org/sobolevn/flake8-type-annotations.svg?branch=master)](https://travis-ci.org/sobolevn/flake8-type-annotations) [![Coverage](https://coveralls.io/repos/github/sobolevn/flake8-type-annotations/badge.svg?branch=master)](https://coveralls.io/github/sobolevn/flake8-type-annotations?branch=master) [![Python Version](https://img.shields.io/pypi/pyversions/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/) [![PyPI version](https://badge.fury.io/py/flake8-type-annotations.svg)](https://pypi.org/project/flake8-type-annotations/)
+
+This tool is used to validate type annotations syntax
+as it was [originally proposed](https://github.com/PyCQA/pycodestyle/issues/357)
+by [Guido van Rossum](https://github.com/gvanrossum).
+
+## Installation
+
+```bash
+pip install flake8-type-annotations
+```
+
+## Code example
+
+```python
+# Consistency with this plugin:
+def function(param=0, other: int = 0) -> int:
+ return param + other
+
+
+# Possible errors without this plugin:
+def function(param=0, other: int=0)->int:
+ return param + other
+```
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:-------------------------------------------------------------:|
+| T800 | Missing spaces between parameter annotation and default value |
+| T801 | Missing spaces in return type annotation |
+
+## License
+
+MIT.
+
+
+%prep
+%autosetup -n flake8-type-annotations-0.1.0
+
+%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-flake8-type-annotations -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..ccc209d
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+f3002c943784f7ae02b95eb9e2263589 flake8-type-annotations-0.1.0.tar.gz