- Update to 0.95:
- Sorry, no changelog atm. - Regenerate spec file with py2pack. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-html5lib?expand=0&rev=3
This commit is contained in:
committed by
Git OBS Bridge
parent
bc16c90218
commit
8d66ed772e
@@ -1,46 +1,62 @@
|
||||
# norootforbuild
|
||||
#
|
||||
# spec file for package python-html5lib
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
%{!?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.90
|
||||
Release: 1
|
||||
Summary: HTML parser based on the WHAT-WG Web Applications
|
||||
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
|
||||
Group: Development/Libraries/Python
|
||||
Group: Development/Languages/Python
|
||||
Source: html5lib-%{version}.tar.bz2
|
||||
URL: http://code.google.com/p/html5lib
|
||||
BuildRequires: python-devel, python-setuptools
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%{py_requires}
|
||||
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-distribute
|
||||
%if 0%{?suse_version}
|
||||
%py_requires
|
||||
%if 0%{?suse_version} > 1110
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
%endif
|
||||
|
||||
%description
|
||||
HTML parser designed to follow the WHATWG HTML5 specification. The parser is designed to handle all
|
||||
flavours of HTML and parses invalid documents using well-defined error handling rules compatible
|
||||
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.
|
||||
Output is to a tree structure; the current release supports output to ElementTree (including
|
||||
cElementTree and lxml.etree), minidom, and a custom simpletree format.
|
||||
html5lib also includes a HTML sanitizer, "treewalkers" for converting various tree formats into
|
||||
streams and filters and serializers to operate on those streams.
|
||||
|
||||
Author:
|
||||
--------
|
||||
James Graham <jg307@cam.ac.uk>
|
||||
|
||||
Output is to a tree structure; the current release supports output to
|
||||
DOM, ElementTree, lxml and BeautifulSoup tree formats as well as a
|
||||
simple custom format
|
||||
|
||||
%prep
|
||||
%setup -q -n html5lib-%{version}
|
||||
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
python setup.py build
|
||||
|
||||
%install
|
||||
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{python_sitelib}/*
|
||||
|
||||
%files -f INSTALLED_FILES
|
||||
%defattr(-,root,root)
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user