From ee5d61a4b4ce52004a8ccef62e6aeabcde52a7a7 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 12 Apr 2023 05:06:19 +0000 Subject: automatic import of python-flake8-type-annotations --- .gitignore | 1 + python-flake8-type-annotations.spec | 184 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 186 insertions(+) create mode 100644 python-flake8-type-annotations.spec create mode 100644 sources 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 - 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 -- cgit v1.2.3