123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- %global pypi_name snowballstemmer
- Summary: Provides 16 stemmer algorithms generated from Snowball algorithms
- Name: python-%{pypi_name}
- Version: 2.0.0
- Release: 1%{?_dist_release}
- Group: programming
- Vendor: Project Vine
- Distribution: Vine Linux
- License: BSD
- URL: https://pypi.python.org/pypi/%{pypi_name}
- Source0: %{pypi_name}-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: python-rpm-macros
- BuildRequires: python-devel
- BuildRequires: python2-rpm-macros
- BuildRequires: python3-devel
- BuildRequires: python3-rpm-macros
- %{?python_provide:%python_provide python2-%{pypi_name}}
- %description
- It includes following language algorithms:
- * Danish
- * Dutch
- * English (Standard, Porter)
- * Finnish
- * French
- * German
- * Hungarian
- * Italian
- * Norwegian
- * Portuguese
- * Romanian
- * Russian
- * Spanish
- * Swedish
- * Turkis
- This is a pure Python stemming library. If PyStemmer is available, this module
- uses it to accelerate.
- %package -n python3-%{pypi_name}
- Summary: Provides 16 stemmer algorithms generated from Snowball algorithms
- Group: programming
- BuildArch: noarch
- %{?python_provide:%python_provide python3-%{pypi_name}}
- %description -n python3-%{pypi_name}
- It includes following language algorithms:
- * Danish
- * Dutch
- * English (Standard, Porter)
- * Finnish
- * French
- * German
- * Hungarian
- * Italian
- * Norwegian
- * Portuguese
- * Romanian
- * Russian
- * Spanish
- * Swedish
- * Turkis
- This is a pure Python stemming library. If PyStemmer is available, this module
- uses it to accelerate.
- %prep
- %setup -qn %{pypi_name}-%{version}
- # Remove upstream's egg-info
- rm -rf %{pypi_name}.egg-info
- %build
- %py2_build
- %py3_build
- %install
- %py2_install
- %py3_install
- %check
- # No tests
- %files
- %license COPYING
- %doc README.rst
- %{python_sitelib}/%{pypi_name}-%{version}-py%{python_version}.egg-info
- %{python_sitelib}/%{pypi_name}/
- %files -n python3-%{pypi_name}
- %license COPYING
- %doc README.rst
- %{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
- %{python3_sitelib}/%{pypi_name}/
- %changelog
- * Sun Aug 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.0.0-1
- - new upstream release.
- * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2.1-8
- - initial build for Vine Linux.
- * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-7
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
- * Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-6
- - Rebuilt for Python 3.7
- * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
- * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
- * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
- * Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.2.1-2
- - Rebuild for Python 3.6
- * Sun Sep 18 2016 Julien Enselme <jujens@jujens.eu> - 1.2.1-1
- - Update to 1.2.1
- * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
- - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
- * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
- * Thu Nov 5 2015 Julien Enselme <jujens@jujens.eu> - 1.2.0-2
- - Rebuilt for python 3.5
- * Mon Aug 24 2015 Julien Enselme <jujens@jujens.eu> - 1.2.0-1
- - Initial package
|