libpugixml1-1.9-lp150.2.3.1<>,Il䇺J(^>g^1y  Bhu,IU RBZUUTgZA:p&YiI t;HEq7B~e+H\o*[*d]z\ <.)~Hv p0>@ ? xd  F 3<@ Yj~     8@|(8 9 : >7@FFUGhHpIxX|Y\]^bcde!f$l&u8v@wxyz  ( , 2 tClibpugixml11.9lp150.2.3.1Light-weight C++ XML Processing Librarypugixml is a light-weight C++ XML processing library. It features: - DOM-like interface with rich traversal/modification capabilities - Extremely fast non-validating XML parser which constructs the DOM tree from an XML file/buffer - XPath 1.0 implementation for complex data-driven tree queries - Full Unicode support with Unicode interface variants and automatic encoding conversions The library is extremely portable and easy to integrate and use.\slamb188XopenSUSE Leap 15.0openSUSEMIThttp://bugs.opensuse.orgSystem/Librarieshttp://pugixml.org/linuxx86_648X\q\r72a349fea60024d53fca34335c4e5124a2e53fc65dbdabbb316eb78620cde82clibpugixml.so.1.9rootrootrootrootpugixml-1.9-lp150.2.3.1.src.rpmlibpugixml.so.1()(64bit)libpugixml1libpugixml1(x86-64)@@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1[WZ̧@X@V'~@V@UTE@SSh@Q @antoine.belvire@opensuse.orgbjoern@schramke-online.dejoerg.lorenzen@ki.tng.deidonmez@suse.comidonmez@suse.comtchvatal@suse.comdavejplater@gmail.comasterios.dramis@gmail.comperry.werneck@gmail.comasterios.dramis@gmail.com- Install pc file: * Add pugixml-1.9-install-pc-file.patch (picked from upstream). * Add pugixml-1.9-use-CMAKE_INSTALL_LIBDIR.patch (picked from upstream).- Update to version 1.9 * Specification changes + xml_document::load(const char*) (deprecated in 1.5) now has deprecated attribute; use xml_document::load_string instead + xml_node::select_single_node (deprecated in 1.5) now has deprecated attribute; use xml_node::select_node instead * New features + Add move semantics support for xml_document and improve move semantics support for other objects + CMake build now exports include directories + CMake build with BUILD_SHARED_LIBS=ON now uses dllexport attribute for MSVC * XPath improvements + Rework parser/evaluator to not rely on exceptional control flow; longjmp is no longer used when exceptions are disabled + Improve error messages for certain invalid expressions such as .[1] or (1 + Minor performance improvements * Compatibility improvements + Fix Texas Instruments compiler warnings + Fix compilation issues with limits.h for some versions of gcc + Fix compilation issues with Clang/C2 + Fix implicit fallthrough warnings in gcc 7 + Fix unknown attribute directive warnings in gcc 8 + Fix cray++ compiler errors + Fix unsigned integer overflow errors with -fsanitize=integer + Fix undefined behavior sanitizer issues in compact mode- Update to version 1.8 * Specification changes + When printing empty elements, a space is no longer added before / in format_raw mode. * New features + Added parse_embed_pcdata parsing mode in which PCDATA value is stored in the element node if possible (significantly reducing memory consumption for some documents). + Added auto-detection support for Latin-1 (ISO-8859-1) encoding during parsing. + Added format_no_empty_element_tags formatting flag that outputs start/end tags instead of empty element tags for empty elements. * Performance improvements + Minor memory allocation improvements (yielding up to 1% memory savings in some cases). * Compatibility improvements + Fixed compilation issues for Borland C++ 5.4. + Fixed compilation issues for some distributions of MinGW 3.8. + Fixed various Clang/GCC warnings. + Enabled move semantics support for XPath objects for MSVC 2010 and above.- Update to version 1.7 * New integer parsing/formatting implementation + Functions that convert from and to integers (e.g. as_int/set_value) do not rely on CRT any more. + New implementation is 3-5x faster and is always correct wrt overflow or underflow. This is a behavior change - where previously as_uint() would return UINT_MAX on a value "-1", it now returns 0. * New features + XPath objects (xpath_query, xpath_node_set, xpath_variable_set) are now movable if your compiler supports C++11. Additionally, xpath_variable_set is copyable. + Added format_indent_attributes that makes the resulting XML friendlier to line diff/merge tools. + Added a variant of xml_node::attribute function with a hint that can improve lookup performance. + Custom allocation functions are now allowed (but not required) to throw instead of returning a null pointer. * Bug fixes + Fix Clang 3.7 crashes in out-of-memory cases (C++ DR 1748) + Fix xpath_node_set assignment to provide strong exception guarantee + Fix saving for custom xml_writer implementations that can throw from write() - Add pugixml-config.patch to enable long long support, works better than enabling via build flags.- Manually enable long long support- Version bump to 1.6: * See manual.html for in-depth changelog - Use %cmake macros properly- Update to version 1.5 and prepare for submission to factory See bnc#905649 enable blender cycles. Pugixml needed by OpenImageIO needed by blender for cycles. - Upstream changes: see http://cdn.rawgit.com/zeux/pugixml/v1.5/docs/manual/changes.html- Update to version 1.4: Specification changes: * Documents without element nodes are now rejected with status_no_document_element error, unless parse_fragment option is used New features: * Added XML fragment parsing (parse_fragment flag) * Added PCDATA whitespace trimming (parse_trim_pcdata flag) * Added long long support for xml_attribute and xml_text (as_llong, as_ullong and set_value/set overloads) * Added hexadecimal integer parsing support for as_int/as_uint/as_llong/as_ullong * Added xml_node::append_buffer to improve performance of assembling documents from fragments * xml_named_node_iterator is now bidirectional * Reduced XPath stack consumption during compilation and evaluation (useful for embedded systems) Compatibility improvements: * Improved support for platforms without wchar_t support * Fixed several false positives in clang static analysis * Fixed several compilation warnings for various GCC versions Bug fixes: * Fixed undefined pointer arithmetic in XPath implementation * Fixed non-seekable iostream support for certain stream types, i.e. boost file_source with pipe input * Fixed xpath_query::return_type() for some expressions * Fixed dllexport issues with xml_named_node_iterator * Fixed find_child_by_attribute assertion for attributes with null name/value - Removed fix_install_libdir.patch (not needed anynore).- Small change in "make install" to fix SLES build.- Initial release (version 1.2). - Added a patch (fix_install_libdir.patch) to make the package install the library in the correct libdir (lib or lib64)./sbin/ldconfig/sbin/ldconfiglamb18 15557489791.9-lp150.2.3.11.9-lp150.2.3.1libpugixml.so.1libpugixml.so.1.9/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:10072/openSUSE_Leap_15.0_Update/d3efa9ad44dded0720ef9db7e8a02e25-pugixml.openSUSE_Leap_15.0_Updatedrpmxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=407efad6bfe653d162403a542feb15c7e2cbf06d, strippedPRR R RR RRRRR R RR[}n6Оvutf-8c87a229a29f784bff8bbe415215d0f89e5933f0b647158770346394c8089d993?7zXZ !t/*]]"k%r=dv_yE)d-]0,Foz}\w%eYMɻ Ğ?hs@ޑg9ȷ,KW ̖o,| &.qP7č\!9t%ve{[o^r%5/ӿPPP` ξm<>fv3ejD>)#o1OMvS pړk'Z&gcS.xxPLYJ䗆).R4AT r2#;k)G̗R) {]x=O;ٯv`gTqYZie\WǓl/1Q?c7+_co7P"+ ё[˙C͹c& 6{rARV.#߹'GZ;gXdS]'5~sՒz8_Vgow]ɚ@ײy58.TMAR.9OՎo!Rr2M{E⾎̶-)|nΨ;8췠mղnO ɗ话(`)}`)!J2*}ҀRl,yB瀾lA KZiJA%i )H gHC1?r@2$:NLU 4!ޅE:yA\V]ml $_JmNݐ(9AAĽ(+˻bDY.k^W:2ަh%S}< B!7a iʸf(wvB)Je`3 yIu~w{nϒ a»yZMxJC| BG^j=0C#7" dqδڼ :F.艰TLOa;qR*IUya8.#t sw!Tkf8)8ytR ͡Y{sT$,FkmJSJFҬ|[}P& o([JY=,`:8CYIAx ga+W8#Ο~Ė%@4dB]?x'yq AykCm M}0iEl89ȇa}쇷s"+b.h* m&\Ŕi|/4!OIƶZIvgH>аctȳ,m C$9 6rlmj$8:qY:+rq̛C`b;ev,^򹄭.S뺅Y[؉t0/^%1`eǝG仏*OK e~~76mI@ )EwϽ ҼVG~9nnF[䵿;XB#+uW42Lk6׸V%. *}jnA8t+l7~ۚ) n+nn\=2律$a PNQUFXHGUCDZKw6[fwJ>?SJPZ %%3 =3j\ %vf_ޓl}N.ta;G* qMjԈ(;:K2hA-/]~[Lc[nZ֍.m'[_V@OlhYD0MMa bMp==(fZCD\ =7QP/gmniPP[1&ɒT)pڠڑvԱ`XҶ͙e1 wci퀾#hPeӵC|܁WiB /q#EZfflʹx O"aX@G(:Nx4xpJtq*Cl$׎1#deТT4اۿL 7,!K鲥Hֳ-n['_+[Q[ qɈ#ťjU1H9Թ0 nNo#\LO.j bB#1!w-Y4\hŚmϋbBg[j=*!rAqrF'ݟm &k"Od>J"pe%!dVZh=D+W{F#CֹQэi:e~h;$gr#ej-nT?G\%1/[9yƤO<}pցd,{S j=҆t `YӂTRV_)EzM>9eaB)|SWN^ɆIBH4Iww 1&!~5G 8HNq}7<f(rY{pַb>-2~kO$N q4z jB) +]"2A#ޕ8Kt1V:ZW ۦc֐T_V\)^qcPԺ{М`s xk[ z>Hg'ǧ_j|(JldwQ5TMWb0tYE?<{TYf %u8m|6䎛J5_FMY]s;Y>eQsvι={M߱਋qBQ@܁!fM0:I?ͿWG X{FyS LYRdi'X\3=G@UrH-FLJG^sd€1ӎyy30QM^*q@}>xpq:HQѰ8O-I)7Va %gya߳bP f{>xm+{E 2wMhģWH+*M7.ۓ=^͸xi4#2r y~s;q#Ɖ}/nH,Tzy^xMalZ넆ŝhp\d\҈z#O%ةdUP} t9]Ou)9;܌X*v2Pceҕ<(>F `*?~4ΣKP-/Dž |0mOK+ypS> ~\X̜t*ty"u VlV. 8?7$fm2;$xr zDXH*9Xҹ }G8-E91 *ce؆!=jS- {ՐQ[t~'ޅ?xˏ.$"{TZ?֓ wv^[ O$_ޚduHnWA-ʄ fT9IXL r3E^`^B s > e&CZQ4BctFF$YG+If'/Ͱښuqh`C]â V3 '[dt-t0g.TGs/5(%u<"oǞ0Owئd2rn;ry#gw},GNs`IdJNhJ-gyG"=RUapV[D__#i’1S7wWH@OL;'GiQ4홪})ǘO#^6XWƤ~׷y&qeL7*_v29oI{YQc-(_LUs%GBA+,CtHN'QK%#TK/攣9Q͠[I=”?(yёC8֔/KYmJC%Cm{L&3b7pn樔3ߴ 6iŸdUz#Biw1QQd`hж2e0pEF)@`ʈq $YY˨ ןPQ|dsV.DTj31\Wۃ?ZSm#Bʜz&^CKN-u7ܱ=n,#3kg>խt@ f+‹*-rCWf %韵,ml; T_eR x~S+*{A~qxVuڢ m3E:W559t +SuX*7\iu"iB_1 R`Q ~O0;wt5l @ \r-v;@/U$ YZ