Python3 moved to devel:languages:python3

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Whoosh?expand=0&rev=3
This commit is contained in:
Sascha Peilicke 2013-06-17 12:54:45 +00:00 committed by Git OBS Bridge
parent df00907904
commit bfdc1a6384
2 changed files with 0 additions and 85 deletions

View File

@ -1,20 +0,0 @@
-------------------------------------------------------------------
Wed Jan 30 12:23:59 UTC 2013 - saschpe@suse.de
- Disable testsuite on Factory, fails currently
-------------------------------------------------------------------
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

View File

@ -1,65 +0,0 @@
#
# 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}
#NOTE(saschpe): Currently failing on Factory, check back:
%if 0%{?suse_version} && 0%{?suse_version} < 1230
%check
python3 setup.py test
%endif
%files
%defattr(-,root,root,-)
%doc LICENSE.txt README.txt docs/build/html
%{python3_sitelib}/*
%changelog