import libxml2-2.9.13-1.el9
This commit is contained in:
parent
9a6e519745
commit
2f05d70cfb
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/gpgkey-DB46681BB91ADCEA170FA2D415588B26596BEA5D.gpg
|
SOURCES/libxml2-2.9.13.tar.xz
|
||||||
SOURCES/libxml2-2.9.12.tar.gz
|
|
||||||
|
@ -1,2 +1 @@
|
|||||||
c8dafee380d47ecc0387a231e603fa9e5541ed88 SOURCES/gpgkey-DB46681BB91ADCEA170FA2D415588B26596BEA5D.gpg
|
7dced00d88181d559ee76c6d8ef4571eb1bd0b26 SOURCES/libxml2-2.9.13.tar.xz
|
||||||
339fe5bb2a7d0c13f068c26d8f7cd194c13f9a2a SOURCES/libxml2-2.9.12.tar.gz
|
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
From 13ad8736d294536da4cbcd70a96b0a2fbf47070c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nick Wellnhofer <wellnhofer@aevum.de>
|
|
||||||
Date: Tue, 25 May 2021 10:55:25 +0200
|
|
||||||
Subject: [PATCH] Fix regression in xmlNodeDumpOutputInternal
|
|
||||||
|
|
||||||
Commit 85b1792e could cause additional whitespace if xmlNodeDump was
|
|
||||||
called with a non-zero starting level.
|
|
||||||
---
|
|
||||||
xmlsave.c | 14 +++++++-------
|
|
||||||
1 file changed, 7 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/xmlsave.c b/xmlsave.c
|
|
||||||
index aedbd5e7..489505f4 100644
|
|
||||||
--- a/xmlsave.c
|
|
||||||
+++ b/xmlsave.c
|
|
||||||
@@ -890,6 +890,13 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
break;
|
|
||||||
|
|
||||||
case XML_ELEMENT_NODE:
|
|
||||||
+ if ((cur != root) && (ctxt->format == 1) &&
|
|
||||||
+ (xmlIndentTreeOutput))
|
|
||||||
+ xmlOutputBufferWrite(buf, ctxt->indent_size *
|
|
||||||
+ (ctxt->level > ctxt->indent_nr ?
|
|
||||||
+ ctxt->indent_nr : ctxt->level),
|
|
||||||
+ ctxt->indent);
|
|
||||||
+
|
|
||||||
/*
|
|
||||||
* Some users like lxml are known to pass nodes with a corrupted
|
|
||||||
* tree structure. Fall back to a recursive call to handle this
|
|
||||||
@@ -900,13 +907,6 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
- if ((ctxt->level > 0) && (ctxt->format == 1) &&
|
|
||||||
- (xmlIndentTreeOutput))
|
|
||||||
- xmlOutputBufferWrite(buf, ctxt->indent_size *
|
|
||||||
- (ctxt->level > ctxt->indent_nr ?
|
|
||||||
- ctxt->indent_nr : ctxt->level),
|
|
||||||
- ctxt->indent);
|
|
||||||
-
|
|
||||||
xmlOutputBufferWrite(buf, 1, "<");
|
|
||||||
if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
|
|
||||||
xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
@ -1,211 +0,0 @@
|
|||||||
From 85b1792e37b131e7a51af98a37f92472e8de5f3f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nick Wellnhofer <wellnhofer@aevum.de>
|
|
||||||
Date: Tue, 18 May 2021 20:08:28 +0200
|
|
||||||
Subject: [PATCH] Work around lxml API abuse
|
|
||||||
|
|
||||||
Make xmlNodeDumpOutput and htmlNodeDumpFormatOutput work with corrupted
|
|
||||||
parent pointers. This used to work with the old recursive code but the
|
|
||||||
non-recursive rewrite required parent pointers to be set correctly.
|
|
||||||
|
|
||||||
Unfortunately, lxml relies on the old behavior and passes subtrees with
|
|
||||||
a corrupted structure. Fall back to a recursive function call if an
|
|
||||||
invalid parent pointer is detected.
|
|
||||||
|
|
||||||
Fixes #255.
|
|
||||||
---
|
|
||||||
HTMLtree.c | 46 ++++++++++++++++++++++++++++------------------
|
|
||||||
xmlsave.c | 31 +++++++++++++++++++++----------
|
|
||||||
2 files changed, 49 insertions(+), 28 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/HTMLtree.c b/HTMLtree.c
|
|
||||||
index 24434d45..bdd639c7 100644
|
|
||||||
--- a/HTMLtree.c
|
|
||||||
+++ b/HTMLtree.c
|
|
||||||
@@ -744,7 +744,7 @@ void
|
|
||||||
htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
xmlNodePtr cur, const char *encoding ATTRIBUTE_UNUSED,
|
|
||||||
int format) {
|
|
||||||
- xmlNodePtr root;
|
|
||||||
+ xmlNodePtr root, parent;
|
|
||||||
xmlAttrPtr attr;
|
|
||||||
const htmlElemDesc * info;
|
|
||||||
|
|
||||||
@@ -755,6 +755,7 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
}
|
|
||||||
|
|
||||||
root = cur;
|
|
||||||
+ parent = cur->parent;
|
|
||||||
while (1) {
|
|
||||||
switch (cur->type) {
|
|
||||||
case XML_HTML_DOCUMENT_NODE:
|
|
||||||
@@ -762,13 +763,25 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
if (((xmlDocPtr) cur)->intSubset != NULL) {
|
|
||||||
htmlDtdDumpOutput(buf, (xmlDocPtr) cur, NULL);
|
|
||||||
}
|
|
||||||
- if (cur->children != NULL) {
|
|
||||||
+ /* Always validate cur->parent when descending. */
|
|
||||||
+ if ((cur->parent == parent) && (cur->children != NULL)) {
|
|
||||||
+ parent = cur;
|
|
||||||
cur = cur->children;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case XML_ELEMENT_NODE:
|
|
||||||
+ /*
|
|
||||||
+ * Some users like lxml are known to pass nodes with a corrupted
|
|
||||||
+ * tree structure. Fall back to a recursive call to handle this
|
|
||||||
+ * case.
|
|
||||||
+ */
|
|
||||||
+ if ((cur->parent != parent) && (cur->children != NULL)) {
|
|
||||||
+ htmlNodeDumpFormatOutput(buf, doc, cur, encoding, format);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
/*
|
|
||||||
* Get specific HTML info for that node.
|
|
||||||
*/
|
|
||||||
@@ -817,6 +830,7 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
(cur->name != NULL) &&
|
|
||||||
(cur->name[0] != 'p')) /* p, pre, param */
|
|
||||||
xmlOutputBufferWriteString(buf, "\n");
|
|
||||||
+ parent = cur;
|
|
||||||
cur = cur->children;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
@@ -825,9 +839,9 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
(info != NULL) && (!info->isinline)) {
|
|
||||||
if ((cur->next->type != HTML_TEXT_NODE) &&
|
|
||||||
(cur->next->type != HTML_ENTITY_REF_NODE) &&
|
|
||||||
- (cur->parent != NULL) &&
|
|
||||||
- (cur->parent->name != NULL) &&
|
|
||||||
- (cur->parent->name[0] != 'p')) /* p, pre, param */
|
|
||||||
+ (parent != NULL) &&
|
|
||||||
+ (parent->name != NULL) &&
|
|
||||||
+ (parent->name[0] != 'p')) /* p, pre, param */
|
|
||||||
xmlOutputBufferWriteString(buf, "\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -842,9 +856,9 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
break;
|
|
||||||
if (((cur->name == (const xmlChar *)xmlStringText) ||
|
|
||||||
(cur->name != (const xmlChar *)xmlStringTextNoenc)) &&
|
|
||||||
- ((cur->parent == NULL) ||
|
|
||||||
- ((xmlStrcasecmp(cur->parent->name, BAD_CAST "script")) &&
|
|
||||||
- (xmlStrcasecmp(cur->parent->name, BAD_CAST "style"))))) {
|
|
||||||
+ ((parent == NULL) ||
|
|
||||||
+ ((xmlStrcasecmp(parent->name, BAD_CAST "script")) &&
|
|
||||||
+ (xmlStrcasecmp(parent->name, BAD_CAST "style"))))) {
|
|
||||||
xmlChar *buffer;
|
|
||||||
|
|
||||||
buffer = xmlEncodeEntitiesReentrant(doc, cur->content);
|
|
||||||
@@ -902,13 +916,9 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
- /*
|
|
||||||
- * The parent should never be NULL here but we want to handle
|
|
||||||
- * corrupted documents gracefully.
|
|
||||||
- */
|
|
||||||
- if (cur->parent == NULL)
|
|
||||||
- return;
|
|
||||||
- cur = cur->parent;
|
|
||||||
+ cur = parent;
|
|
||||||
+ /* cur->parent was validated when descending. */
|
|
||||||
+ parent = cur->parent;
|
|
||||||
|
|
||||||
if ((cur->type == XML_HTML_DOCUMENT_NODE) ||
|
|
||||||
(cur->type == XML_DOCUMENT_NODE)) {
|
|
||||||
@@ -939,9 +949,9 @@ htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|
||||||
(cur->next != NULL)) {
|
|
||||||
if ((cur->next->type != HTML_TEXT_NODE) &&
|
|
||||||
(cur->next->type != HTML_ENTITY_REF_NODE) &&
|
|
||||||
- (cur->parent != NULL) &&
|
|
||||||
- (cur->parent->name != NULL) &&
|
|
||||||
- (cur->parent->name[0] != 'p')) /* p, pre, param */
|
|
||||||
+ (parent != NULL) &&
|
|
||||||
+ (parent->name != NULL) &&
|
|
||||||
+ (parent->name[0] != 'p')) /* p, pre, param */
|
|
||||||
xmlOutputBufferWriteString(buf, "\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
diff --git a/xmlsave.c b/xmlsave.c
|
|
||||||
index 61a40459..aedbd5e7 100644
|
|
||||||
--- a/xmlsave.c
|
|
||||||
+++ b/xmlsave.c
|
|
||||||
@@ -847,7 +847,7 @@ htmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
static void
|
|
||||||
xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
int format = ctxt->format;
|
|
||||||
- xmlNodePtr tmp, root, unformattedNode = NULL;
|
|
||||||
+ xmlNodePtr tmp, root, unformattedNode = NULL, parent;
|
|
||||||
xmlAttrPtr attr;
|
|
||||||
xmlChar *start, *end;
|
|
||||||
xmlOutputBufferPtr buf;
|
|
||||||
@@ -856,6 +856,7 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
buf = ctxt->buf;
|
|
||||||
|
|
||||||
root = cur;
|
|
||||||
+ parent = cur->parent;
|
|
||||||
while (1) {
|
|
||||||
switch (cur->type) {
|
|
||||||
case XML_DOCUMENT_NODE:
|
|
||||||
@@ -868,7 +869,9 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
break;
|
|
||||||
|
|
||||||
case XML_DOCUMENT_FRAG_NODE:
|
|
||||||
- if (cur->children != NULL) {
|
|
||||||
+ /* Always validate cur->parent when descending. */
|
|
||||||
+ if ((cur->parent == parent) && (cur->children != NULL)) {
|
|
||||||
+ parent = cur;
|
|
||||||
cur = cur->children;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
@@ -887,7 +890,18 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
break;
|
|
||||||
|
|
||||||
case XML_ELEMENT_NODE:
|
|
||||||
- if ((cur != root) && (ctxt->format == 1) && (xmlIndentTreeOutput))
|
|
||||||
+ /*
|
|
||||||
+ * Some users like lxml are known to pass nodes with a corrupted
|
|
||||||
+ * tree structure. Fall back to a recursive call to handle this
|
|
||||||
+ * case.
|
|
||||||
+ */
|
|
||||||
+ if ((cur->parent != parent) && (cur->children != NULL)) {
|
|
||||||
+ xmlNodeDumpOutputInternal(ctxt, cur);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if ((ctxt->level > 0) && (ctxt->format == 1) &&
|
|
||||||
+ (xmlIndentTreeOutput))
|
|
||||||
xmlOutputBufferWrite(buf, ctxt->indent_size *
|
|
||||||
(ctxt->level > ctxt->indent_nr ?
|
|
||||||
ctxt->indent_nr : ctxt->level),
|
|
||||||
@@ -942,6 +956,7 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
xmlOutputBufferWrite(buf, 1, ">");
|
|
||||||
if (ctxt->format == 1) xmlOutputBufferWrite(buf, 1, "\n");
|
|
||||||
if (ctxt->level >= 0) ctxt->level++;
|
|
||||||
+ parent = cur;
|
|
||||||
cur = cur->children;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
@@ -1058,13 +1073,9 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
- /*
|
|
||||||
- * The parent should never be NULL here but we want to handle
|
|
||||||
- * corrupted documents gracefully.
|
|
||||||
- */
|
|
||||||
- if (cur->parent == NULL)
|
|
||||||
- return;
|
|
||||||
- cur = cur->parent;
|
|
||||||
+ cur = parent;
|
|
||||||
+ /* cur->parent was validated when descending. */
|
|
||||||
+ parent = cur->parent;
|
|
||||||
|
|
||||||
if (cur->type == XML_ELEMENT_NODE) {
|
|
||||||
if (ctxt->level > 0) ctxt->level--;
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQEzBAABCAAdFiEE20ZoG7ka3OoXD6LUFViLJllr6l0FAmCddwQACgkQFViLJllr
|
|
||||||
6l11LQgAioRTdfmcC+uK/7+6HPtF/3c5zkX6j8VGYuvFBwZ0jayqMRBAl++fcpjE
|
|
||||||
JUU/JKebSZ/KCYjzyeOWK/i3Gq77iqm3UbZFB85rqu4a5P3gmj/4STWVyAx0KU3z
|
|
||||||
G3jKqDhJOt7c0acXb5lh2DngfDa1dn/VGcQcIXsqplNxNr4ET7MnSJjZ3nlxYfW2
|
|
||||||
E5vWBdPCMUeXDBl6MjYvw9XnGGBLUAaEJWoFToG6jKmVf4GAd9nza20jj5dtbcJq
|
|
||||||
QEOaSDKDr+f9h2NS8haOhJ9vOpy52PdeGzaFlbRkXarGXuAr8kITgATVs8FAqcgv
|
|
||||||
MoVhmrO5r2hJf0dCM9fZoYqzpMfmNA==
|
|
||||||
=KfJ9
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@ -1,27 +1,18 @@
|
|||||||
Name: libxml2
|
Name: libxml2
|
||||||
Version: 2.9.12
|
Version: 2.9.13
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Library providing XML and HTML support
|
Summary: Library providing XML and HTML support
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://xmlsoft.org/
|
URL: http://xmlsoft.org/
|
||||||
Source0: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz
|
Source0: https://download.gnome.org/sources/%{name}/2.9/%{name}-%{version}.tar.xz
|
||||||
Source1: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz.asc
|
|
||||||
# gpg --keyserver keys.gnupg.net --recv-keys DB46681BB91ADCEA170FA2D415588B26596BEA5D
|
|
||||||
# gpg2 --export --export-options export-minimal DB46681BB91ADCEA170FA2D415588B26596BEA5D > gpgkey-DB46681BB91ADCEA170FA2D415588B26596BEA5D.gpg
|
|
||||||
Source2: gpgkey-DB46681BB91ADCEA170FA2D415588B26596BEA5D.gpg
|
|
||||||
Patch0: libxml2-multilib.patch
|
Patch0: libxml2-multilib.patch
|
||||||
# Patch from openSUSE.
|
# Patch from openSUSE.
|
||||||
# See: https://bugzilla.gnome.org/show_bug.cgi?id=789714
|
# See: https://bugzilla.gnome.org/show_bug.cgi?id=789714
|
||||||
Patch1: libxml2-2.9.8-python3-unicode-errors.patch
|
Patch1: libxml2-2.9.8-python3-unicode-errors.patch
|
||||||
# https://gitlab.gnome.org/GNOME/libxml2/-/issues/255
|
|
||||||
Patch2: libxml2-2.9.12-fix-lxml-corrupted-tree.patch
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1969892
|
|
||||||
Patch3: libxml2-2.9.12-fix-formatting-regression.patch
|
|
||||||
|
|
||||||
BuildRequires: cmake-rpm-macros
|
BuildRequires: cmake-rpm-macros
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gnupg2
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: pkgconfig(zlib)
|
BuildRequires: pkgconfig(zlib)
|
||||||
BuildRequires: pkgconfig(liblzma)
|
BuildRequires: pkgconfig(liblzma)
|
||||||
@ -80,7 +71,6 @@ this includes parsing and validation even with complex DTDs, either
|
|||||||
at parse time or later once the document has been modified.
|
at parse time or later once the document has been modified.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
find doc -type f -executable -print -exec chmod 0644 {} ';'
|
find doc -type f -executable -print -exec chmod 0644 {} ';'
|
||||||
|
|
||||||
@ -110,7 +100,7 @@ gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%license Copyright
|
%license Copyright
|
||||||
%doc AUTHORS NEWS README TODO
|
%doc NEWS README.md TODO
|
||||||
%{_libdir}/libxml2.so.2*
|
%{_libdir}/libxml2.so.2*
|
||||||
%{_mandir}/man3/libxml.3*
|
%{_mandir}/man3/libxml.3*
|
||||||
%{_bindir}/xmllint
|
%{_bindir}/xmllint
|
||||||
@ -148,6 +138,9 @@ gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
|
|||||||
%{python3_sitearch}/libxml2mod.so
|
%{python3_sitearch}/libxml2mod.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 24 2022 David King <amigadave@amigadave.com> - 2.9.13-1
|
||||||
|
- Update to 2.9.13 (#2057665)
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.12-4
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.12-4
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
Related: rhbz#1991688
|
Related: rhbz#1991688
|
||||||
|
Loading…
Reference in New Issue
Block a user