14
0
Sascha Peilicke
2012-03-29 09:54:13 +00:00
committed by Git OBS Bridge
parent c3c9eba2b7
commit 0571837f51
4 changed files with 25 additions and 17 deletions

View File

@@ -11,34 +11,31 @@
# 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/
#
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: python-html5lib
Version: 0.95
Release: 0
Url: http://code.google.com/p/html5lib/
Summary: HTML parser based on the WHAT-WG Web Applications 1.0("HTML5") specifcation
License: MIT
Summary: HTML parser based on the WHAT-WG Web Applications 1
Url: http://code.google.com/p/html5lib/
Group: Development/Languages/Python
Source: html5lib-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: http://pypi.python.org/packages/source/h/html5lib/html5lib-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-distribute
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
#BuildRequires: python-nose
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%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
%endif
%description
HTML parser designed to follow the HTML5
specification. The parser is designed to handle all flavours of HTML and
HTML parser designed to follow the HTML5
specification. The parser is designed to handle all flavours of HTML and
parses invalid documents using well-defined error handling rules compatible
with the behaviour of major desktop web browsers.
@@ -54,9 +51,14 @@ python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
rm -r %{buildroot}%{python_sitelib}/html5lib/tests # Don't ship tests
#%%check
#nosetests
%files
%defattr(-,root,root,-)
%doc README
%{python_sitelib}/*
%changelog