diff --git a/0001-Make-test-more-resilient-against-changes-in-latest-l.patch b/0001-Make-test-more-resilient-against-changes-in-latest-l.patch deleted file mode 100644 index 8f734bf..0000000 --- a/0001-Make-test-more-resilient-against-changes-in-latest-l.patch +++ /dev/null @@ -1,39 +0,0 @@ -From acef361ca80ff9afd828d91c98ea91c92f9d09af Mon Sep 17 00:00:00 2001 -From: Stefan Behnel -Date: Sat, 4 Aug 2018 12:56:14 +0200 -Subject: [PATCH] Make test more resilient against changes in latest libxslt - releases. - ---- - src/lxml/tests/test_threading.py | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -diff --git a/src/lxml/tests/test_threading.py b/src/lxml/tests/test_threading.py -index 8948c3ec..5ede3f80 100644 ---- a/src/lxml/tests/test_threading.py -+++ b/src/lxml/tests/test_threading.py -@@ -130,7 +130,7 @@ class ThreadingTestCase(HelperTestCase): - - - ''' + '\n'.join('' % i for i in range(200)) + ''' -- -+ - ''') - self.assertRaises(etree.XSLTParseError, - etree.XSLT, style) -@@ -153,9 +153,10 @@ class ThreadingTestCase(HelperTestCase): - self.assertTrue(len(log)) - if last_log is not None: - self.assertEqual(len(last_log), len(log)) -- self.assertEqual(4, len(log)) -+ self.assertTrue(len(log) >= 2, len(log)) - for error in log: -- self.assertTrue(':ERROR:XSLT:' in str(error)) -+ self.assertTrue(':ERROR:XSLT:' in str(error), str(error)) -+ self.assertTrue(any('UnExpectedElement' in str(error) for error in log), log) - last_log = log - - def test_thread_xslt_apply_error_log(self): --- -2.18.0 - diff --git a/lxml-4.2.5.tar.gz b/lxml-4.2.5.tar.gz deleted file mode 100644 index d677ac1..0000000 --- a/lxml-4.2.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36720698c29e7a9626a0dc802ef8885f8f0239bfd1689628ecd459a061f2807f -size 4414081 diff --git a/lxml-4.3.1.tar.gz b/lxml-4.3.1.tar.gz new file mode 100644 index 0000000..2cb4835 --- /dev/null +++ b/lxml-4.3.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5e7e941d6e71c9c9a717c93725cda0708c2474f532e3680ac5e39ec57d224d +size 4380082 diff --git a/lxmldoc-4.2.5.pdf b/lxmldoc-4.2.5.pdf deleted file mode 100644 index 4b8b27f..0000000 --- a/lxmldoc-4.2.5.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de05b728b81bcf91c21f3d212a137bbf3971c46950d3ad386d5ca75366e3db58 -size 1148728 diff --git a/lxmldoc-4.3.0.pdf b/lxmldoc-4.3.0.pdf new file mode 100644 index 0000000..63c9b7a --- /dev/null +++ b/lxmldoc-4.3.0.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d227540c3aaa57a9fc4700362f7e1492ede3aa8a7d16554205748391b8e5db4 +size 1150779 diff --git a/python-lxml.changes b/python-lxml.changes index bfd28c8..d94eb19 100644 --- a/python-lxml.changes +++ b/python-lxml.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Thu Feb 14 07:33:12 UTC 2019 - John Vandenberg + +- Update to v4.3.1 + * Fixed crash when appending a child subtree that contains unsubstituted + entity references +- from v4.3.0 + * Features + + The module ``lxml.sax`` is compiled using Cython in order to speed it up. + + lxml.sax.ElementTreeProducer now preserves the namespace prefixes. + If two prefixes point to the same URI, the first prefix in alphabetical + order is used. + + Updated ISO-Schematron implementation to 2013 version (now MIT licensed) + and the corresponding schema to the 2016 version (with optional "properties"). + * Other + + Support for Python 2.6 and 3.3 was removed. + + The minimum dependency versions were raised to libxml2 2.9.2 and libxslt 1.1.27, + which were released in 2014 and 2012 respectively. +- from v4.2.6 + * Fix a DeprecationWarning in Py3.7+. + * Import warnings in Python 3.6+ were resolved. +- Remove no longer needed + 0001-Make-test-more-resilient-against-changes-in-latest-l.patch + ------------------------------------------------------------------- Tue Dec 4 12:50:12 UTC 2018 - Matej Cepl diff --git a/python-lxml.spec b/python-lxml.spec index 223d7de..00d51b1 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,7 +1,7 @@ # # spec file for package python-lxml # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,17 +16,18 @@ # +%define lxml_version 4.3 +%define lxml_patch_version 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-lxml -Version: 4.2.5 +Version: %{lxml_version}.%{lxml_patch_version} Release: 0 Summary: Pythonic XML processing library License: BSD-3-Clause AND GPL-2.0-or-later Group: Development/Languages/Python Url: http://lxml.de/ Source: https://files.pythonhosted.org/packages/source/l/lxml/lxml-%{version}.tar.gz -Source1: http://lxml.de/lxmldoc-%{version}.pdf -Patch0: 0001-Make-test-more-resilient-against-changes-in-latest-l.patch +Source1: https://lxml.de/%{lxml_version}/lxmldoc-%{lxml_version}.0.pdf BuildRequires: %{python_module Cython >= 0.26.1} BuildRequires: %{python_module cssselect >= 0.9.1} BuildRequires: %{python_module setuptools >= 18.0.1} @@ -71,7 +72,6 @@ This package contains header files needed to use lxml's C API. %prep %setup -q -n lxml-%{version} -%patch0 -p1 cp %{SOURCE1} . # remove generated files @@ -116,6 +116,6 @@ make %{?_smp_mflags} test3 %files %{python_files doc} %license LICENSES.txt %doc doc/html -%doc lxmldoc-%{version}.pdf +%doc lxmldoc-*.pdf %changelog