summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 08:28:19 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 08:28:19 +0000
commitf966cf0cc44ee771df38d19f668db05e1282a79d (patch)
tree3012fc02f37839ce1fb13df9a9784a4b4b0affb3
parent08fcb47d148f73100158aef19c68897940c06774 (diff)
automatic import of python-snowballstemmer
-rw-r--r--.gitignore1
-rw-r--r--python-snowballstemmer.spec78
-rw-r--r--sources1
3 files changed, 80 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..30b069f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/snowballstemmer-2.2.0.tar.gz
diff --git a/python-snowballstemmer.spec b/python-snowballstemmer.spec
new file mode 100644
index 0000000..7667e31
--- /dev/null
+++ b/python-snowballstemmer.spec
@@ -0,0 +1,78 @@
+%global _empty_manifest_terminate_build 0
+Name: python-snowballstemmer
+Version: 2.2.0
+Release: 1
+Summary: This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
+License: BSD-3-Clause
+URL: https://github.com/snowballstem/snowball
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz
+BuildArch: noarch
+
+
+%description
+Python 3 (>= 3.3) is supported. We no longer actively support Python 2 as
+the Python developers stopped supporting it at the start of 2020. Snowball
+2.1.0 was the last release to officially support Python 2.
+
+%package -n python3-snowballstemmer
+Summary: This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
+Provides: python-snowballstemmer
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-snowballstemmer
+Python 3 (>= 3.3) is supported. We no longer actively support Python 2 as
+the Python developers stopped supporting it at the start of 2020. Snowball
+2.1.0 was the last release to officially support Python 2.
+
+%package help
+Summary: Development documents and examples for snowballstemmer
+Provides: python3-snowballstemmer-doc
+%description help
+Python 3 (>= 3.3) is supported. We no longer actively support Python 2 as
+the Python developers stopped supporting it at the start of 2020. Snowball
+2.1.0 was the last release to officially support Python 2.
+
+%prep
+%autosetup -n snowballstemmer-2.2.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-snowballstemmer -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.2.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..d3bd749
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4332ddc7bbee0f344a03915b2ad59a54 snowballstemmer-2.2.0.tar.gz