1
0
forked from pool/python-Whoosh

- Update to version 2.4.1:

+ Fixes issues #242, #257, #261, #262, #263
- Renamed to python-Whoosh, obsoletes python-whoosh
- Install HTML documentation and LICENSE.txt
- Set SPDX-style license
- Run testsuite

- update to 2.4.0
- python3 package added
- a lot of spec improvements 

- updated to 2.3.2
- make package noarch if possible

- Update to version 2.4.1:
  + Fixes issues #242, #257, #261, #262, #263
- Renamed to python3-Whoosh, obsoletes python3-whoosh
- Install HTML documentation and LICENSE.txt
- Set SPDX-style license
- Run testsuite

- python3 package added

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Whoosh?expand=0&rev=1
This commit is contained in:
Sascha Peilicke 2013-01-30 11:42:07 +00:00 committed by Git OBS Bridge
commit 459bd8c6ab
7 changed files with 191 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
Whoosh-2.4.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:466c377ae8567aed86abef401774ddb27e80055ac34a33bd0e12d6b7db69a40e
size 938446

23
python-Whoosh.changes Normal file
View File

@ -0,0 +1,23 @@
-------------------------------------------------------------------
Wed Jan 30 11:42:20 UTC 2013 - saschpe@suse.de
- Update to version 2.4.1:
+ Fixes issues #242, #257, #261, #262, #263
- Renamed to python-Whoosh, obsoletes python-whoosh
- Install HTML documentation and LICENSE.txt
- Set SPDX-style license
- Run testsuite
-------------------------------------------------------------------
Fri Jun 8 13:33:01 UTC 2012 - highwaystar.ru@gmail.com
- update to 2.4.0
- python3 package added
- a lot of spec improvements
-------------------------------------------------------------------
Mon Apr 16 13:15:09 UTC 2012 - mcihar@suse.cz
- updated to 2.3.2
- make package noarch if possible

64
python-Whoosh.spec Normal file
View File

@ -0,0 +1,64 @@
#
# spec file for package python-Whoosh
#
# Copyright (c) 2012 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/
#
Name: python-Whoosh
Version: 2.4.1
Release: 0
Url: http://www.turbogears.org
Summary: Fast, pure-Python full text indexing, search, and spell checking library
License: Apache-2.0
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/W/Whoosh/Whoosh-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: python-devel
BuildRequires: python-distribute
BuildRequires: python-nose
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
Provides: python-whoosh = %{version}
Obsoletes: python-whoosh < %{version}
%description
Whoosh is a fast, pure-Python indexing and search library. Programmers can use
it to easily add search functionality to their applications and websites.
Because Whoosh is pure Python, you don't have to compile or install a binary
support library and/or make Python work with a JVM, yet Whoosh is still very
fast at indexing and searching. Every part of how Whoosh works can be extended
or replaced to meet your needs exactly.
%prep
%setup -q -n Whoosh-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
python setup.py test
%files
%defattr(-,root,root,-)
%doc LICENSE.txt README.txt docs/build/html
%{python_sitelib}/*
%changelog

15
python3-Whoosh.changes Normal file
View File

@ -0,0 +1,15 @@
-------------------------------------------------------------------
Wed Jan 30 11:43:45 UTC 2013 - saschpe@suse.de
- Update to version 2.4.1:
+ Fixes issues #242, #257, #261, #262, #263
- Renamed to python3-Whoosh, obsoletes python3-whoosh
- Install HTML documentation and LICENSE.txt
- Set SPDX-style license
- Run testsuite
-------------------------------------------------------------------
Fri Jun 8 13:33:35 UTC 2012 - highwaystar.ru@gmail.com
- python3 package added

62
python3-Whoosh.spec Normal file
View File

@ -0,0 +1,62 @@
#
# spec file for package python3-Whoosh
#
# Copyright (c) 2012 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/
#
Name: python3-Whoosh
Version: 2.4.1
Release: 0
Url: http://www.turbogears.org
Summary: Fast, pure-Python full text indexing, search, and spell checking library
License: Apache-2.0
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/W/Whoosh/Whoosh-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: python3
BuildRequires: python3-2to3
BuildRequires: python3-devel
BuildRequires: python3-distribute
BuildRequires: python3-nose
BuildArch: noarch
Provides: python3-whoosh = %{version}
Obsoletes: python3-whoosh < %{version}
%description
Whoosh is a fast, pure-Python indexing and search library. Programmers can use
it to easily add search functionality to their applications and websites.
Because Whoosh is pure Python, you don't have to compile or install a binary
support library and/or make Python work with a JVM, yet Whoosh is still very
fast at indexing and searching. Every part of how Whoosh works can be extended
or replaced to meet your needs exactly.
%prep
%setup -q -n Whoosh-%{version}
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
python3 setup.py test
%files
%defattr(-,root,root,-)
%doc LICENSE.txt README.txt docs/build/html
%{python3_sitelib}/*
%changelog