libebml5-1.4.5-bp157.2.3.1<>,5|i$nI%z z8 5nȩgC&xL, &(ʢqtRS<&Oa:,pxcPo_Bn2g%NZFD "OqFQmI: Tթ-/|mׇWzט!0JfHk{)$[ζjʡY,g+|LXٲuJv+$&SC2윝^?M>R ,kԛ`-dp݂V)ѯfi[Q5`ș컠%ľ:"6fR-҉+Bp@-6 Tj|ېr]1P@#P?#@d   9 *DJT\ ` d l  8|R({89:>@FG H I X Y ,\ T] \^ zb c!/d!e!f!l!u!v!w"x"y" z""""#<Clibebml51.4.5bp157.2.3.1Library to parse EBML fileslibebml is a C++ library to parse EBML files. See the EBML RFC at http://www.matroska.org/technical/specs/rfc/index.html .i$nobs-power8-02SUSE Linux Enterprise 15openSUSELGPL-2.1-or-laterhttp://bugs.opensuse.orgSystem/Librarieshttps://www.matroska.org/linuxppc64lei$ni$n12e7b087116d13d89595670337a442f25ff7b0bc24aeae78e449369d4e895a59libebml.so.5.0.0rootrootrootrootlibebml-1.4.5-bp157.2.3.1.src.rpmlibebml.so.5()(64bit)libebml5libebml5(ppc-64)@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.8)(64bit)libstdc++.so.6(CXXABI_1.3.9)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)libstdc++.so.6(GLIBCXX_3.4.9)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3ec@cAf@c8+`T@`4@_T^@]@]%@\[^[^Y@W@V(UCjTD@T@Dirk Müller Luigi Baldoni Dirk Müller Christophe Giboudeaux Dirk Müller aloisio@gmx.comLuigi Baldoni Ferdinand Thiessen Ferdinand Thiessen Ferdinand Thiessen rpm@fthiessen.derpm@fthiessen.derpm@fthiessen.derpm@fthiessen.derpm@fthiessen.dejengelh@inai.dedimstar@opensuse.orgjengelh@inai.de- update to 1.4.5 (bsc#1218432, CVE-2023-52339): * Fix invalid memory access (reading beyond allocated memory) due to missing integer overflow check.- Update to version 1.4.4 * Fix ABI compatibility: unfortunately release 1.4.3 broke ABI compatibility. This release restores the compatibility with release 1.4.2. Please use it instead of release 1.4.3. In other words: 1.4.2 & 1.4.4 are compatible, while 1.4.3 is compatible with neither 1.4.2 nor 1.4.4.- update to 1.4.3: * A C++14 compliant C++ compiler is now required. * Fix compilation with g++ 11. Fixes #80. * Remove Coremake project files * Updated the bundled utf8cpp to v3.2.1. * Fixed several problems in `EbmlBinary:` potential segfault by writing to a `nullptr`, potential memory leak under certain error conditions. * Fixed problems with the generated `pkg-config` files if any of the installation paths are absolute. - drop 0001-include-appropriate-header-files-for-std-numeric_lim.patch (upstream)- Add patch to fix build with GCC 11 (boo#1183715) * 0001-include-appropriate-header-files-for-std-numeric_lim.patch- update to 1.4.2: * Fixed several heap overflow bugs in the `ReadData` functions of various data type classes. This fixes CVE-2021-3405.- Update to version 1.4.1 * Fixed a case EbmlMaster::Read where the element returned via UpperEltFound and FountElt points to a just-deleted element, causing callers to think the memory returned is valid, potentially leading to use-after-free/double-free errors. This can happen if the specific element's Read function throws an exception when encountering certain invalid data constellations.- Update to version 1.4.0 * Due to breaking ABI the soname version has been bumped to 5.0.0. * Default symbol visibility is now "hidden", reducing binary size. * Converted some things pointed out by cppcheck & clang-tidy to C++11. * Fixed a lot of issues pointed out by clang-tidy. * Added a function "ForceNoDefault" in the "EbmlElement" class. * Added a function "OverwriteData" in the "EbmlElement" class to complement the existing "OverwriteHead" function. * A C++11 compliant compiler is now required. Several of its features are now used in the source. * EbmlElement::FindNextElement: fixed a buffer overflow on the stack by one byte when the first byte read had its upper four bits unset. * EbmlCrc32: added a explicit assignment operator with default implementation as an explicit copy constructor exists (implicit assignment operators are deprecated in such cases). - Spec cleanup- Update to version 1.3.10: * When reading binary elements with a size of 0, the element was skipped by libebml instead of returned to the calling function.- Update to version 1.3.9: * Some build system related changes- Update to version 1.3.7: * Fixed the handling of Unicode codepoints > U+FFFF - Dropped fix-EbmlSInteger-limits.patch, fixed upstream.- Added fix-EbmlSInteger-limits.patch from upstream. * Fixes build with openSUSE <= 42.3- Update to 1.3.6: * Fixed undefined behavior when reading signed integers with negative values from files. * Fixed a small memory leak when reading an element runs into an I/O exception (e.g. due to having reached the end of the file). * Fixed the EbmlMaster::GetDataStart() function returning wrong values for elements with an infinite/unknown size. * Fixed finding the next element ID when garbage data is encountered during the scan for the ID. * Fixed several potential situations where reading child element data could exceed the parent element's size.- Update to 1.3.5 * The function EbmlMaster::CheckMandatory() will now only return false if a mandatory element is missing for which there's no default value in the specifications. This means that callers such as EbmlMaster::UpdateSize() and by extension EbmlMaster::Render() will not insist on all mandatory elements being present anymore, but only those for which there's no default value. * Added a template function `FindNextChild`. * Fix reading and EBML element even though the ID was not found within the allowed reading limit. * Fixed an instance of undefined behavior in EbmlElement::GetSemantic() due to binding a dereferenced null pointer to a reference.- Update to new upstream release 1.3.4 * Some minor changes required for clang * Some minor changes for C99 support * Required for mkvtoolnix >= 9.3.0- Update to new upstream release 1.3.3 (security fixes!): * EbmlUnicodeString::UpdateFromUTF8(): Fixed an invalid memory access. When reading from a UTF-8 string in which the length indicated by a UTF-8 character's first byte exceeds the string's actual number of bytes the parser would access beyond the end of the string resulting in a heap information leak. Fixes the issue reported as Cisco TALOS-CAN-0036. * EbmlElement::ReadCodedSizeValue(): Fixed an invalid memory access. When reading a EBML variable length integer value a read access beyond the end of the available buffer was possible if fewer bytes were available than indicated by the first byte resulting in a heap information leak. * EbmlMaster::Read(): When the parser encountered a deeply nested element with an infinite size then a following element of an upper level was not propagated correctly. Instead the element with the infinite size was added into the EBML element tree a second time resulting in memory access after freeing it and multiple attempts to free the same memory address during destruction. Fixes the issue reported as Cisco TALOS-CAN-0037. * EbmlElement::FindNextElement(): Handle EOF when reading the element size properly.- Update package descriptions a bit- Add back BuildRoot: the rpm version of SLE11 still requires this and libebml is linked to 3rd party Build Servers, where building for SLE11 is still enabled.- Update to new upstream release 1.3.1 * EbmlMaster: Fixed read() trying to calculate the end position of elements with an unknown size. This avoids endless loops and assertions in certain cases. * EbmlElement::Render(): does not catch exceptions anymore. Instead, exceptions generated from the IOCallback class (e.g. if a write failed) are propagated to the caller. - Drop libebml-1.3.0-6efcb74d1e.patch (no longer relevant)/sbin/ldconfig/sbin/ldconfigobs-power8-02 17639952721.4.5-bp157.2.3.11.4.5-bp157.2.3.1libebml.so.5libebml.so.5.0.0/usr/lib64/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:19231/openSUSE_Backports_SLE-15-SP7_Update/55e787a1ed0743037032828f371e6e44-libebml.openSUSE_Backports_SLE-15-SP7_Updatedrpmxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=229169c78ea383dec1a59ea7b6392f1a96b12bca, stripped PRRRR R R RR RRRS[{|URq5utf-80422a9f18722c08a8eb65a900fdb49d666fe74bdd47f7d0c9343f85c57e8ce45?7zXZ !t/ ]"k%nd?ϸe/Gr*M*!ԛh{sV0C9U x́s|Sub A2?"IM`M }^ʏZ36"Nb۪y#uфײ0wzQaϤ$=U' ED*;BJ}%#Ftھ4H"]3ĺ#z!nEEr6$x!%)j 7/rWuuAbH\YL[&ĩQ^F5SfL:-0M6]§LZ aJW:9e f\L7c)ptHfMM;QPb_mJ%ċPqz\&e xe5 6C2"cx7=\9F)fpz<@WH3W=j8>[vJ8WNlО@'mp-F?hϠ}!Wka=@p|!oFbOf>ADOqV hCāKNvΈ8;Q*FIGf hP c.$o_16-]1o;Wn6m1_jsh!5m+qB+-&)!YL52}~ lPB v[6'Ķw8F_%"<v ޿)g^xk5llH(Bm_S+:;[a<%:.3gѷs] fL]er2EK\BCzp+w$JyvKN2cs|Oy4`NɃޖDrn2:IđC8v7 :vn˞,ο+jE=JP 7;":hAlChGt5(ZB"8L1gE^SiH»fIA&pGqv^)A $#{K΄\7/p lHu c”NF2MR'R &=0tRd\z좵X.fWG~ȍM?!-іX L^\QZa:XRpnвIH n'9)"dQ~`){2͛P`uñacPwc{h"b#E81lЎkTi^ٔ{g mvZbV60F[2z7p2`Kk/;ŹϢ LȏL3`/MHwXEn28E1Ƹ4:xPf<{X*i+uMaҼpk`Q|\ws8 ;𓆆ĤRycD6 !ZUS>STTz }B+It顨j"{nf(#l)s^re'*ȺAPUsJ7fAr"E=e!Kp1)G ,}/HgT\ow=z,q䙁v1v|`!<^oqx`0;;nP9\<ăަqz*B&}v&w86}$I}{ $n"1>8h)OKֹӖ1oM~56DĽSs3UKȤx \{ϝ03g z!% #19l&,P.-۵r. j  +[JCkֆg}hkܾ;Vn|LNi*Ls։val^/uﺂ*u` @jXc /GB6gjA)^t ZIX%d4,^K=PUUhNQDHP.XjbB-Ǘ=Ю Wqe Ʋ,bN >F56d>M;)9PfWI,BG4gHSo8;ƛQH/"tA|69e0ɼRs@dr3%NܗkFd`>.{1EEM%b1YpZ.Ë1Ep\-Y~0pLʾĎ feM ?먯?(S:.GoNԂ R1Pjؔ }$wa PoR(Dץ[fsV}c mXEV7䲕#c~Ue(; ogJJ(U{ⓙ`Sh=)sךK#j,1 @S0=[(ꋁoXO'2!u?c xv__BMxAm۞vZ[`.bE7;#ekP. 4jiKfOFZK>?7B̤jdԜ^0M5\e&5EFzt8V3W q0ڽ hL1|m./UXlG tN 4[ܦ?Q˞* o