commit
e0124b99b6
@ -0,0 +1 @@
|
|||||||
|
SOURCES/snowballstemmer-1.9.0.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
f4d9a9b072cc6cdaa80ecf2f037e8b8ab2b76425 SOURCES/snowballstemmer-1.9.0.tar.gz
|
@ -0,0 +1,27 @@
|
|||||||
|
Copyright (c) 2001, Dr Martin Porter
|
||||||
|
Copyright (c) 2004,2005, Richard Boulton
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
3. Neither the name of the Snowball project nor the names of its contributors
|
||||||
|
may be used to endorse or promote products derived from this software
|
||||||
|
without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,210 @@
|
|||||||
|
%global pypi_name snowballstemmer
|
||||||
|
|
||||||
|
Name: python-%{pypi_name}
|
||||||
|
Version: 1.9.0
|
||||||
|
Release: 10%{?dist}
|
||||||
|
Summary: Provides 16 stemmer algorithms generated from Snowball algorithms
|
||||||
|
|
||||||
|
License: BSD
|
||||||
|
URL: https://pypi.python.org/pypi/%{pypi_name}
|
||||||
|
Source0: https://files.pythonhosted.org/packages/a0/5e/d9ead2d57d39b3e1c1868ce84212319e5543a19c4185dce7e42a9dd968b0/snowballstemmer-1.9.0.tar.gz
|
||||||
|
Source1: https://raw.githubusercontent.com/snowballstem/snowball/master/COPYING
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%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 python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
Summary: Provides 16 stemmer algorithms generated from Snowball algorithms
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildArch: noarch
|
||||||
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
||||||
|
|
||||||
|
%description -n python%{python3_pkgversion}-%{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.
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?python3_other_pkgversion}
|
||||||
|
%package -n python%{python3_other_pkgversion}-%{pypi_name}
|
||||||
|
Summary: Provides 16 stemmer algorithms generated from Snowball algorithms
|
||||||
|
BuildRequires: python%{python3_other_pkgversion}-devel
|
||||||
|
BuildArch: noarch
|
||||||
|
%{?python_provide:%python_provide python%{python3_other_pkgversion}-%{pypi_name}}
|
||||||
|
|
||||||
|
%description -n python%{python3_other_pkgversion}-%{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.
|
||||||
|
%endif # python3_other_pkgversion
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -qn %{pypi_name}-%{version}
|
||||||
|
# Remove upstream's egg-info
|
||||||
|
rm -rf %{pypi_name}.egg-info
|
||||||
|
cp %{SOURCE1} .
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%py3_build
|
||||||
|
%{?python3_other_pkgversion: %py3_other_build}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%py3_install
|
||||||
|
%{?python3_other_pkgversion: %py3_other_install}
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
# No tests
|
||||||
|
|
||||||
|
|
||||||
|
%files -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
%license COPYING
|
||||||
|
%doc README.rst
|
||||||
|
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
||||||
|
%{python3_sitelib}/%{pypi_name}/
|
||||||
|
|
||||||
|
%if 0%{?python3_other_pkgversion}
|
||||||
|
%files -n python%{python3_other_pkgversion}-%{pypi_name}
|
||||||
|
%license COPYING
|
||||||
|
%doc README.rst
|
||||||
|
%{python3_other_sitelib}/%{pypi_name}-%{version}-py%{python3_other_version}.egg-info
|
||||||
|
%{python3_other_sitelib}/%{pypi_name}/
|
||||||
|
%endif # python3_other_pkgversion
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Mar 15 2023 MSVSphere Packaging Team <packager@msvsphere.ru> - 1.9.0-10
|
||||||
|
- Rebuilt for MSVSphere 9.1.
|
||||||
|
|
||||||
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.9.0-10
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.9.0-9
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1.9.0-6
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.9.0-4
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.9.0-3
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 13 2019 Julien Enselme <jujens@jujens.eu> - 1.9.0-1
|
||||||
|
- Update to 1.9.0
|
||||||
|
|
||||||
|
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-10
|
||||||
|
- Subpackage python2-snowballstemmer has been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Sphinx2
|
||||||
|
|
||||||
|
* Sun Feb 24 2019 Julien Enselme <jujens@jujens.eu> - 1.2.1-9
|
||||||
|
- Can build on EPEL7 (#1622605). Thanks to Scott K Logan for the patch.
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* 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
|
Loading…
Reference in new issue