summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 14:49:36 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 14:49:36 +0000
commit5d811cc4cac0ce0137cfcbc7c44c3f34613c9da1 (patch)
tree7b3d3e4e4413d60c4f459a6604be77662a27e1c8
parentbf8051d32548ea552d2f09e6347de3ebd0f6026e (diff)
automatic import of python-flake8-broken-line
-rw-r--r--.gitignore1
-rw-r--r--python-flake8-broken-line.spec263
-rw-r--r--sources1
3 files changed, 265 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..6360731 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/flake8-broken-line-0.6.0.tar.gz
diff --git a/python-flake8-broken-line.spec b/python-flake8-broken-line.spec
new file mode 100644
index 0000000..b1b71b7
--- /dev/null
+++ b/python-flake8-broken-line.spec
@@ -0,0 +1,263 @@
+%global _empty_manifest_terminate_build 0
+Name: python-flake8-broken-line
+Version: 0.6.0
+Release: 1
+Summary: Flake8 plugin to forbid backslashes for line breaks
+License: MIT
+URL: https://github.com/wemake-services/flake8-broken-line
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/31/5f/214a869897c26fdf58d16b73178055fcc7cb7b458c276a93ba92cead440f/flake8-broken-line-0.6.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-flake8
+Requires: python3-importlib-metadata
+
+%description
+# flake8-broken-line
+
+[![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.github.io)
+[![Build Status](https://github.com/wemake-services/flake8-broken-line/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-broken-line/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-broken-line/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-broken-line)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![PyPI version](https://badge.fury.io/py/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+Do not break the line! 🚨
+
+
+## Installation
+
+```bash
+pip install flake8-broken-line
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Code example
+
+Things we check with this plugin:
+
+```python
+# String line breaks, use `()` or `"""` instead:
+
+some_string = 'first line\
+second line'
+
+# Use a single line, `()`, or new variables instead:
+
+if 1 == 1 and \
+ 2 == 2:
+ print('Do not do that!')
+
+# Do not use for method chaining:
+some_object \
+ .call_method(param1, param2) \
+ .call_other(keyword=value) \
+ .finalize()
+
+# Instead use:
+some_objects.call_method(
+ param1, param2,
+).call_other(
+ keyword=value
+).finalize()
+
+```
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:----------------------------------------------:|
+| N400 | Found backslash that is used for line breaking |
+
+
+## License
+
+MIT.
+
+
+%package -n python3-flake8-broken-line
+Summary: Flake8 plugin to forbid backslashes for line breaks
+Provides: python-flake8-broken-line
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-flake8-broken-line
+# flake8-broken-line
+
+[![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.github.io)
+[![Build Status](https://github.com/wemake-services/flake8-broken-line/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-broken-line/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-broken-line/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-broken-line)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![PyPI version](https://badge.fury.io/py/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+Do not break the line! 🚨
+
+
+## Installation
+
+```bash
+pip install flake8-broken-line
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Code example
+
+Things we check with this plugin:
+
+```python
+# String line breaks, use `()` or `"""` instead:
+
+some_string = 'first line\
+second line'
+
+# Use a single line, `()`, or new variables instead:
+
+if 1 == 1 and \
+ 2 == 2:
+ print('Do not do that!')
+
+# Do not use for method chaining:
+some_object \
+ .call_method(param1, param2) \
+ .call_other(keyword=value) \
+ .finalize()
+
+# Instead use:
+some_objects.call_method(
+ param1, param2,
+).call_other(
+ keyword=value
+).finalize()
+
+```
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:----------------------------------------------:|
+| N400 | Found backslash that is used for line breaking |
+
+
+## License
+
+MIT.
+
+
+%package help
+Summary: Development documents and examples for flake8-broken-line
+Provides: python3-flake8-broken-line-doc
+%description help
+# flake8-broken-line
+
+[![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.github.io)
+[![Build Status](https://github.com/wemake-services/flake8-broken-line/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-broken-line/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-broken-line/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-broken-line)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![PyPI version](https://badge.fury.io/py/flake8-broken-line.svg)](https://pypi.org/project/flake8-broken-line/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+Do not break the line! 🚨
+
+
+## Installation
+
+```bash
+pip install flake8-broken-line
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Code example
+
+Things we check with this plugin:
+
+```python
+# String line breaks, use `()` or `"""` instead:
+
+some_string = 'first line\
+second line'
+
+# Use a single line, `()`, or new variables instead:
+
+if 1 == 1 and \
+ 2 == 2:
+ print('Do not do that!')
+
+# Do not use for method chaining:
+some_object \
+ .call_method(param1, param2) \
+ .call_other(keyword=value) \
+ .finalize()
+
+# Instead use:
+some_objects.call_method(
+ param1, param2,
+).call_other(
+ keyword=value
+).finalize()
+
+```
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:----------------------------------------------:|
+| N400 | Found backslash that is used for line breaking |
+
+
+## License
+
+MIT.
+
+
+%prep
+%autosetup -n flake8-broken-line-0.6.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-broken-line -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..e02edb2
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+c1ede859598dc3b4c55c51c28a4a9f34 flake8-broken-line-0.6.0.tar.gz