diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 22:38:39 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 22:38:39 +0000 |
| commit | 474e65b50cafa5150798974451734b1738163095 (patch) | |
| tree | 48a01eca09f5cafab14e748ddb9fb64a10f88e55 | |
| parent | e0552180e1ac6587861df5e253cc80f63da15e9a (diff) | |
automatic import of python-thefuzz
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-thefuzz.spec | 73 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 75 insertions, 0 deletions
@@ -0,0 +1 @@ +/thefuzz-0.19.0.tar.gz diff --git a/python-thefuzz.spec b/python-thefuzz.spec new file mode 100644 index 0000000..4e277a5 --- /dev/null +++ b/python-thefuzz.spec @@ -0,0 +1,73 @@ +%global _empty_manifest_terminate_build 0 +Name: python-thefuzz +Version: 0.19.0 +Release: 1 +Summary: Fuzzy string matching in python +License: GPLv2 +URL: https://github.com/seatgeek/thefuzz +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d2/bd/aecf6079c3843cfff370d37138d4f0b36ffdffa94549c20e6d74eda799f9/thefuzz-0.19.0.tar.gz +BuildArch: noarch + +Requires: python3-levenshtein + +%description +Fuzzy string matching like a boss. It uses `Levenshtein Distance <https://en.wikipedia.org/wiki/Levenshtein_distance>`_ to calculate the differences between sequences in a simple-to-use package. + +%package -n python3-thefuzz +Summary: Fuzzy string matching in python +Provides: python-thefuzz +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-thefuzz +Fuzzy string matching like a boss. It uses `Levenshtein Distance <https://en.wikipedia.org/wiki/Levenshtein_distance>`_ to calculate the differences between sequences in a simple-to-use package. + +%package help +Summary: Development documents and examples for thefuzz +Provides: python3-thefuzz-doc +%description help +Fuzzy string matching like a boss. It uses `Levenshtein Distance <https://en.wikipedia.org/wiki/Levenshtein_distance>`_ to calculate the differences between sequences in a simple-to-use package. + +%prep +%autosetup -n thefuzz-0.19.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-thefuzz -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.19.0-1 +- Package Spec generated @@ -0,0 +1 @@ +034f3aa06169dff421262f5e2e10660f thefuzz-0.19.0.tar.gz |
