Accepting request 812178 from home:jayvdb:coala:python3-bears
- Update to v3.5 * add support for Python 3.8 * drop support for Python 2 * create NLTK's own Tokenizer class distinct from the Treebank reference tokeniser * update Vader sentiment analyser * fix JSON serialization of some PoS taggers * minor improvements in grammar.CFG, Vader, pl196x corpus reader, StringTokenizer * change implementation <= and >= for FreqDist so they are partial orders * make FreqDist iterable * correctly handle Penn Treebank trees with a unlabeled branching top node OBS-URL: https://build.opensuse.org/request/show/812178 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nltk?expand=0&rev=33
This commit is contained in:
parent
aacb620672
commit
a1372c9d5b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bed45551259aa2101381bbdd5df37d44ca2669c5c3dad72439fa459b29137d94
|
|
||||||
size 1450555
|
|
3
nltk-3.5.zip
Normal file
3
nltk-3.5.zip
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:845365449cd8c5f9731f7cb9f8bd6fd0767553b9d53af9eb1b3abf7700936b35
|
||||||
|
size 1433531
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 23 13:54:08 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.5
|
||||||
|
* add support for Python 3.8
|
||||||
|
* drop support for Python 2
|
||||||
|
* create NLTK's own Tokenizer class distinct from the Treebank
|
||||||
|
reference tokeniser
|
||||||
|
* update Vader sentiment analyser
|
||||||
|
* fix JSON serialization of some PoS taggers
|
||||||
|
* minor improvements in grammar.CFG, Vader, pl196x corpus reader,
|
||||||
|
StringTokenizer
|
||||||
|
* change implementation <= and >= for FreqDist so they are partial
|
||||||
|
orders
|
||||||
|
* make FreqDist iterable
|
||||||
|
* correctly handle Penn Treebank trees with a unlabeled branching
|
||||||
|
top node
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Mar 14 09:07:16 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
Sat Mar 14 09:07:16 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-nltk
|
# spec file for package python-nltk
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,22 +17,22 @@
|
|||||||
|
|
||||||
|
|
||||||
%{!?python_module:%define python_module() python-%{**} python3-%{**}}
|
%{!?python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define interps python python3
|
|
||||||
%define pyname nltk
|
%define pyname nltk
|
||||||
%bcond_without python2
|
|
||||||
Name: python-nltk
|
Name: python-nltk
|
||||||
Version: 3.4.5
|
Version: 3.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Natural Language Toolkit
|
Summary: Natural Language Toolkit
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: http://nltk.org/
|
URL: http://nltk.org/
|
||||||
Source: https://files.pythonhosted.org/packages/source/n/nltk/%{pyname}-%{version}.zip
|
Source: https://files.pythonhosted.org/packages/source/n/nltk/%{pyname}-%{version}.zip
|
||||||
BuildRequires: %{interps}
|
BuildRequires: %{python_module regex}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module six}
|
BuildRequires: %{python_module six}
|
||||||
|
BuildRequires: %{pythons}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
|
Requires: python-regex
|
||||||
Requires: python-six
|
Requires: python-six
|
||||||
Recommends: python-gensim
|
Recommends: python-gensim
|
||||||
Recommends: python-matplotlib
|
Recommends: python-matplotlib
|
||||||
@ -43,13 +43,9 @@ Recommends: python-requests
|
|||||||
Recommends: python-scikit-learn
|
Recommends: python-scikit-learn
|
||||||
Recommends: python-scipy
|
Recommends: python-scipy
|
||||||
Recommends: python-twython
|
Recommends: python-twython
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with python2}
|
|
||||||
BuildRequires: python-singledispatch
|
|
||||||
%endif
|
|
||||||
%ifpython2
|
|
||||||
Requires: python-singledispatch
|
|
||||||
%endif
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -71,6 +67,7 @@ sed -i "1,4{/\/usr\/bin\/env/d}" nltk/tokenize/stanford_segmenter.py
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%python_install
|
||||||
|
%python_clone -a %{buildroot}%{_bindir}/nltk
|
||||||
|
|
||||||
%{python_expand %fdupes %{buildroot}%{$python_sitelib}/
|
%{python_expand %fdupes %{buildroot}%{$python_sitelib}/
|
||||||
chmod -x %{buildroot}%{$python_sitelib}/nltk/test/dependency.doctest
|
chmod -x %{buildroot}%{$python_sitelib}/nltk/test/dependency.doctest
|
||||||
@ -80,10 +77,17 @@ chmod -x %{buildroot}%{$python_sitelib}/nltk/test/dependency.doctest
|
|||||||
# FOLLOWING http://www.nltk.org/install.html
|
# FOLLOWING http://www.nltk.org/install.html
|
||||||
%python_exec -c "import nltk" || exit 1
|
%python_exec -c "import nltk" || exit 1
|
||||||
|
|
||||||
|
%post
|
||||||
|
%python_install_alternative nltk
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%python_uninstall_alternative nltk
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%{python_sitelib}/%{pyname}/
|
%{python_sitelib}/%{pyname}/
|
||||||
%{python_sitelib}/%{pyname}-%{version}-py%{python_version}.egg-info/
|
%{python_sitelib}/%{pyname}-%{version}-py%{python_version}.egg-info/
|
||||||
|
%python_alternative %{_bindir}/nltk
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user