libfmt6-64bit-6.2.1-bp152.2.3.1<>,\_1Y!M@eee}L/vlz#VUM1s]k@Sjazb"6E˲> :Bh#ڊt2YD@^Z VrR.=E~#{H Ys%U Ok)FUn3C. o1aR]aT=_+^ڂ"N.}ĩ!2*JܛF-j4tQthlpZ&"@Il^R/{n%#V ->>,0?, d " ?x|     ( j |<(8(9`:>(G)H)I)X)Y)(\)P])X^)tb)c*&d*e*f*l*u*v*w+x+y+ +++,Clibfmt6-64bit6.2.1bp152.2.3.1A formatting library for C++Shared library for fmt, a formatting library for C++._1Yobs-arm-1hSUSE Linux Enterprise 15openSUSEMIThttp://bugs.opensuse.orgUnspecifiedhttp://fmtlib.net/linuxaarch64_ilp32/sbin/ldconfigh_1Y_1Y2abf011ae545a74209749bbe3fa469c0748df66ea8ee8dc629befaf55adce8cblibfmt.so.6.2.1rootrootrootrootfmt-6.2.1-bp152.2.3.1.src.rpmlibfmt.so.6()(64bit)libfmt6-64bitlibfmt6-64bit(aarch-64)@@@@@@@@@@@    /bin/shld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libgcc_s.so.1(GCC_4.5.0)(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^^@^^]@]@]]@]@\\9\ @\ @[vLuigi Baldoni Luigi Baldoni Hans-Peter Jansen Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni olaf@aepfle.deFerdinand Thiessen Jan Engelhardt Luigi Baldoni munix9@googlemail.com- Add fmt-6.2.1-fix_pkgconfig_paths.patch (fix for boo#1173270)- Update to version 6.2.1 * Fixed ostream support in ``sprintf`` (`#1631 `_). * Fixed type detection when using implicit conversion to ``string_view`` and ostream ``operator<<`` inconsistently (`#1662 `_). - Drop 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch (no longer necessary) - Spec cleanup- Apply 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch to fix kodi compilation and probably others: https://github.com/fmtlib/fmt/issues/1620- Update to version 6.2.0 * Improved error reporting when trying to format an object of a non-formattable type: * Reduced library size by ~10%. * Always print decimal point if # is specified (#1476, #1498): * Implemented the 'L' specifier for locale-specific numeric formatting to improve compatibility with std::format. The 'n' specifier is now deprecated and will be removed in the next major release. * Moved OS-specific APIs such as windows_error from fmt/format.h to fmt/os.h. You can define FMT_DEPRECATED_INCLUDE_OS to automatically include fmt/os.h from fmt/format.h for compatibility but this will be disabled in the next major release. * Added precision overflow detection in floating-point formatting. * Implemented detection of invalid use of fmt::arg. * Used type_identity to block unnecessary template argument deduction. * Improved UTF-8 handling (#1109): * Added experimental dynamic argument storage (#1170, #1584): * Made fmt::join accept initializer_list (#1591). * Fixed handling of empty tuples (#1588). * Fixed handling of output iterators in format_to_n (#1506). * Fixed formatting of std::chrono::duration types to wide output (#1533). * Added const begin and end overload to buffers (#1553). * Added the ability to disable floating-point formatting via FMT_USE_FLOAT, FMT_USE_DOUBLE and FMT_USE_LONG_DOUBLE macros for extremely memory-constrained embedded system (#1590). * Made FMT_STRING work with constexpr string_view (#1589). * Implemented a minor optimization in the format string parser (#1560). * Improved attribute detection (#1469, #1475, #1576). * Improved documentation (#1481, #1523). * Fixed symbol visibility on Linux when compiling with - fvisibility=hidden (#1535). * Implemented various build configuration fixes and improvements (#1264, #1460, #1534, #1536, #1545, #1546, #1566, [#1582], #1597, #1598). * Fixed various warnings and compilation issues - Dropped Group tag- Update to version 6.1.2 * Fixed ABI compatibility with libfmt.so.6.0.0 (#1471). * Fixed handling types convertible to std::string_view (#1451). Thanks @denizevrenci (Deniz Evrenci). * Made CUDA test an opt-in enabled via the FMT_CUDA_TEST CMake option. * Fixed sign conversion warnings (#1440). Thanks @0x8000-0000 (Florin Iucha).- Update to version 6.1.1 * Added a missing decimal point in exponent notation with trailing zeros. * Removed deprecated format_arg_store::TYPES.- Update to version 6.1.0 * {fmt} now formats IEEE 754 ``float`` and ``double`` using the shortest decimal representation with correct rounding by default: .. code:: c++ [#]include [#]include int main() { fmt::print("{}", M_PI); } prints ``3.141592653589793``. * Made the fast binary to decimal floating-point formatter the default, simplified it and improved performance. {fmt} is now 15 times faster than libc++'s ``std::ostringstream``, 11 times faster than ``printf`` and 10% faster than double-conversion on `dtoa-benchmark (https://github.com/fmtlib/dtoa-benchmark) ================== ========= ======= Function Time (ns) Speedup ================== ========= ======= ostringstream 1,346.30 1.00x ostrstream 1,195.74 1.13x sprintf 995.08 1.35x doubleconv 99.10 13.59x fmt 88.34 15.24x ================== ========= ======= * {fmt} no longer converts ``float`` arguments to ``double``. In particular this improves the default (shortest) representation of floats and makes ``fmt::format`` consistent with ``std::format`` specs (#1336, #1353, #1360, #1361) .. code:: c++ fmt::print("{}", 0.1f); prints ``0.1`` instead of ``0.10000000149011612``. * Made floating-point formatting output consistent with ``printf``/iostreams (#1376, #1417) * Added support for 128-bit integers (#1287) .. code:: c++ fmt::print("{}", std::numeric_limits<__int128_t>::max()); prints ``170141183460469231731687303715884105727``. * The overload of ``print`` that takes ``text_style`` is now atomic, i.e. the output from different threads doesn't interleave (#1351) * Made compile time in the header-only mode ~20% faster by reducing the number of template instantiations. ``wchar_t`` overload of ``vprint`` was moved from ``fmt/core.h`` to ``fmt/format.h``. * Added an overload of ``fmt::join`` that works with tuples (#1322, #1330) .. code:: c++ [#]include [#]include int main() { std::tuple t{'a', 1, 2.0f}; fmt::print("{}", t); } prints ``('a', 1, 2.0)``. * Changed formatting of octal zero with prefix from "0o0" to "0": .. code:: c++ fmt::print("{:#o}", 0); prints ``0``. * The locale is now passed to ostream insertion (``<<``) operators (#1406) .. code:: c++ [#]include [#]include struct S { double value; }; std::ostream& operator<<(std::ostream& os, S s) { return os << s.value; } int main() { auto s = fmt::format(std::locale("fr_FR.UTF-8"), "{}", S{0.42}); // s == "0,42" } * Locale-specific number formatting now uses grouping (#1393, [#1394]) * Fixed handling of types with deleted implicit rvalue conversion to ``const char**`` (#1421) .. code:: c++ struct mystring { operator const char*() const&; operator const char*() &; operator const char*() const&& = delete; operator const char*() && = delete; }; mystring str; fmt::print("{}", str); // now compiles * Enums are now mapped to correct underlying types instead of ``int`` (#1286) * Enum classes are no longer implicitly converted to ``int`` (#1424) * Added ``basic_format_parse_context`` for consistency with C++20 ``std::format`` and deprecated ``basic_parse_context``. * Fixed handling of UTF-8 in precision (#1389, #1390) * Added a CUDA test (#1285, #1317) * Improved documentation (#1276, #1291, #1296, #1315, #1332, [#1337], #1395, #1418) * Various code improvements (#1358, #1407) * Fixed compile-time format string checks for user-defined types (#1292) * Worked around a false positive in ``unsigned-integer-overflow`` sanitizer (#1377) * Fixed various warnings and compilation issues (#1273, #1278, [#1280], #1281, #1288, #1290, #1301, #1305, #1306, #1309, [#1312], #1313, #1316, #1319, #1320, #1326, #1328, #1344, [#1345], #1347, #1349, #1354, #1362, #1366, #1364, #1370, [#1371], #1385, #1388, #1397, #1414, #1416, #1422, #1427, [#1431], #1433) - Dropped fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch (merged upstream)- Added fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch to fix tests on big endian targets- Update to version 6.0.0 (too many changes to list, see ChangeLog.rst) - Dropped 0001-install-pkg-config-file-into-libdir.patch (no longer necessary) - Switched to MIT license - Increased SOVERSION to 6- Install fmt.pc into libdir with 0001-install-pkg-config-file-into-libdir.patch- Update to version 5.3.0: * Introduced experimental chrono formatting support * Added experimental support for emphasis (bold, italic, underline, strikethrough), colored output to a file stream, and improved colored formatting API * Added support for 4-bit terminal colors * Made std::string_view work as a format string * Added wide string support to compile-time format string checks * Made colored print functions work with wide strings * Introduced experimental Unicode support * Removed undocumented basic_fixed_buffer which has been superseded by the iterator-based API * Disallowed repeated leading zeros in an argument ID * Deprecated fmt::visit, parse_context, and wparse_context. Use fmt::visit_format_arg, format_parse_context, and wformat_parse_context instead. - Removed upstream merged fix-fmt_pc.patch- Do without em dashes in summaries.- Added baselibs.conf as source- initial package for version 5.2.1/bin/sh6.2.1-bp152.2.3.16.2.1-bp152.2.3.1libfmt.so.6libfmt.so.6.2.1/usr/lib64/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Maintenance:13448/openSUSE_Backports_SLE-15-SP2_Update/0779c36c60aa82b3096949b3be5a5761-fmt.openSUSE_Backports_SLE-15-SP2_Updatedrpmxz5aarch64_ilp32-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=319733e6ad3252594f126e319af1eb6c7749b045, not stripped PRRRRR R R RRRRutf-8b7e9e2180ac5035c52c1850e80813194a2116a97e4510e2ed83a55aa1385e8fb? 7zXZ !t/z,2]"k%ʽdva *nX n0;~BC[SgKpFXfw-O@eNڪ-="'Mv TCu+nE7 ,~:x gdBY./tbcÐBOX.Ӯ~hc OZ"Ӻ͜+489GEM ~uZBh"ٟK)'SP M 8%oZ[\爴S9f2E(*397B9͔ XGɰphv2c(ن uWة4?&k#1zh{U6.%?BϻK2jֲq7[#hMHi퇆z^\6]BZa{%`T1B>sje{}1\+WiJ\eXz~lsXD4/$]W'Wg6@ + NȨg2WER=&[˯lWI9EJ{&"OP=rSR*p ]y @Sjp. i1ApOUi&AcsZX*ߛ _}3jQؤnKFtDK$!Hy1q3A 07 4X)1wLaO0BޱTɈb=a>^TV Hj8|,/H=laNՅ(*7QVpu0 ^;oRi+ˈʤ d."Ġ)͢*9LcMxpjҼ1|<Vk:Nklkf"M|Rjp0B->BsnI k}PWb:1m5]k3Fˑ̐I( Z_iBjLly Ua34mH8KJh5h3>aWY[`CD2}ӬUAE;!VEA觷瘴 Fu,8vB|{WfA=pD{ǽ^ڔPp'6]5o`!RQ!)4X(ha~[xl`倰p2GNeuLT*Lq%KnZ>mmkB،bZ~ dW9~~ghT_~N) 9aXn/B[Wy `BNgp攽a|zU?!DJ h͠@IF ] yac光2zG@8 h.a&'BW?&EH+2 h2PL05hAvܱ{،Aa%Yz XA,4,-pIBr 1:O.ԽZpJ+Y5 ħPyysi (DD\ }8_W ЫrX̏fOՈIp`B&HN'b'+)ZϋskIwFE4z[=Y%Cr:I]ëyeCUDԩҜ/0+WE5vAxvg_yqibo!4 qxiQKDJ>;Uƞ(-6s~䊉mפ<<HD*_/҆tKt,` t\‡UNxRxmuWZVR:8։Sa487Z5!OLe: oˏB{@YnAc+\"uI$[@{5s&$06B!N n bP^:BMsV_(B1 ~v̨Ig. q7u|pg: (rwS^$s#ۣqZvswT@ 0˝UY~c<řeFw2 \hRGve.`<I?'tL-ӗgPӮa>Y[#ḳo=c @}"} RߛBDJÙWݩukhι˘6KѸŷ$Wгv_aL(=+-vp[t`}tLZ6$ v@p;xRSdv0"1aKG|U)*ѓ>_pFCr@wF p刾 Q;`ɡ\l=Qmc=rݑ\H'i>p؊!tͯӉ= xi9eИ!x .Dwggj-C| C :n ("Mb/eoS<^2{{)#CIkkhB>C2,5*t{#f*?$|4{hf:2+Ċ:{Ỉ,6}-= Q+s&yuA/ %;Ʉq\_m`@ȞO+gߩb̾'YOB<洏ʔWe `::2` DcF_m"r`Bf}NR5U 0tޮ k >6r=Pt.96 >6_t ,w!.57(8$o&~k)3^m:)Dž[7QygF&GMȕMgt|z{ a .xt981NA+' 1.*̨4`2R( ڕ4g77 0Y-bv/ˤ v@A.r!՘{vZ-w%K'Hz Vز_]m6r6G$,a{ LJc2 fo%|j>b@i]UF{΁SWh8sH=w+fs|J^L"歲t?Ae ڀnw]汰=&@J$S$CMfYY~a M"B^B@x4?e$9E6I/XċnvNY\IޟibUAQ%0*跣bW?$eQHk8\;T) ֏}0.^:I_w<A" C_&(c@~Hw ױtI؜NPۦp$O"h$PHʍ`2n"tꄝ3ɾ?& c'o b.K3%q9%Gjܓ;FѧSWnt>K:9Sǽq_ 0f!Lsu՘$:YPeh?vUD&`BاR=4NP 'sؑ~Rnvg>gv,"vP&/3z08+} mWH磴kiOCȤ φ4wH5RIMS?Bg/jO'Nk_I^"w sXsgf?kŁ`lv_`7'V4A)a*ȇT2ȯelc8Q<֊*XHaqzX#{F> g4\۵4˄ȷfLp[b9v+L'nV]mݏQaSt?gvڪki,CƹR22B|oT)š\ 17s~:Ãoikcm%?1vdd–9۾֛*e&6QA{th>CК\ _gqT2s1̗qDm3,([-`)J@jWj%sc,W(K Ž 11ODy1Yɠ0踉xPuE ämNC[yL2YwZP*NXt.gWbi jX>vMjGq_W1H0 Վs*jRsOj3ЂT|"KUt.F1'{*!BWjNMaxJS<õ~:GdZ')E֧nϧC靲_؟ϒ/ȝh2p^S # ' r_FǺܗT)<:^V72N,q?$O KDXECI '3@]L,,VT.Q@ux@f7Y 2+ɶ<A_N;qzfnG|+Q΋HYoypwr6ԈnHy<(z{'=g4byJ;ƐЭG8ꤙ|M.sa:."?6!QYAD Bww*Y$( /b\ftM!&,Cc%!Pr֐$Y5U"nP͠_ & s沫C 1R^U=0w\sDl[Pm ։0 =Wۭ =`#ěN+-3nnN:;XD1e ̫(LaUsC:7_grFhIuiK}uˣAѯ>bXLC. xn:7H [" PI r~,fV6l{|^3oSm +WPREF!t9DYC7˸7KYTÙTRpwj鋶ozUlt5\냴1uAHQ2w}6$)G~R vjM;31l\Y!0@jk}PvɉXw#Y4$Ius$A: ږضntasa},Ҏ׃ĽGT﷕8G=ƛ:,}w53CN"3D"1eU֝vHcKUǚHU/[4cY4qˁaPl7F\l8I储P^|)Q]p I%lq5 ݔ%0>5+"T꡾1MoE%)4Ue{v]RPhAI nK{b ג)ĥNfE4)HDjF-41Lsiz@wo ϰ VAem D.w׆tszdo E0hO) 3)(uJsktV3xL/gǻtCGUKMYn+cOܚ{XVA S]+w4uJXCbdDZ--])<qLur $:xo0Ryyek=דA2ǐ(ht!xe7@ yQ5=Y fMS8ZveZ:+8_{K`_0$JKBO0ה1u2 6B7a!ΘѮ PLYe6!@RNObհ}iHNIfHa6w>ex`:]Y?-5< :!㢂*#-Ck*s?bN{崜lspQ?IABX0 <8d58*Z㊭'vd҃a?PyI?. fia)`:Y.%W?gق~wY&2Qes!yCC">lƊiM1INZ9axҕ V5t&=)-& bOK0nE 5tvd=\b@!Q>s]tߜO@g.<͟sô"d_-b )]Ph6d]U{viQo~'I7`t s5+b 5=|㷱m4I~Q fxp=A:q4ڕznoA(Ѽ)dAu{nq ^$mppM|` 98>C|<ɴZ5RXքo3Nl= KvV [Z?Q6hD._ I5zm%MiYgxx6QTج4{ F4v(| q٤wjA=Bp9\Nqx*lL J-\~?6}'ZfYf^v°*.4 VވW&Ld+fϣeK k<|]eFBJOQ%ХBs]L:$pЕ֯Wl+cJb,݈fSJBn;\v>˝MF_v-JoA `Q2cJga/7V+7̭죠Fߣy1*`F4w|DANCtq{55zE(MV@")8ϝN^m?e/ }*1/[siVWnEB~RO]=c~P?~f"yڞbϼ7:+5PF#x t_OYA4ew퉩 VLlq|O29EBL3_I op^|l lcKը5g:քX(̩΄v@\b"~Nh@OFȞW6MnF NN/ P okpNaNs J@+XmlaNW)CWC E^nIyvbɅ]EXC~FBMV BۋQ]3ŴQKye¬ɸvTw 5B[7IޛCAko"_5(rx~7U6W"޺t Z議MĠ !IP٨IWV W[Ћw@5:@4Vnz = Qn P % uzx q .uZ40nɱ[ E`:t]p7~([Wh-SeS|>Oct.C<^'nO=?oao#+?㞹[2RKZx]h1557< O|~ק_=sE;,f-.D w50=p6, ~N/z'V}O%ى09r(|(iL UkJpi>-Gm$IU9Je\~?\;lx8;j";}D=ꀓU:;tsxBe6yg^Gq`=[:ҥW` q|QZIkAPڶ>>4)<]F57a(P~+'ʿ8 oR)B{9`Bk+VF ]|~_/*sOhsin`0&+]N*v( EsI ɻ#4n@`#^$;5E2b35S_j? @[u+\ܾ'>"w,Rg2DPt m_G0=P7^=ӿ- {Q?3:wLUx3\xrK뻢mfռナUiְM#"y <|&_'GQ^%xudCїisGsc&ڼ)ELX qD.?ÝRvbU+J`9Dl|'9).2fBn<@I̜J^ݥ zjV0#ad8jCVkǸ7}4rBE -Ђ'K~V(j!WO!ʹB1̛AFY>f]1yn8rAX ħP}z@+TmK~('-(I-$)R%>}~1Et/6˦GЫy_YgY|RV4_"SX-nrz!sN\tfgKoΠljlq%H7% }ť߃CòJp0 \D(%oաa_0aRw(l\lLl[Z3%a .*qgIlX4h,-ْZ<-Cƨ3BW`49!(?5h3B;}$jQwiefZhSsAM?Y[['gǟf  H@[_ SpX+l<0< `9(GtP2S6ZercԽ?ф Z'Q5vJӻ]Z^P lY=/ 9vekx QS1AjcBWT}D_]x1ؼX yPט/|זbNmbc^֊fTLJUl@SPWGWv=1 zT @$"?1>ҹ X߶ YZ