31515762f1
Accepting request 1132279 from home:iznogood:factory
...
- Update to version 2.12.2:
* Regressions:
- parser:
. Fix invalid free in xmlParseBalancedChunkMemoryRecover
. Make CRLF increment line number
- globals: Disable TLS in static Windows builds
- html: Reenable buggy detection of XML declarations
- tree: Fix regression when copying DTDs
* Build fixes
- build: Disable compiler TLS by default
- cmake: Update config.h.cmake.in
- tests: Fix tests --with-valid --without-xinclude
OBS-URL: https://build.opensuse.org/request/show/1132279
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=211
2023-12-12 12:56:26 +00:00
f1c4a97857
Accepting request 1128650 from home:iznogood:branches:devel:libraries:c_c++
...
New stable release.
Also remove whitespaces from .changes
OBS-URL: https://build.opensuse.org/request/show/1128650
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=210
2023-11-27 09:03:56 +00:00
c0aec889a3
Accepting request 1126869 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1126869
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=122
2023-11-20 20:18:33 +00:00
3fc779bce8
Accepting request 1127259 from home:david.anes:branches:devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1127259
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=208
2023-11-17 09:12:32 +00:00
887ff20d64
Accepting request 1126959 from home:david.anes:branches:devel:libraries:c_c++
...
- Bring back a patch that was mistakenly removed in the last update.
* Readded libxml2-make-XPATH_MAX_NODESET_LENGTH-configurable.patch
OBS-URL: https://build.opensuse.org/request/show/1126959
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=207
2023-11-16 15:56:37 +00:00
d82c209a7d
Accepting request 1126893 from home:david.anes:branches:devel:libraries:c_c++
...
- Removed patches (already in upstream):
* libxml2-CVE-2023-39615.patch
* libxml2-CVE-2023-45322.patch
* libxml2-make-XPATH_MAX_NODESET_LENGTH-configurable.patch
* python312.patch
- Update to 2.12.0:
* Major changes:
- Most of the known issues leading to quadratic behavior in the
XML parser were fixed. Internal hash tables were rewritten to
reduce memory consumption.
- Starting with this release, it should be enough to add the
--with-legacy configuration option to provide maximum ABI
compatibility.
- libxml2 will now store global variables in thread-local
storage if supported by the compiler. This avoids allocating
the data lazily which can result in a fatal error condition.
- A new API function xmlCheckThreadLocalStorage was added so the
allocation can be checked earlier if compiler TLS is not
supported.
- To prepare for future improvements, some API functions now
expect or return a const xmlError struct.
- Several cyclic dependencies in public header files were fixed.
- Refactoring of the encoding code has been mostly completed.
Calling xmlSwitchEncoding from client code is now fully
supported, for example to override the encoding for the push
parser.
- When parsing data from memory, libxml2 will now stream data
chunk by chunk instead of copying the whole buffer (possibly
twice with encodings), reducing peak memory consumption
considerably.
OBS-URL: https://build.opensuse.org/request/show/1126893
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=206
2023-11-16 15:42:22 +00:00
4903181851
Accepting request 1126868 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.11.6:
* Regressions:
- threads: Fix --with-thread-alloc
- xinclude: Fix ‘last’ pointer in xmlXIncludeCopyNode
* Bug fixes: parser: Fix potential use-after-free in
xmlParseCharDataInternal
OBS-URL: https://build.opensuse.org/request/show/1126868
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=205
2023-11-16 13:01:40 +00:00
01b0a803ef
Accepting request 1125707 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1125707
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=121
2023-11-15 20:06:31 +00:00
a31cc244fa
Accepting request 1125681 from home:david.anes:branches:devel:libraries:c_c++
...
- Security fix: CVE-2023-45322 (bsc#1216129)
* use-after-free in xmlUnlinkNode() in tree.c
* Added file libxml2-CVE-2023-45322.patch
OBS-URL: https://build.opensuse.org/request/show/1125681
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=203
2023-11-13 17:08:33 +00:00
3cbd245db7
Accepting request 1121463 from devel:libraries:c_c++
...
- Add python312.patch to make it compatible with python 3.12
https://gitlab.gnome.org/GNOME/libxml2/-/merge_requests/226
- Security fix: CVE-2023-39615 (bsc#1214768)
* crafted xml can cause global buffer overflow
* Added file libxml2-CVE-2023-39615.patch
- Update to version 2.11.5:
OBS-URL: https://build.opensuse.org/request/show/1121463
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=120
2023-11-02 19:20:44 +00:00
985d7f09a9
Accepting request 1119767 from home:dgarcia:branches:devel:libraries:c_c++
...
- Add python312.patch to make it compatible with python 3.12
https://gitlab.gnome.org/GNOME/libxml2/-/merge_requests/226
- Use pyproject_wheel and pyproject_install macros instead of
python_build, python_install
- Security fix: CVE-2023-39615 (bsc#1214768)
* crafted xml can cause global buffer overflow
* Added file libxml2-CVE-2023-39615.patch
OBS-URL: https://build.opensuse.org/request/show/1119767
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=201
2023-10-24 07:38:21 +00:00
17a5f37196
Accepting request 1108847 from home:david.anes:branches:openSUSE:Factory
...
- Security fix: CVE-2023-39615 (bsc#1214768)
* crafted xml can cause global buffer overflow
* Added file libxml2-CVE-2023-39615.patch
OBS-URL: https://build.opensuse.org/request/show/1108847
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=119
2023-09-04 11:19:30 +00:00
OBS User buildservice-autocommit
e742d98d05
Updating link to change in openSUSE:Factory/libxml2 revision 119
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=11b27c1353a1b77ade1f37aa6a845c25
2023-09-04 11:19:30 +00:00
ff6d2c2613
Accepting request 1103190 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.11.5:
+ Regressions:
- parser: Make xmlSwitchEncoding always skip the BOM
- autotools: Improve iconv check
+ Bug fixes:
- valid: Fix c1->parent pointer in xmlCopyDocElementContent
- encoding: Always call ucnv_convertEx with flush set to false
+ Portability: autotools: fix Python module file ext for
cygwin/msys2
+ Tests: runtest: Fix compilation without LIBXML_HTML_ENABLED
OBS-URL: https://build.opensuse.org/request/show/1103190
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=200
2023-08-16 13:07:29 +00:00
813cb5bfcb
Accepting request 1087943 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.11.4:
+ Fixes a serious regression: parser: Fix regression when push
parsing UTF-8 sequences.
OBS-URL: https://build.opensuse.org/request/show/1087943
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=199
2023-05-23 08:05:07 +00:00
3a929e78e1
Accepting request 1086546 from home:iznogood:factory
...
- Update to version 2.11.3:
+ xinclude: Fix false positives in inclusion loop detection.
+ autotools: Fix ICU detection.
+ parser: Fix "huge input lookup" error with push parser.
+ xpath: Fix build without LIBXML_XPATH_ENABLED.
+ hash: Fix possible startup crash with old libxslt versions.
+ autoconf: fix iconv library paths.
OBS-URL: https://build.opensuse.org/request/show/1086546
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=198
2023-05-11 15:53:54 +00:00
14ec02b261
Accepting request 1085154 from home:iznogood:factory
...
- Update to version 2.11.2:
+ Fix regressions:
- threads: Fix startup crash with weak symbol hack
- win32: Don’t depend on removed .def file
- schemas: Fix memory leak in xmlSchemaValidateStream
OBS-URL: https://build.opensuse.org/request/show/1085154
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=197
2023-05-08 13:18:07 +00:00
cb59dd3915
Accepting request 1084549 from home:david.anes:branches:devel:libraries:c_c++
...
* See the full changelog at https://discourse.gnome.org/t/libxml2-2-11-0-released/15123
OBS-URL: https://build.opensuse.org/request/show/1084549
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=196
2023-05-04 07:36:20 +00:00
fa86affcb3
* libxml2-python3-unicode-errors.patch
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=195
2023-05-03 16:01:55 +00:00
0b3afb1a8d
Accepting request 1084343 from home:david.anes:branches:devel:libraries:c_c++
...
- Rebased patches:
* libxml2-make-XPATH_MAX_NODESET_LENGTH-configurable.patch
- Update to 2.11.1:
* Fixes build and ABI issues.
- cmake: Fix va_copy detection (Luca Niccoli)
- libxml.m4: Fix quoting
- Link with --undefined-version
- libxml2.syms: Revert removal of version information
- Update to 2.11.0:
* Major changes
- Protection against entity expansion attacks, also known as
"billion laughs" has been greatly improved. Malicious files
should be detected reliably now and false positives should be
reduced. It is possible though that large documents which make
heavy use of entities are rejected now.
- This release finally fixes symbol visibility on UNIX systems.
Internal symbols will now be hidden. While these symbols were
never declared in public headers, it was still possible to
declare them manually. Now this won't work.
- All symbol information has been removed from the ELF version
script to fix link errors with --no-undefined-version. The
version nodes are kept so it should still be possible to run
binaries linked against older versions.
- About 90 memory errors in code paths handling malloc failures
have been fixed. While these issues shouldn't impact security,
this improves robustness under memory pressure.
- The XInclude engine has been reworked to properly support
nested includes.
- Several cases of quadratic behavior in the XML push parser
have been fixed.
OBS-URL: https://build.opensuse.org/request/show/1084343
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=194
2023-05-03 16:01:24 +00:00
2275906758
Accepting request 1082712 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1082712
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=118
2023-04-26 15:24:19 +00:00
30e5741743
Accepting request 1082112 from home:david.anes:branches:devel:libraries:c_c++
...
- Remove unneeded dependency (bsc#1209918).
OBS-URL: https://build.opensuse.org/request/show/1082112
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=192
2023-04-25 10:32:39 +00:00
958080d6c4
Accepting request 1079409 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1079409
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=117
2023-04-21 12:15:35 +00:00
63882702eb
Accepting request 1079408 from home:david.anes:branches:home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.10.4:
+ Security:
- [CVE-2023-29469, bsc#1210412] Hashing of empty dict strings
isn’t deterministic
- [CVE-2023-28484, bsc#1210411] Fix null deref in
xmlSchemaFixupComplexType
- schemas: Fix null-pointer-deref in
xmlSchemaCheckCOSSTDerivedOK
+ Regressions:
- SAX2: Ignore namespaces in HTML documents
- io: Fix “buffer full” error with certain buffer sizes
OBS-URL: https://build.opensuse.org/request/show/1079408
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=190
2023-04-14 09:06:26 +00:00
1c43ab08bd
Accepting request 1063336 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1063336
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=116
2023-02-07 17:47:27 +00:00
5531ecc63c
Accepting request 1062410 from home:dirkmueller:Factory
...
- remove zlib-devel, pkgconfig(zlib) is sufficient
OBS-URL: https://build.opensuse.org/request/show/1062410
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=188
2023-02-06 05:24:41 +00:00
875d592e03
Accepting request 1032567 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1032567
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=115
2022-11-02 11:46:33 +00:00
44772b3ca8
Accepting request 1032566 from home:david.anes:branches:devel:libraries:c_c++
...
- Add W3C conformance tests to the testsuite (bsc#1204585):
* Added file xmlts20080827.tar.gz
OBS-URL: https://build.opensuse.org/request/show/1032566
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=186
2022-10-31 18:19:13 +00:00
e395b6aa14
Accepting request 1014116 from devel:libraries:c_c++
...
- Update to version 2.10.3 (bsc#1204366, CVE-2022-40303, bsc#1204367, CVE-2022-40304):
+ Security:
- [CVE-2022-40304] Fix dict corruption caused by entity
reference cycles
- [CVE-2022-40303] Fix integer overflows with XML_PARSE_HUGE
- Fix overflow check in SAX2.c
+ Build system: cmake: Set SOVERSION
- Rebase patches with quilt.
OBS-URL: https://build.opensuse.org/request/show/1014116
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=114
2022-10-18 10:44:38 +00:00
20854f0f12
- Update to version 2.10.3 (bsc#1204366, CVE-2022-40303, bsc#1204367, CVE-2022-40304):
...
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=184
2022-10-17 13:44:07 +00:00
17ec2d25dc
Accepting request 1010960 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.10.3:
+ Security:
- [CVE-2022-40304] Fix dict corruption caused by entity
reference cycles
- [CVE-2022-40303] Fix integer overflows with XML_PARSE_HUGE
- Fix overflow check in SAX2.c
+ Build system: cmake: Set SOVERSION
- Rebase patches with quilt.
OBS-URL: https://build.opensuse.org/request/show/1010960
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=183
2022-10-17 07:34:17 +00:00
2326435da8
Accepting request 1003583 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1003583
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=113
2022-09-15 20:58:01 +00:00
1e31ce4a12
Accepting request 1003582 from home:david.anes:branches:devel:libraries:c_c++
...
Add missing bug number to latest change in changelog
OBS-URL: https://build.opensuse.org/request/show/1003582
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=181
2022-09-14 16:15:09 +00:00
90590c3370
Accepting request 1000724 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/1000724
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=112
2022-09-09 16:22:11 +00:00
bb1d712d6d
Accepting request 1000723 from home:pmonrealgonzalez:branches:devel:libraries:c_c++
...
- Build for now with --with-legacy to enable APIs that have been
deprecated recently.
OBS-URL: https://build.opensuse.org/request/show/1000723
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=179
2022-09-01 16:11:04 +00:00
85797f999a
Accepting request 1000642 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.10.2:
* Improvements:
+ Remove set-but-unused variable in xmlXPathScanName
+ Silence -Warray-bounds warning
* Build system
+ build: require automake-1.16.3 or later
+ Remove generated files from distribution
* Test suite: Don't create missing.xml when running testapi
- Add configure --with-python=%{__python3} inbefore python build,
as upstream no longer ships pre-grenerated files.
- Use sed to fix env-script-interpreter in documentation example.
- Pass with-ftp to configure, build ftp support.
OBS-URL: https://build.opensuse.org/request/show/1000642
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=178
2022-09-01 10:19:03 +00:00
aaf2adfa32
Accepting request 999935 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/999935
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=111
2022-08-30 12:48:30 +00:00
2f50e21357
Accepting request 999277 from home:iznogood:branches:devel:libraries:c_c++
...
- Update to version 2.10.1:
* Regressions: Fix xmlCtxtReadDoc with encoding
* Bug fixes: Fix HTML parser with threads and --without-legacy
* Build system:
+ Fix build with Python 3.10
+ cmake: Disable version script on macOS
+ Remove Makefile rule to build testapi.c
* Documentation:
+ Switch back to HTML output for API documentation
+ Port doc/examples/index.py to Python 3
+ Fix order of exports in libxml2-api.xml
+ Remove libxml2-refs.xml
OBS-URL: https://build.opensuse.org/request/show/999277
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=176
2022-08-29 11:45:35 +00:00
15bb2353ef
Accepting request 997729 from home:david.anes:branches:devel:libraries:c_c++
...
- Update to 2.10.0:
* Security
+ [CVE-2022-2309] Reset nsNr in xmlCtxtReset
+ Reserve byte for NUL terminator and report errors consistently in xmlBuf and
xmlBuffer
+ Fix missing NUL terminators in xmlBuf and xmlBuffer functions
+ Fix integer overflow in xmlBufferDump()
+ xmlBufAvail() should return length without including a byte for NUL
terminator
+ Fix ownership of xmlNodePtr & xmlAttrPtr fields in xmlSetTreeDoc()
+ Use xmlNewDocText in xmlXIncludeCopyRange
+ Fix use-after-free bugs when calling xmlTextReaderClose() before
xmlFreeTextReader() on post-validating parser
+ Use UPDATE_COMPAT() consistently in buf.c
+ fix: xmlXPathParserContext could be double-delete in OOM case.
* Removals and deprecations
+ Disable XPointer location support by default
+ Remove outdated xml2Conf.sh
+ Deprecate module init and cleanup functions
+ Remove obsolete XML Software Autoupdate (XSA) file
+ Remove DOCBparser
+ Remove obsolete Python test framework
+ Remove broken VxWorks support
+ Remove broken Mac OS 9 support
+ Remove broken bakefile support
+ Remove broken Visual Studio 2010 support
+ Remove broken Windows CE support
+ Deprecate IDREF-related functions in valid.h
+ Deprecate legacy functions
+ Disable legacy support by default
OBS-URL: https://build.opensuse.org/request/show/997729
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=175
2022-08-18 11:47:37 +00:00
6fd2b8e669
Accepting request 985342 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/985342
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=110
2022-06-29 14:00:54 +00:00
74eadea270
Accepting request 984890 from home:mcepl:branches:devel:libraries:c_c++
...
Record fixed security bugs for synchronization with SLE package.
OBS-URL: https://build.opensuse.org/request/show/984890
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=173
2022-06-27 14:31:54 +00:00
537c4df6d1
Accepting request 974482 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/974482
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=109
2022-05-05 21:05:14 +00:00
c528738a30
Accepting request 974481 from home:david.anes:branches:devel:libraries:c_c++
...
- Update to 2.9.14:
* Security:
+ [CVE-2022-29824] Integer overflow in xmlBuf and xmlBuffer
+ Fix potential double-free in xmlXPtrStringRangeFunction
+ Fix memory leak in xmlFindCharEncodingHandler
+ Normalize XPath strings in-place
+ Prevent integer-overflow in htmlSkipBlankChars() and
xmlSkipBlankChars()
+ Fix leak of xmlElementContent
* Bug fixes:
+ Fix parsing of subtracted regex character classes
+ Fix recursion check in xinclude.c
+ Reset last error in xmlCleanupGlobals
+ Fix certain combinations of regex range quantifiers
+ Fix range quantifier on subregex
* Improvements:
+ Fix recovery from invalid HTML start tags
* Build system, portability:
+ Define LFS macros before including system headers
+ Initialize XPath floating-point globals
+ configure: check for icu DEFS
+ configure.ac: produce tar.xz only (GNOME policy)
+ CMakeLists.txt: Fix LIBXML_VERSION_NUMBER
+ Fix build with older Python versions
+ Fix --without-valid build
OBS-URL: https://build.opensuse.org/request/show/974481
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=171
2022-05-02 21:14:54 +00:00
a4c66ef12d
Accepting request 963709 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/963709
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=108
2022-03-23 19:15:42 +00:00
c4d11fc651
Accepting request 963492 from home:dimstar:Factory
...
Resubmit, rebased after branch was broken by update; fix self-cycle causing issues on bootstrap; puthon yupo fixed
OBS-URL: https://build.opensuse.org/request/show/963492
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=169
2022-03-21 14:09:59 +00:00
2aa915077a
Accepting request 960606 from home:luc14n0:branches:devel:libraries:c_c++
...
Update to version 2.9.13.
OBS-URL: https://build.opensuse.org/request/show/960606
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=168
2022-03-20 19:44:40 +00:00
53004c410b
Accepting request 927311 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/927311
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=107
2021-10-30 21:13:14 +00:00
ec267bda96
Accepting request 927304 from home:mcepl:branches:devel:libraries:c_c++
...
- Rewrite package to the single-spec %python_subpackage_only style and
eliminate unnecessary multibuild.
OBS-URL: https://build.opensuse.org/request/show/927304
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=167
2021-10-25 13:06:46 +00:00
19b958c54f
Accepting request 896773 from devel:libraries:c_c++
...
OBS-URL: https://build.opensuse.org/request/show/896773
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxml2?expand=0&rev=106
2021-06-04 20:42:27 +00:00
2ab8b55b79
Accepting request 896721 from home:pmonrealgonzalez:branches:devel:libraries:c_c++
...
- Fix python-lxml regression with libxml2 2.9.12:
* Work around lxml API abuse:
gitlab.gnome.org/GNOME/libxml2/issues/255
- Add upstream patches:
* libxml2-fix-lxml-corrupted-subtree-structures.patch
* libxml2-fix-regression-in-xmlNodeDumpOutputInternal.patch
OBS-URL: https://build.opensuse.org/request/show/896721
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=165
2021-06-01 20:33:10 +00:00