libfmt6-6.2.1-bp152.2.3.1<>,]_1@-d?-Td   9pt        Pe(89:~>)n@)}F)G)H)I)X)Y)\)]* ^*<b*zc+ d+e+f+l+u+v+w,x,y, z,----PClibfmt66.2.1bp152.2.3.1A formatting library for C++Shared library for fmt, a formatting library for C++._1Luigi 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-arm-1 15954209886.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_Updatedrpmxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=319733e6ad3252594f126e319af1eb6c7749b045, not strippeddirectoryASCII text PRRRRR R R R RRRpc7دfutf-83c93ec3aa93238e4faec14df186aaa1968a4e8fd16028923ebf714446109200e?7zXZ !t/z,/]"k%jjdva zMlqb'J p"U dz褊1סZp w;dJߓDc3ͅوoN^Mw:]`CΩ')/!; HqAyR*O&h) \ۏTRSw4\s`,;aS9+ "\b`J[|N+mB$VL ~pA8P@ X=7)8Xj`_ C$AAdi#p}FBe(۝LA#g 4ٗN|c\SQZLf1&]à[{xܹpXoa<fq i$:ɻ/?CzQݛSN]_.Z~Tt;VgOiO> ]t'JYop>+Sy//;E4-R `gw"K mÁ?^)}[_33MI+@|@Fg  VGy 1^#Gp"KnٗпM/:d1؂LQ Sj,qSN?LvҌJ%(_,\I%)G ^ecJ}Yfn8{z^,!_V7Ͽy@9(|L\\b7g)%3l.>r']sF箘oyL@pK !1BkQ0mbl2WBV-L.V_[-4&xԦ5(Ӆh7-? ۤBcy3tk^( dN_c!п /^s@:VI[y;F*2r_;]6GxبK:w6R99`,[.CE)}l6IMlz{++w4k].? |Zfr@31fY-eU1_hnς_=`/sOGΫM[ "l|۱os8fL%H`ҭSUD &?؂{lE:NxqjI.!w% o\HoGE]rQf$UW\>YNW\V~Bܞ0F0zM(ȝ &>a;UJB9#I6c#{ B - LQ^>EG$  l C1N0E{Kx>nU=`bo%iG B*hfLZmyŅLŽL'&n ͤ3޸BBwiʫnOp{E+ZSLG¸8(ѹsH<}zMVqRxӠ 3A2$|ˉ9 O;0`dPY^XXZ\ n=VJMN<ԑe[o?1=CO:wAHp>@rY iJMo??sB$l\dUV1OFnv\uF"]##q%`KEN\VbCBm$#ڰqϿeY|ԉl<3Sk"}p͜Xq%z{'pԚ@ sSLC4&IcVfm0_,JhD2G,%IY9(zN& )0Ƕ5fUJ5q3'@ wC*2[>tJ=֔mv_nPB}oR3ʽ>YIENδ.1k:P srWCIlt9Bm jӑrf3RH2??/>4l [uqm oaT45$¡uUkQ}YM玁% C !gчK%bޛC`Nq~ϲ{MC;aՑfhtO!zeͽ6Ol\NM?w[OIعF% /A1> h13.h|+ԹI,謥 R5>3 ZBXDc5'a,#Au1N+[}`#f*.|kM2 ÃAp\V0oҗkLۮKbqKXY׋u_[TciSŠc"z1G."[!!@*e@fFUWĵGva'K~[lWMԽށ]¢ū" ~O9W$#w%T1zN7-F~I9YlUeD`?yϥڹ鐠w'YrhNKB5~k0mH~ܔsg/=0!QϻkTP Z2DL6&yY,!`` =soU2z lH5n,y Ro.S=`8rrG?2r X6 3LiK  UDS?9γU: K.Uw4NMԼXי9lYt9Kql -bq"&~2v(xH s- C#%Z#a(Dj=c[B|Kz $3a֍KeKga9O 5a% mgCh@ 8N>[9@ahū|͝]H9&NԝxIRYTMn(L 7*j|!;(4?~})Txѵ܅@)dp[}PA0zP7ibgNE/SRؾVS+^7i‰R^]152Ц?(RW20JUi_zю֚ WliqD*+A#=| M2hKV,v/r^bRb*^xR2{RvɋusځIÊmQ(qDڼ7:Ճpp}bl 3JMX3)^˵sI{rS}qu^;ՠb-酥\,*B*\" wyI줸dwT7]c,=LrU["AY=R}}%mFH&SkBYv~fncq-znk+ Fcql~6L߿sYƲ'k2Be>dXf7ײ)~ur2{*ʞ1'jGݦN a+V"sz8H05N J\Gqe/- Wަ4R̈E%EAAS'K:.}?ijWآwRؙoU~hwˠs vkS65 #D6`J;W(^& uJf7Dbd%f m2oUȏz>=Ra&":0y*'!!352Zl;fq}BN U7b#_ m߹>Mq$};S|rϐ.l_ BHM/s9jC7C 6%TĽQZAҰm.NbR_$XQQފsQoqCr9'<4VB1ψH{-ć)4f#g eÍK0QܨE`hWZ!/vD{ pajkvײNea-EBSMuRu Y_\q#0Ia1r#6eWKMcTɭ5&{K(`*HkYèN~_ qBQ%A)n8!s 6AoE507¢H@ `xUrbXoQ/ܞ:>MZ-Zђe> /s4I~ʆso ~hIRŒEm$RX(.`b.2sߣ$0;E8ѝǾlGФmCD>`5cSKRޤ/!{]"d\eVꢧ __ ơ Φs9ZּZdIv&pL7?c{uA9)ٸͦpF|Zu`=̕0J;bخ?f&mil=`!0EbLDY%sg5L>mi&o7e `53+9W9v֬t FPe;L;6z3o]t@,@sua.%]p9+-/(ٻ+[nI8SnXƓrb@CO0C'5AS)ni 6H SIOkv=‰Y4O8lbx/V0 2kJ#!ôbA\6bx| (ߔv;6qs+oV3rwh0u],ͺ$^!32`@B-joyTOB#,)VI_W_4uW(CGLm撝*V*\/Bfq9 "|'56,T(nthVdvAȔrQJ{)^B[褽O!vހ'jMr}@T`$?>O>;TX ZWZei{~fG?B!kA &^˘X^E]diqq5"eb Z|2-V*ƄzI.PM~`:y5 WVn ߛ@q!+)Fq 2jD)n&DE^u Fw.۽'?^!ʱ16K'9o&dpJ*-0-=#b|dH~f*(KνOgYPϯ;w>lL8ilG'x A܇}jC )=DH=Ed<9=EH.[+nݠri`EN@egѦj!̀t0iRaJ֙ b9ڡUOOv6ӪKE`'V(A2_n,g0QFOp̭46lH׽W%Ƚ*-u޺%Bi{% lX>Dz6RZT8%t $ _g) 6);}U{%l˞Zw$Nn_sskGwYitil "f%ZCc8Ӫ#zK?-;plv+Mjl&Dd9EV%AQzl xkC0<= ?N[7#uChf 7UdKO@|L-c͞&wp31 +xaŤ`wIT+>LRWG()y@}bHk2 :aJ-I\UjmJhUsi'rOvIOB ]]? N?ĥf`7M~!*K *ܘ(w&+wtB&]:^s2F"p珖K }8xDVA  k\Y`ձ]=X{q(TXRov;̰us T27eu׫7@2Lיd> Jfic|U>(B MJ˼ewR^{px_DZbmԸDvFzF_Cs\4QuDB\QOLjn;)fv:("{pQ׶[r܏8`Gk@.I<=j;܈H͓m #nl2 S6y_Y)O#JfC*̡R.UFZ-ja;cu(+-}.zJ?A;~<#v7ڽrs{5pūD\h?i-~ 6;%U[:UgJ5le'|gwB;SlRcFVjz/[8].쟌ҷN Dh 7K Մ]2qof7!w"Nw[F,ErձwW̒, ұw\3, :R ɵ ‘Z2?b~xP{NXM|4Є0]>xi5cO9ˉx5Kǿoy $­"6D&r"|ԊBF_$ow$ ؄*hh/X.k7>YtS6eAR=_ Kթ#p#5'QgM.|TǢ)?i6zr݃~rxE1Q4|w)pD󂒞,Fޕ U,tN#'$g?+YR VPebN #1+"sW\X8W"m3gwbJWa>ot>cY*q]2VfM~CIBg15ٰYHgLEe`h]twc3|狄$eP"b0&S+~V=.)aI[w$#go/r`*]h|9ZF"ʶ1Q ؘdf4W.c ,#+%){ G7=]|v,kBϕA7$ie0Jj7xt&'_OD6bPev2[O&K^"XQ)8?;B > 0t9ǂF #@ #gF2T^-4w W\9N-xp@T滏t-͖bEpa$=xVZǞR)\E)t