libfmt6-6.2.1-bp152.2.3.1<>,`(_/!M@eeeJJ}gm1z¦JIfDaZ[Exyvi_[bҐ^^.Uiu=]4蕓27kg{#/:ۅ틕ooIykTꗺBOؓ ~!{ȤŌ'z:d⍷a HkXXz,̖|*ȂI}*C&mu_S|+ώ(BL`(ʫqGi(Z ؉>@,?,d   9pt     $  $T(8$9\: >(@) F)G)4H)DI)TX)XY)d\)])^)b* c*d+Se+Xf+[l+]u+pv+w,Dx,Ty,d z,,,,,Clibfmt66.2.1bp152.2.3.1A formatting library for C++Shared library for fmt, a formatting library for C++._/obs-power8-01#pSUSE Linux Enterprise 15openSUSEMIThttp://bugs.opensuse.orgUnspecifiedhttp://fmtlib.net/linuxppc64leA큤_/_._/^֠a2b26731c71a5adab51b82e2c171c1e7e565afff3641e136c98f2c6004a9a366825c9324e70f8c839c8ba910543dd4a7daee243b86ef960594c11381a19980b8libfmt.so.6.2.1rootrootrootrootrootrootrootrootfmt-6.2.1-bp152.2.3.1.src.rpmlibfmt.so.6()(64bit)libfmt6libfmt6(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(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/sbin/ldconfig/sbin/ldconfigobs-power8-01 15954205556.2.1-bp152.2.3.16.2.1-bp152.2.3.1libfmt.so.6libfmt.so.6.2.1libfmt6LICENSE.rst/usr/lib64//usr/share/licenses//usr/share/licenses/libfmt6/-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_Updatedrpmxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=299764582c088fa1f79d7b0bf81de01062d57c3f, not strippeddirectoryASCII text PRRRR RRRRI.-Xutf-8ae1e9fbddacebb0e83b65c5b960f42c4c9156b0927d6df8e1b3056ffeae7ea5b?7zXZ !t/.]"k%jjdva zMlqb'Jq@|^ʔ*f'~FSZ/磌Z?Qu3(}`^MQ>^f dŕZ3W[D_SC":~ pw5" OVrSE`ȁLm(?Hopݏ~(,Pw@3G'uG[*AGDαE5Ǒ!D=@U)! 5oI+Z.g@Xag}'ҙ~鰷l<`6^NH&&ΩT'7b׽jnqă?倠t:2K-Н/2D}D0x,Vl:h)>zi<,,߷FvFWy*o/T[nBT֨*lnHf.Jn='Q|ng#={}bS^O-Ra"PjxΙRP=24RTL~ AJmZ.y0>k۞skG˼n?i'4!SE ȦD75׸ׇҏH}\qe:ugC&A{ˮt&$\&Vz -FP-H.XI Zhby 7d{5cK N\X7ٰ+&#($,31Q-Hfnd0Wͩ!WCf&v8vSHCZ gBt}yIhiڮqJ~5j҇kl]CaAnS*.g}SO GOߝ&xA[]JlE_ň$i9Zғ=kGhKUm̘Mh2\M7鳲yE{)Oq.>[j Y v~+=ˠ9HfK!@v&yczhO)N"dIŏѫ1OerJb֝S}2S:8(Y\C mA>B3_+Kڞn-:No,uFrY0MtlAF3\ry-N1|>3@:5GPkFV^Y'H:Q6Nm¥ Qi2'v[ax ~#R9[v"KT扉.\ꙒXLSb/Ӫ1sAmLR.~U{n4xQPĪD 鎼qo| }P|!4.l`Eg |'ϭdV=3qK}@Z'qjhZѲR9]/ ^{3 A 7_TOY§4`1_(f%G6r0Td1΀,k[Y0:d:DO/baQƂ[_rL)MkBy'fut`C4nkB9 NZ/O3˕?3Zcd7!֡YwD{3ND7Ȇ݃;O@~k@W쌂!U3F>+n^t^CK!.~Cbl-^XY . tFP.vཡ4|KafخeY#snGaf%\Ũ nLblkJSiR/'̡Ѥ4iShĀI/P V<64cXH8>tI[D =t"娨S=?ՀQ[K/5K1aw`,򌌰rPB`R4R:)fDMFz* ,p\M-cf1wޕ>a K )-BDEwи f0٫ ]}8~k&S Y4uUj5qGdPPMV!C MVժvtͯTV_$yH'م\+r:QY?+ Ȍ,--_D#97Үg0E#ڗ@]q/' c ҪkxƁKz}SF= h/CV4{uW>o,iQrk/Cians]+@u 13e1nI٨7%΂F+Sf>Y`LC(=~ՍޟUILi\`3~Dxve7[.{ |A΃Us@/܋fo^?#@ bgu@E<->ȑ ޑRgP5MVr[m!y@Ci9Vxco#hRk%»1?Go㔸XӚܪI]9OCbi%hOekv?7U*>o3JokEݶI.M&S(߽Is ~luSwpخ`5+B>F m* u[k2it5 l\ԑou J\=4sx&#Lx(EMFa&(xk zge53wCh#ƼRDTZntL :bNM`hWtu0ܠf޺3D? \I9ܙVAhoF2:n:7p"1x˄F,n*^aQ`y .Ao~z'YF"5vcImNH`c6nYc\?'謙huh]rG7+70<5Pk͙^ PH<;qcǧ/ڦFHuz$LbWm<{f~+E'6Ơzr](jfv7vM(hfQjn03M*&@#e-x':Tkc@٩ʤワR1-D#pP~ չ 4ӏ-BEO_PѫX-;b~e⩖ (yMBm@S_nd9U%Q8F5qM1 C柩9#85 C3{[ξVɠD =תҹk2h& JWbsY6P6tLg&&BRgĢ  sef{ڑoo泾th.Q1c9G:/Yϙ;1h.:PĈ0ӱ 4rg0^Rd:-<HkmKOuCK_f~`7$5ō<6YGqY ݳ!݉9Br9L; pH &%~>0pɫ kʮ=Wcd%k1W=zJ!RrW=}o_TbSU;=O`qr*:ЈJ9^s!d5[<7t9~ Wx?G?ș*]ʮ_T&MGi/ý˜RT5Dzyuxˮ:F0:MTC;jIG/ ȉĹ?NR@<ꃥR3,_ ;~W@@fH\&71=Qp|^w@/\OyimlL(슾KJO~lJ q,ı¹+ E]yp1h ;q$;[)(23;4?O%#T#2K?5ײd{E8!TIQ+}P%;wڿp^]"g7Ax xrӾ UF^UC2'N;7MUjS(3/2=BY6+i[N]YL aݹ{TE7 /I~n?# Ia2igAΘ]4R`WFs rr|Q}^%,yx"^*kSc*eS @pM-&Ds<2pעx(x@ ޭ(* ="MqQeof"_9MM`6,3Ҍ|2U6赼IaI31 R-PlcO.MQ 6Zu9K %sg%4,TD!,(dR`(fF#>CBn/i;np/ǝ C9MJw&HoyOf2V BK8?IJhL2%f?C|~/2e⨚rL=y&q@$}{vTe 5s2Hj8jk$Z0xE雇Pԩu|1(WaV"#(4$v!`~|}~LUFo1r~@F^Cu< ;tEc Bb~T%)Ghzըf* ăM qHUэCi& cY ":eA׹u {dfS>- pg[/.dy~p0upvlf&olak+x Ewқ"on^ىG,j8B>v1r ZNpۃ<>2l7܁֙w+^] !3eDkhW-rK,-p ~ CNr5`Ag9†+nb(#5\S/umWc\!I+yԗ=dQ$ e5 GC}x (U]C eCa'r.#=gHzT!roGyIOCABnCɅ*׸= K\Gׯb{bv&S&]Jc6d9_6="3gB@Ĝ b';l#:9KfǮz@L jv`?jlwMaRMRؼ/@V<Z#8 rɐ;wt~3}(M>)at {)J0c@̝6awjmM<Ң&,oHA~#{TOlJMmreSXKC51 Yp"ӵw$eGB1jhOk\V u;W2~ÞR Ri\-;,g ~ b $ģa*~"LS>ŗ1?Iq`/T[2{_=e|_;Mm-M@n :>׺l,6h=5iQa2BaVnk (禭ƞ|;gp EaI.C-_/y! .| D1T5cˌ,`Zμh)j(;PA)͗~s|?˧孳2^3jG`hnRNM✰A3 F-3GRb8j~bHCc O?)Fo?0y*sձ X.E/ Ooo2݉]~_!3 Tb>-U0&D?C{=_kabx"k]H6F/^7YNC%8&Wu_AZ2ՖNsUk~p#O94B#l&#]07E VwG3f.AͽЊHZ.tjxRpuT v\hfi0vSvp3и9y|rCʪ+ 9!XX=V[Ĵ #J-KA惲[t:n1ه=A]ׯW? _ b8cDkX܏*EI/J'T zA{_S}DB?)'9;̆~m\;L ~*P%>=4Nϲ6TlfʬVB8ů$puWem)ąx\ c4)` '=DžUch姖Z`K%{9{l[[ y F&TqJ$&w+`Ptd:kµ,EBv ;hYK##ubT /(-ZHgtK>.6S[N)vE$E}t`>|Kx.[ٳܡcn1dXiF5JʓǕYdx}QSd c2J"0cCvx֯^(_VZT\P4J]P;].hfW-?@H0N,1-jd?T`׿.aU w%z.>7!0וZ( 2(+"^.Rm Pם{*.[32,ZR̖͝F] qňȾDʓhxW=Ȝ0:f5UiMEYMQr@b}^=c?c1bIŘ0g\ʵCIwl/IiL$~vUfGoj*8>ST>%c fƛ"|T<(\i 4GQa@.m@&)z1b{~lQ|(~x+OvDe἗!e|Z!\@g%OVu&Ѓ~!+,|`U"d~b鈬k6=a[P X #8{+A=+]!!www瓡ȡ&8xٓrrwL*>w.)(f侬})ʑl·. xCXRyCg#c@*B (T"iPGdbLXg++VDمl^dĵzI5&<5DԣZ 5[e6kX Hq9qn"kxfj5<]LpJ_MYAAW}Q @;[\jaܝke׏CG}>(-(_Ӑ\w26%2W`aƋ'3Ք :7Sö!!5]Ǖب_)+$k%)X=埊e`Q6K%;mv?xƼ|k.6[ tG9 ].6x6urϰzdvM;ʘc#f By2* o~zkaDo 8Y͜S 1kl==%(ukі_fg ó1$%߅eS4_peY-0&Rd3-55;1JLށpnҙ;Een'0+~|Lkd^*9a ]U2|Da5XT8[G"oJ*LUہR(%d|cSkxP &M@.8-zbF=K_u+²OVX2Bw:+MA!խt/W"q'T/| Mܔ7m.Уm(pzE_Z_6>nFvF,Dqx`Kc渔WI5k8qM> mR_)G ROKM̾KP|r#D{04OѮiRolr@"c2/'ef:΀ )},?]Y1WF$%"A8 W-, EcA]m';ji A\2#^d1Ӷq>aUt{G {6gPeIۆ~ODxZ+!Ɓ>C M2'5hs=|yO;e 1ϑBu<ÊWơYA^=Yj2gIHQ?m{;(]]rR$D9ߗCϩn:ixSΡoХjOWߍJyT Zݔ  ~_zJIxD]|.s,$d4*dIa>0fc9Eݵ#3_pY?6|p8v/.\@viXh˹<`܌ȹP[da\$^M/T6 4FLG(j d0ZA?ŔxL!P9RSF?%0q^{Q6|P