Compare commits
15 Commits
Author | SHA256 | Date | |
---|---|---|---|
49d43807c2 | |||
|
0889683535 | ||
|
de06b7e96e | ||
|
be3f7032da | ||
|
a026961546 | ||
|
cc0667f4e4 | ||
|
cd3fc04652 | ||
|
4d2f9b4765 | ||
|
510ddc00fd | ||
|
5f9b83adb2 | ||
|
6bc4352107 | ||
|
43b47b08a4 | ||
|
96fc3331ee | ||
|
cddc46c90d | ||
f3fe2265fc |
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1250e4cc58bf06ee631567523f48848dc4596133e163f02615c97f78bab6c811
|
|
||||||
size 854665
|
|
BIN
11.1.4.tar.gz
(Stored with Git LFS)
Normal file
BIN
11.1.4.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
4
_scmsync.obsinfo
Normal file
4
_scmsync.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
mtime: 1740608502
|
||||||
|
commit: 7bb71d7d10a0c86d6496216cc137f618cfe3ea6501b91c7f2107034536f56430
|
||||||
|
url: https://src.opensuse.org/jengelh/fmt
|
||||||
|
revision: master
|
@ -1 +1 @@
|
|||||||
libfmt10
|
libfmt11
|
||||||
|
3
build.specials.obscpio
Normal file
3
build.specials.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:042aee456c209057a8fa9bf9810e58bc66597b1639ea87b13bff52f0821e94f8
|
||||||
|
size 256
|
70
fmt.changes
70
fmt.changes
@ -1,3 +1,73 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 26 22:12:48 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.1.4
|
||||||
|
* Improved the logic of switching between fixed and exponential
|
||||||
|
format for float.
|
||||||
|
* Moved is_compiled_string to the public API.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 26 17:49:33 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.1.3
|
||||||
|
* Readded `args()` to `fmt::format_context`
|
||||||
|
- Delete 0001-Restore-ABI-compatibility.patch (merged)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jan 11 14:49:36 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Add 0001-Restore-ABI-compatibility.patch [boo#1235078]
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 28 03:00:29 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.1.1
|
||||||
|
* Restore ABI compat with 11.0.2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 25 19:15:40 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.1
|
||||||
|
* Reduced debug (unoptimized) binary code size and the number of
|
||||||
|
template instantiations when passing formatting arguments
|
||||||
|
* Added an experimental fmt::writer API that can be used for
|
||||||
|
writing to different destinations such as files or strings
|
||||||
|
* Made std::expected<void, E> formattable
|
||||||
|
* Made fmt::is_formattable<void> SFINAE-friendly
|
||||||
|
* Added the n specifier for tuples and pairs
|
||||||
|
* Added support for tuple-like types to ``fmt::join``
|
||||||
|
* Added a formatter for ``std::reference_wrapper``
|
||||||
|
* Added experimental padding support (glibc ``strftime``
|
||||||
|
extension) to ``%m``, ``%j`` and ``%Y``
|
||||||
|
* Made ``fmt::appender`` satisfy the ``std::output_iterator`` concept
|
||||||
|
* Added support for UTF-32 code units greater than 0xFFFF in fill
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 20 14:51:13 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.0.2
|
||||||
|
* Fixed performance regressions when using
|
||||||
|
``std::back_insert_iterator`` with`` fmt::format_to``.
|
||||||
|
* Made ``formatter<std::string_view>::parse`` work with types
|
||||||
|
convertible to ``std::string_view``.
|
||||||
|
* Made ``volatile void *`` formattable.
|
||||||
|
* Made ``fmt::context`` iterator compatible with STL algorithms
|
||||||
|
that rely on the iterator category.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 10 18:07:21 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 11.0.1
|
||||||
|
* Added fmt/base.h which provides a subset of the API with
|
||||||
|
minimal include dependencies and enough functionality to
|
||||||
|
replace all uses of the printf family of functions.
|
||||||
|
* Improved integration with stdio in fmt::print, enabling
|
||||||
|
direct writes into a C stream buffer in common cases.
|
||||||
|
* fmt::format_to no longer exceeds buffers, instead it will
|
||||||
|
truncate.
|
||||||
|
* Added formatters for std::{expected,complex,type_info},
|
||||||
|
std::chrono::{day,month,year,year_month_day}.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 4 13:55:11 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
Thu Jan 4 13:55:11 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
9
fmt.spec
9
fmt.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package fmt
|
# spec file for package fmt
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,9 +16,9 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define sover 10
|
%define sover 11
|
||||||
Name: fmt
|
Name: fmt
|
||||||
Version: 10.2.1
|
Version: 11.1.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A formatting library for C++
|
Summary: A formatting library for C++
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -64,8 +64,7 @@ export CXXFLAGS="$CFLAGS"
|
|||||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%buildroot/%_libdir"
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%buildroot/%_libdir"
|
||||||
%ctest
|
%ctest
|
||||||
|
|
||||||
%post -n libfmt%sover -p /sbin/ldconfig
|
%ldconfig_scriptlets -n libfmt%sover
|
||||||
%postun -n libfmt%sover -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n libfmt%sover
|
%files -n libfmt%sover
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user