aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/fmt
AgeCommit message (Collapse)Author
2024-03-10fmt: remove unnecessary "inherit ptest" directiveRobert P. J. Day
Given that the recipe does not provide the standard ptest infrastructure, remove the superfluous inherit of ptest. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-19fmt: upgrade 10.1.1 -> 10.2.1alperak
License-Update: Dropped the rst suffix from the license file Changelog: 10.2.1 - 2024-01-03 Fixed ABI compatibility with earlier 10.x versions 10.2.0 - 2024-01-01 Added support for the %j specifier (the number of days) for std::chrono::duration Added support for the chrono suffix for days and changed the suffix for minutes from "m" to the correct "min" Fixed an overflow in std::chrono::time_point formatting with large dates Added a formatter for std::source_location Added a formatter for std::bitset Added an experimental nested_formatter that provides an easy way of applying a formatter to one or more subobjects while automatically handling width, fill and alignment. Added the generic representation (g) to std::filesystem::path Made format_as work with references Fixed formatting of invalid UTF-8 with precision Fixed an inconsistency between fmt::to_string and fmt::format Disallowed unsafe uses of fmt::styled Pass fmt::styled(...) as a parameter instead. Added a null check when formatting a C string with the s specifier. Disallowed the c specifier for bool Made the default formatting unlocalized in fmt::ostream_formatter for consistency with the rest of the library Fixed localized formatting in bases other than decimal Fixed a performance regression in experimental fmt::ostream::print Added synchronization with the underlying output stream when writing to the Windows console Changed to only export format_error when {fmt} is built as a shared library Made fmt::streamed constexpr Enabled consteval on older versions of MSVC Added an option to build without wchar_t support on Windows Improved build and CI configuration Fixed various warnings, compilation and test issues Improved documentation and README Updated CI dependencies Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-09-07fmt: upgrade 10.1.0 -> 10.1.1Wang Mingyu
Changelog: ========== Added formatters for std::atomic and atomic_flag (#3574, #3594). Fixed an error about partial specialization of formatter<string> after instantiation when compiled with gcc and C++20 (#3584). Fixed compilation as a C++20 module with gcc and clang (#3587, #3597, #3605). Made fmt::to_string work with types that have format_as overloads (#3575). Made formatted_size work with integral format specifiers at compile time (#3591). Fixed a warning about the no_unique_address attribute on clang-cl (#3599). Improved compatibility with the legacy GBK encoding (#3598, #3599). Added OpenSSF Scorecard analysis (#3530, #3571). Updated CI dependencies Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-08-15fmt: upgrade 10.0.0 -> 10.1.0Wang Mingyu
Changelog: ========= * Optimized format string compilation resulting in up to 40% speed up in compiled "format_to" and ~4x speed up in compiled "format_to_n" on a concatenation benchmark * Optimized storage of an empty allocator in "basic_memory_buffer" * Added formatters for proxy references to elements of "std::vector<bool>" and "std::bitset<N>" * Fixed an ambiguous formatter specialization for containers that look like container adaptors such as "boost::flat_set" * Fixed compilation when formatting durations not convertible from "std::chrono::seconds" * Made the "formatter" specialization for "char*" const-correct * Made "{}" and "{:}" handled consistently during compile-time checks * Disallowed passing temporaries to "make_format_args" to improve API safety by preventing dangling references. * Improved the compile-time error for unformattable types * Improved the floating-point formatter * Fixed handling of precision for "long double" larger than 64 bits. * Made floating-point and chrono tests less platform-dependent * Removed the remnants of the Grisu floating-point formatter that has been replaced by Dragonbox in earlier versions. * Added "throw_format_error" to the public API * Made "FMT_THROW" assert even if assertions are disabled when compiling with exceptions disabled * Made "format_as" and "std::filesystem::path" formatter work with exotic code unit types. * Deprecated the wide stream overload of "printf". * Removed unused "basic_printf_parse_context". * Improved RTTI detection used when formatting exceptions * Improved compatibility with VxWorks7 * Improved documentation * Improved build and CI configurations * Fixed various warnings and compilation issues Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-05-17fmt: upgrade 9.1.0 -> 10.0.0Wang Mingyu
License-Update: Add " and {fmt} contributors" to Copyright Changelog: https://github.com/fmtlib/fmt/blob/master/ChangeLog.rst Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-09-29fmt: upgrade 8.1.1 -> 9.1.0William A. Kennington III
Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-01-24fmt: upgrade 8.0.1 -> 8.1.1Wang Mingyu
Changelog: ========= Restored ABI compatibility with version 8.0.x Fixed chrono formatting on big endian systems Fixed a linkage error with mingw Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-11-03recipes: Update SRC_URI branch and protocolsRichard Purdie
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08fmt: update 7.1.3 -> 8.0.1Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-03fmt: upgrade 7.1.2 -> 7.1.3Zang Ruochen
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-09fmt: Upgrade to 7.1.2Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-02fmt: upgrade 7.0.3 -> 7.1.0Zang Ruochen
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-21fmt: make available as native and nativesdkPascal Bach
Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-08-19fmt: 7.0.1 -> 7.0.3Jyothi-k
Upgrade fmt to latest version 7.0.3 Signed-off-by: Jyothi-k <jyothik41rao@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-07-28fmt: 6.2.0 -> 7.0.1William A. Kennington III
Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-07fmt: upgrade 6.1.2 -> 6.2.0Pierre-Jean Texier
See full changelog https://github.com/fmtlib/fmt/releases/tag/6.2.0 Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-01-23fmt: bump version to v6.1.2Vincent Prince
Signed-off-by: Vincent Prince <vincent.prince.fr@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-09-13fmt: update to 6.0.0Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-07-10fmt: Init at 5.3.0William A. Kennington III via Openembedded-devel
Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>