diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-setuptools-pep8.spec | 120 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 122 insertions, 0 deletions
@@ -0,0 +1 @@ +/setuptools-pep8-0.9.0.tar.gz diff --git a/python-setuptools-pep8.spec b/python-setuptools-pep8.spec new file mode 100644 index 0000000..11937bc --- /dev/null +++ b/python-setuptools-pep8.spec @@ -0,0 +1,120 @@ +%global _empty_manifest_terminate_build 0 +Name: python-setuptools-pep8 +Version: 0.9.0 +Release: 1 +Summary: pep8 command for setuptools +License: BSD +URL: https://github.com/CraigJPerry/setuptools-pep8 +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/20/8a/f75f0126e3809a98b8bd850b93389b35f04958653c3bb5d1b2de5f33c349/setuptools-pep8-0.9.0.tar.gz +BuildArch: noarch + + +%description +Originally based on https://github.com/johnnoone/setuptools-pylint +This package exposes the `pep8`_ style guide checker as a +sub-command of setup.py:: + $ cat setup.py + setup( + name='your project', + setup_requires=['setuptools-pep8'] + ) + $ cat setup.cfg + [pep8] + ignore=E225 + $ python setup.py pep8 + running pep8 + ./setup.py:41:1: W391 blank line at end of file +This invokes ``pep8`` and applies any configuration from your +``setup.cfg`` file's ``[pep8]`` section. Typical use cases +include simplification of continuous-integration job configurations. + +%package -n python3-setuptools-pep8 +Summary: pep8 command for setuptools +Provides: python-setuptools-pep8 +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-setuptools-pep8 +Originally based on https://github.com/johnnoone/setuptools-pylint +This package exposes the `pep8`_ style guide checker as a +sub-command of setup.py:: + $ cat setup.py + setup( + name='your project', + setup_requires=['setuptools-pep8'] + ) + $ cat setup.cfg + [pep8] + ignore=E225 + $ python setup.py pep8 + running pep8 + ./setup.py:41:1: W391 blank line at end of file +This invokes ``pep8`` and applies any configuration from your +``setup.cfg`` file's ``[pep8]`` section. Typical use cases +include simplification of continuous-integration job configurations. + +%package help +Summary: Development documents and examples for setuptools-pep8 +Provides: python3-setuptools-pep8-doc +%description help +Originally based on https://github.com/johnnoone/setuptools-pylint +This package exposes the `pep8`_ style guide checker as a +sub-command of setup.py:: + $ cat setup.py + setup( + name='your project', + setup_requires=['setuptools-pep8'] + ) + $ cat setup.cfg + [pep8] + ignore=E225 + $ python setup.py pep8 + running pep8 + ./setup.py:41:1: W391 blank line at end of file +This invokes ``pep8`` and applies any configuration from your +``setup.cfg`` file's ``[pep8]`` section. Typical use cases +include simplification of continuous-integration job configurations. + +%prep +%autosetup -n setuptools-pep8-0.9.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-setuptools-pep8 -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.0-1 +- Package Spec generated @@ -0,0 +1 @@ +8d21d3dbee4e82652b15b1873e789e6c setuptools-pep8-0.9.0.tar.gz |