diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 11:42:48 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 11:42:48 +0000 |
commit | ad6152d87b198b98139c31447cdde2d7e8e80417 (patch) | |
tree | 678aa1bf9e572dfb5bd8cf2566363ddbbce7f23a | |
parent | c8d6a7b7b907e6a0d3de20c363e967c6271acce4 (diff) |
automatic import of python-flake8-comprehensions
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-flake8-comprehensions.spec | 74 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 76 insertions, 0 deletions
@@ -0,0 +1 @@ +/flake8_comprehensions-3.11.1.tar.gz diff --git a/python-flake8-comprehensions.spec b/python-flake8-comprehensions.spec new file mode 100644 index 0000000..ac349fd --- /dev/null +++ b/python-flake8-comprehensions.spec @@ -0,0 +1,74 @@ +%global _empty_manifest_terminate_build 0 +Name: python-flake8-comprehensions +Version: 3.11.1 +Release: 1 +Summary: A flake8 plugin to help you write better list/set/dict comprehensions. +License: MIT +URL: https://github.com/adamchainz/flake8-comprehensions +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3c/6d/fcf98e1e87206c802d3d6359688d7a3c728f3cc6161e89d792388db1daac/flake8_comprehensions-3.11.1.tar.gz +BuildArch: noarch + +Requires: python3-flake8 +Requires: python3-importlib-metadata + +%description + + +%package -n python3-flake8-comprehensions +Summary: A flake8 plugin to help you write better list/set/dict comprehensions. +Provides: python-flake8-comprehensions +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-flake8-comprehensions + + +%package help +Summary: Development documents and examples for flake8-comprehensions +Provides: python3-flake8-comprehensions-doc +%description help + + +%prep +%autosetup -n flake8-comprehensions-3.11.1 + +%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-comprehensions -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 3.11.1-1 +- Package Spec generated @@ -0,0 +1 @@ +3257a0a79760a4ec16a05e1854974103 flake8_comprehensions-3.11.1.tar.gz |