forked from pool/python-html5lib
- 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:
parent
fe81d06be9
commit
c3c9eba2b7
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c6cc4db154eb016ab5f6773e77122fcc994e735694b2882367a9ad36d30217d3
|
|
||||||
size 68043
|
|
3
html5lib-0.95.tar.bz2
Normal file
3
html5lib-0.95.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dde870841044bd19511ab875bbc057e0adf29bff34fb50d6db0a968b7b331842
|
||||||
|
size 181952
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 11 12:41:52 UTC 2012 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 0.95:
|
||||||
|
- Sorry, no changelog atm.
|
||||||
|
- Regenerate spec file with py2pack.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 18 00:16:01 UTC 2010 - alexandre@exatati.com.br
|
Mon Jan 18 00:16:01 UTC 2010 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -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
|
Name: python-html5lib
|
||||||
Version: 0.90
|
Version: 0.95
|
||||||
Release: 1
|
Release: 0
|
||||||
Summary: HTML parser based on the WHAT-WG Web Applications
|
Url: http://code.google.com/p/html5lib/
|
||||||
|
Summary: HTML parser based on the WHAT-WG Web Applications 1.0("HTML5") specifcation
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Languages/Python
|
||||||
Source: html5lib-%{version}.tar.bz2
|
Source: html5lib-%{version}.tar.bz2
|
||||||
URL: http://code.google.com/p/html5lib
|
|
||||||
BuildRequires: python-devel, python-setuptools
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{py_requires}
|
BuildRequires: python-devel
|
||||||
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
BuildRequires: python-distribute
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
%py_requires
|
||||||
|
%if 0%{?suse_version} > 1110
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
HTML parser designed to follow the WHATWG HTML5 specification. The parser is designed to handle all
|
HTML parser designed to follow the HTML5
|
||||||
flavours of HTML and parses invalid documents using well-defined error handling rules compatible
|
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.
|
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
|
%prep
|
||||||
%setup -q -n html5lib-%{version}
|
%setup -q -n html5lib-%{version}
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python} setup.py build
|
python setup.py build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%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
|
%changelog
|
||||||
%defattr(-,root,root)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user