summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 15:38:47 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 15:38:47 +0000
commit83a65a114f6d10bea4b29041acbf842ca8f0a4db (patch)
tree013a3bfe8700726f48cb7dbebcf31d9b87c9a54f
parent77b43a4852588754406b0aa8095c92ba914e39b3 (diff)
automatic import of python-pylev
-rw-r--r--.gitignore1
-rw-r--r--python-pylev.spec78
-rw-r--r--sources1
3 files changed, 80 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..76e5bbd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pylev-1.4.0.tar.gz
diff --git a/python-pylev.spec b/python-pylev.spec
new file mode 100644
index 0000000..260f52e
--- /dev/null
+++ b/python-pylev.spec
@@ -0,0 +1,78 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pylev
+Version: 1.4.0
+Release: 1
+Summary: A pure Python Levenshtein implementation that's not freaking GPL'd.
+License: BSD License
+URL: http://github.com/toastdriven/pylev
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/11/f2/404d2bfa30fb4ee7c7a7435d593f9f698b25d191cafec69dd0c726f02f11/pylev-1.4.0.tar.gz
+BuildArch: noarch
+
+
+%description
+A pure Python Levenshtein implementation that's not freaking GPL'd.
+Based off the Wikipedia code samples at
+http://en.wikipedia.org/wiki/Levenshtein_distance.
+
+%package -n python3-pylev
+Summary: A pure Python Levenshtein implementation that's not freaking GPL'd.
+Provides: python-pylev
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pylev
+A pure Python Levenshtein implementation that's not freaking GPL'd.
+Based off the Wikipedia code samples at
+http://en.wikipedia.org/wiki/Levenshtein_distance.
+
+%package help
+Summary: Development documents and examples for pylev
+Provides: python3-pylev-doc
+%description help
+A pure Python Levenshtein implementation that's not freaking GPL'd.
+Based off the Wikipedia code samples at
+http://en.wikipedia.org/wiki/Levenshtein_distance.
+
+%prep
+%autosetup -n pylev-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-pylev -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 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..2344797
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+145afdcec514607149e884968911a770 pylev-1.4.0.tar.gz