summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-flake8-eradicate.spec259
-rw-r--r--sources1
3 files changed, 261 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..3ee3234 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/flake8-eradicate-1.4.0.tar.gz
diff --git a/python-flake8-eradicate.spec b/python-flake8-eradicate.spec
new file mode 100644
index 0000000..2744963
--- /dev/null
+++ b/python-flake8-eradicate.spec
@@ -0,0 +1,259 @@
+%global _empty_manifest_terminate_build 0
+Name: python-flake8-eradicate
+Version: 1.4.0
+Release: 1
+Summary: Flake8 plugin to find commented out code
+License: MIT
+URL: https://github.com/wemake-services/flake8-eradicate
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/74/6a/f99a1f021804d2c4a0f880218e34fc2f21a0727b9780d8f4e2ffb45f0326/flake8-eradicate-1.4.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-flake8
+Requires: python3-eradicate
+Requires: python3-attrs
+Requires: python3-importlib-metadata
+
+%description
+# flake8-eradicate
+
+[![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-eradicate/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-eradicate/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-eradicate/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-eradicate)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![PyPI version](https://badge.fury.io/py/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+`flake8` plugin to find commented out (or so called "dead") code.
+
+This is quite important for the project in a long run.
+Based on [`eradicate`](https://github.com/myint/eradicate) project.
+
+
+## Installation
+
+```bash
+pip install flake8-eradicate
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Usage
+
+Run your `flake8` checker [as usual](http://flake8.pycqa.org/en/latest/user/invocation.html).
+Commented code should raise an error.
+
+Example:
+
+```bash
+flake8 your_module.py
+```
+
+
+## Options
+
+- `--eradicate-aggressive` to enable aggressive mode from `eradicate`, can lead to false positives
+- `--eradicate-whitelist` to overwrite the whitelist from `eradicate` (`#` separated list)
+- `--eradicate-whitelist-extend` to extend the whitelist from `eradicate` (`#` separated list)
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:------------------------:|
+| E800 | Found commented out code |
+
+
+## Output example
+
+Here's how output looks like (we are using [`wemake` formatter](https://wemake-python-stylegui.de/en/latest/pages/usage/formatter.html)):
+
+
+![flake8-eradicate output](https://raw.githubusercontent.com/wemake-services/flake8-eradicate/master/eradicate.png)
+
+
+## License
+
+MIT.
+
+
+%package -n python3-flake8-eradicate
+Summary: Flake8 plugin to find commented out code
+Provides: python-flake8-eradicate
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-flake8-eradicate
+# flake8-eradicate
+
+[![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-eradicate/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-eradicate/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-eradicate/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-eradicate)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![PyPI version](https://badge.fury.io/py/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+`flake8` plugin to find commented out (or so called "dead") code.
+
+This is quite important for the project in a long run.
+Based on [`eradicate`](https://github.com/myint/eradicate) project.
+
+
+## Installation
+
+```bash
+pip install flake8-eradicate
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Usage
+
+Run your `flake8` checker [as usual](http://flake8.pycqa.org/en/latest/user/invocation.html).
+Commented code should raise an error.
+
+Example:
+
+```bash
+flake8 your_module.py
+```
+
+
+## Options
+
+- `--eradicate-aggressive` to enable aggressive mode from `eradicate`, can lead to false positives
+- `--eradicate-whitelist` to overwrite the whitelist from `eradicate` (`#` separated list)
+- `--eradicate-whitelist-extend` to extend the whitelist from `eradicate` (`#` separated list)
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:------------------------:|
+| E800 | Found commented out code |
+
+
+## Output example
+
+Here's how output looks like (we are using [`wemake` formatter](https://wemake-python-stylegui.de/en/latest/pages/usage/formatter.html)):
+
+
+![flake8-eradicate output](https://raw.githubusercontent.com/wemake-services/flake8-eradicate/master/eradicate.png)
+
+
+## License
+
+MIT.
+
+
+%package help
+Summary: Development documents and examples for flake8-eradicate
+Provides: python3-flake8-eradicate-doc
+%description help
+# flake8-eradicate
+
+[![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-eradicate/workflows/test/badge.svg?branch=master&event=push)](https://github.com/wemake-services/flake8-eradicate/actions?query=workflow%3Atest)
+[![codecov](https://codecov.io/gh/wemake-services/flake8-eradicate/branch/master/graph/badge.svg)](https://codecov.io/gh/wemake-services/flake8-eradicate)
+[![Python Version](https://img.shields.io/pypi/pyversions/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![PyPI version](https://badge.fury.io/py/flake8-eradicate.svg)](https://pypi.org/project/flake8-eradicate/)
+[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
+
+`flake8` plugin to find commented out (or so called "dead") code.
+
+This is quite important for the project in a long run.
+Based on [`eradicate`](https://github.com/myint/eradicate) project.
+
+
+## Installation
+
+```bash
+pip install flake8-eradicate
+```
+
+It is also a valuable part of [`wemake-python-styleguide`](https://github.com/wemake-services/wemake-python-styleguide).
+
+
+## Usage
+
+Run your `flake8` checker [as usual](http://flake8.pycqa.org/en/latest/user/invocation.html).
+Commented code should raise an error.
+
+Example:
+
+```bash
+flake8 your_module.py
+```
+
+
+## Options
+
+- `--eradicate-aggressive` to enable aggressive mode from `eradicate`, can lead to false positives
+- `--eradicate-whitelist` to overwrite the whitelist from `eradicate` (`#` separated list)
+- `--eradicate-whitelist-extend` to extend the whitelist from `eradicate` (`#` separated list)
+
+
+## Error codes
+
+| Error code | Description |
+|:----------:|:------------------------:|
+| E800 | Found commented out code |
+
+
+## Output example
+
+Here's how output looks like (we are using [`wemake` formatter](https://wemake-python-stylegui.de/en/latest/pages/usage/formatter.html)):
+
+
+![flake8-eradicate output](https://raw.githubusercontent.com/wemake-services/flake8-eradicate/master/eradicate.png)
+
+
+## License
+
+MIT.
+
+
+%prep
+%autosetup -n flake8-eradicate-1.4.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-eradicate -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..e909d96
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+a144d2aeedbf2efabde60d0a2587513c flake8-eradicate-1.4.0.tar.gz