diff --git a/html5lib-0.90.tar.bz2 b/html5lib-0.90.tar.bz2
deleted file mode 100644
index 627bacc..0000000
--- a/html5lib-0.90.tar.bz2
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c6cc4db154eb016ab5f6773e77122fcc994e735694b2882367a9ad36d30217d3
-size 68043
diff --git a/html5lib-0.95.tar.bz2 b/html5lib-0.95.tar.bz2
new file mode 100644
index 0000000..c3bbd25
--- /dev/null
+++ b/html5lib-0.95.tar.bz2
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dde870841044bd19511ab875bbc057e0adf29bff34fb50d6db0a968b7b331842
+size 181952
diff --git a/python-html5lib.changes b/python-html5lib.changes
index 27b0a9e..882a78f 100644
--- a/python-html5lib.changes
+++ b/python-html5lib.changes
@@ -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
diff --git a/python-html5lib.spec b/python-html5lib.spec
index 190dd38..9f42d69 100644
--- a/python-html5lib.spec
+++ b/python-html5lib.spec
@@ -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
+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