2018-12-06 10:03:10 +01:00
|
|
|
#
|
|
|
|
# spec file for package fmt
|
|
|
|
#
|
Accepting request 791803 from home:alois:branches:devel:libraries:c_c++
- 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
OBS-URL: https://build.opensuse.org/request/show/791803
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/fmt?expand=0&rev=17
2020-04-06 16:47:34 +02:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2018-12-06 10:03:10 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2020-07-06 16:53:14 +02:00
|
|
|
%define sover 7
|
2018-12-06 10:03:10 +01:00
|
|
|
Name: fmt
|
2020-11-02 16:44:20 +01:00
|
|
|
Version: 7.1.1
|
2018-12-06 10:03:10 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: A formatting library for C++
|
2019-11-29 11:25:23 +01:00
|
|
|
License: MIT
|
2018-12-06 10:03:10 +01:00
|
|
|
URL: http://fmtlib.net/
|
|
|
|
Source0: https://github.com/fmtlib/fmt/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
2018-12-06 14:39:12 +01:00
|
|
|
Source1: baselibs.conf
|
2018-12-06 10:03:10 +01:00
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
|
|
|
|
%description
|
2018-12-06 22:57:59 +01:00
|
|
|
Fmt is a formatting library for C++. It can be used as an
|
2018-12-06 10:03:10 +01:00
|
|
|
alternative to (s)printf and IOStreams.
|
|
|
|
|
|
|
|
%package -n libfmt%{sover}
|
2018-12-06 22:57:59 +01:00
|
|
|
Summary: A formatting library for C++
|
2018-12-06 10:03:10 +01:00
|
|
|
|
|
|
|
%description -n libfmt%{sover}
|
2018-12-06 22:57:59 +01:00
|
|
|
Shared library for fmt, a formatting library for C++.
|
2018-12-06 10:03:10 +01:00
|
|
|
|
|
|
|
%package devel
|
2018-12-06 22:57:59 +01:00
|
|
|
Summary: Development files for fmt, a formatting library
|
2018-12-06 10:03:10 +01:00
|
|
|
Requires: libfmt%{sover} = %{version}
|
|
|
|
|
|
|
|
%description devel
|
2018-12-06 22:57:59 +01:00
|
|
|
Development files for fmt, a formatting library for C++.
|
2018-12-06 10:03:10 +01:00
|
|
|
|
|
|
|
%prep
|
2019-03-26 09:29:23 +01:00
|
|
|
%autosetup -p1
|
2018-12-06 10:03:10 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%cmake -DCMAKE_INSTALL_INCLUDEDIR:PATH=%{_includedir}
|
|
|
|
%make_jobs
|
|
|
|
|
|
|
|
%install
|
|
|
|
%cmake_install
|
|
|
|
|
|
|
|
%check
|
|
|
|
# path needs to be exported otherwise unit tests will fail
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir}
|
|
|
|
%ctest
|
|
|
|
|
|
|
|
%post -n libfmt%{sover} -p /sbin/ldconfig
|
|
|
|
%postun -n libfmt%{sover} -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -n libfmt%{sover}
|
|
|
|
%license LICENSE.rst
|
|
|
|
%{_libdir}/libfmt.so.%{sover}*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc ChangeLog.rst README.rst
|
|
|
|
%{_includedir}/%{name}
|
|
|
|
%{_libdir}/cmake/%{name}
|
|
|
|
%{_libdir}/libfmt.so
|
2019-03-26 09:29:23 +01:00
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
2018-12-06 10:03:10 +01:00
|
|
|
|
|
|
|
%changelog
|