Hello community,
here is the log from the commit of package python-html5-parser for
openSUSE:Factory checked in at 2019-09-27 14:45:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-html5-parser (Old)
and /work/SRC/openSUSE:Factory/.python-html5-parser.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-html5-parser"
Fri Sep 27 14:45:52 2019 rev:8 rq:730335 version:0.4.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-html5-parser/python-html5-parser.changes
2019-07-01 10:44:41.617508677 +0200
+++
/work/SRC/openSUSE:Factory/.python-html5-parser.new.2352/python-html5-parser.changes
2019-09-27 14:45:54.417161285 +0200
@@ -1,0 +2,8 @@
+Wed Sep 11 15:01:52 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 0.4.8:
+ No changelog from upstream.
+ See instead here:
+
https://github.com/kovidgoyal/html5-parser/compare/v0.4.7...v0.4.8?diff=unified&name=v0.4.8
+
+-------------------------------------------------------------------
Old:
----
python-html5-parser-0.4.7.tar.gz
New:
----
python-html5-parser-0.4.8.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-html5-parser.spec ++++++
--- /var/tmp/diff_new_pack.kxtwhY/_old 2019-09-27 14:45:54.873160099 +0200
+++ /var/tmp/diff_new_pack.kxtwhY/_new 2019-09-27 14:45:54.873160099 +0200
@@ -17,14 +17,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
-
Name: python-html5-parser
-Version: 0.4.7
+Version: 0.4.8
Release: 0
Summary: C based HTML 5 parsing for Python
License: Apache-2.0
Group: Development/Languages/Python
-Url: https://github.com/kovidgoyal/html5-parser
+URL: https://github.com/kovidgoyal/html5-parser
Source:
https://github.com/kovidgoyal/html5-parser/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: %{python_module beautifulsoup4}
BuildRequires: %{python_module devel}
@@ -34,8 +33,6 @@
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libxml-2.0)
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
-
%python_subpackages
%description
@@ -52,8 +49,8 @@
%python_install
%files %{python_files}
-%defattr(-,root,root,-)
-%doc LICENSE README.rst
+%license LICENSE
+%doc README.rst
%{python_sitearch}/html5_parser/
%{python_sitearch}/html5_parser-%{version}-py%{python_version}.egg-info
++++++ python-html5-parser-0.4.7.tar.gz -> python-html5-parser-0.4.8.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/html5-parser-0.4.7/src/html5_parser/soup.py
new/html5-parser-0.4.8/src/html5_parser/soup.py
--- old/html5-parser-0.4.7/src/html5_parser/soup.py 2019-06-04
04:31:46.000000000 +0200
+++ new/html5-parser-0.4.8/src/html5_parser/soup.py 2019-07-25
08:02:44.000000000 +0200
@@ -14,9 +14,12 @@
def init_bs4_cdata_list_attributes():
global cdata_list_attributes, universal_cdata_list_attributes
from bs4.builder import HTMLTreeBuilder
- cdata_list_attributes = {
- k: frozenset(v) for k, v in
HTMLTreeBuilder.cdata_list_attributes.items()
- }
+ try:
+ attribs = HTMLTreeBuilder.DEFAULT_CDATA_LIST_ATTRIBUTES
+ except AttributeError:
+ attribs = HTMLTreeBuilder.cdata_list_attributes
+
+ cdata_list_attributes = {k: frozenset(v) for k, v in attribs.items()}
universal_cdata_list_attributes = cdata_list_attributes['*']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/html5-parser-0.4.7/src/python-wrapper.c
new/html5-parser-0.4.8/src/python-wrapper.c
--- old/html5-parser-0.4.7/src/python-wrapper.c 2019-06-04 04:31:46.000000000
+0200
+++ new/html5-parser-0.4.8/src/python-wrapper.c 2019-07-25 08:02:44.000000000
+0200
@@ -15,7 +15,7 @@
#define MAJOR 0
#define MINOR 4
-#define PATCH 7
+#define PATCH 8
static char *NAME = "libxml2:xmlDoc";
static char *DESTRUCTOR = "destructor:xmlFreeDoc";