Accepting request 26228 from home:Odd-rationale

Copy from home:Odd-rationale/python-nltk via accept of submit request 26228 revision 7.
Request was accepted with message:
looks good to me

OBS-URL: https://build.opensuse.org/request/show/26228
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nltk?expand=0&rev=1
This commit is contained in:
Stephan Kulow 2010-01-15 14:00:38 +00:00 committed by Git OBS Bridge
commit 509876b0ce
6 changed files with 129 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
nltk-2.0b7.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:46839396d554defc48efddb8f54d5a72c132e07d8eb754c78ccbf328ef012a48
size 749180

View File

@ -0,0 +1,12 @@
--- setup.py.old 2009-11-09 06:47:53.000000000 -0600
+++ setup.py 2009-12-10 17:42:05.570604887 -0600
@@ -57,8 +57,7 @@
'nltk.tag',
'nltk.tokenize',
'nltk.toolbox',
- 'nltk.etree',
- 'yaml'
+ 'nltk.etree'
],
)

11
python-nltk.changes Normal file
View File

@ -0,0 +1,11 @@
-------------------------------------------------------------------
Thu Dec 10 17:23:51 CST 2009 - oddrationale@gmail.com
- added python-nltk-remove-yaml.patch to pevent conflict with
python-yaml
- added Requires: python-yaml
-------------------------------------------------------------------
Wed Dec 9 15:39:35 CST 2009 - oddrationale@gmail.com
- Initial Release (Version 2.0b7):

79
python-nltk.spec Normal file
View File

@ -0,0 +1,79 @@
#
# spec file for package python-nltk (Version 2.0b7)
#
# Copyright 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%define modname nltk
Name: python-nltk
Version: 2.0b7
Release: 1
License: Apache V2.0
Summary: Natural Language Toolkit
Group: Development/Libraries/Python
Url: http://www.nltk.org/
Source0: nltk-%{version}.tar.bz2
# PATCH-FIX-OPENSUSE python-nltk-remove-yaml.patch
# prevents conflict with python-yaml
Patch0: python-nltk-remove-yaml.patch
%{py_requires}
BuildRequires: python-devel
BuildRequires: pyxml
BuildRequires: unzip
Requires: python-numpy
Requires: python-tk
Requires: python-yaml
Requires: pyxml
Recommends: python-matplotlib
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Build as noarch for >= 11.2
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArch: noarch
%endif
%description
NLTK -- the Natural Language Toolkit -- is a suite of open source
Python modules, data sets and tutorials supporting research and
development in Natural Language Processing.
Authors:
--------
Steven Bird <sb@csse.unimelb.edu.au>
Edward Loper
Ewan Klein
%prep
%setup -q -n %{modname}-%{version}
%patch0
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --record-rpm=INSTALLED_FILES --root="$RPM_BUILD_ROOT"
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%defattr(-, root, root)
%doc README.txt LICENSE.txt
%changelog