Accepting request 1139988 from home:dirkmueller:Factory

- fix build for non-SUSE distributions

      The flags library now provides suggestions for the closest
  * minor warning fix
    hexadecimal strings
- Update to version 20190808

OBS-URL: https://build.opensuse.org/request/show/1139988
OBS-URL: https://build.opensuse.org/package/show/devel:microos/abseil-cpp?expand=0&rev=24
This commit is contained in:
Dan Čermák 2024-01-22 07:34:22 +00:00 committed by Git OBS Bridge
parent a9176ee102
commit f1649699e2
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jan 19 15:53:47 UTC 2024 - Dirk Müller <dmueller@suse.com>
- fix build for non-SUSE distributions
-------------------------------------------------------------------
Fri Oct 6 17:44:18 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
@ -68,7 +73,7 @@ Mon Apr 24 12:12:45 UTC 2023 - Adrian Schröter <adrian@suse.de>
A library for computing CRC32C checksums has been added.
Floating-point parsing now uses the Eisel-Lemire algorithm,
which provides a significant speed improvement.
The flags library now provides suggestions for the closest
The flags library now provides suggestions for the closest
flag(s) in the case of misspelled flags.
Using CMake to install Abseil now makes the installed artifacts
(in particular absl/base/options.h) reflect the compiled ABI.
@ -95,7 +100,7 @@ Mon Apr 24 12:12:45 UTC 2023 - Adrian Schröter <adrian@suse.de>
Sat Sep 24 13:47:49 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 20220623.1:
* minor warning fix
* minor warning fix
-------------------------------------------------------------------
Mon Jul 11 14:56:15 UTC 2022 - Bruno Pitrus <brunopitrus@hotmail.com>
@ -156,7 +161,7 @@ Tue Jan 4 18:55:41 UTC 2022 - Dirk Müller <dmueller@suse.com>
* absl::Cord is now implemented as a b-tree. The new implementation offers
improved performance in most workloads.
* absl::SimpleHexAtoi() has been added to strings library for parsing
hexadecimal strings
hexadecimal strings
-------------------------------------------------------------------
Wed Jun 30 11:18:51 UTC 2021 - Ferdinand Thiessen <rpm@fthiessen.de>
@ -256,7 +261,7 @@ Tue Jan 14 11:54:55 UTC 2020 - Dominique Leuenberger <dimstar@opensuse.org>
-------------------------------------------------------------------
Wed Dec 18 23:12:35 UTC 2019 - Swaminathan Vasudevan <svasudevan@suse.com>
- Update to version 20190808
- Update to version 20190808
-------------------------------------------------------------------
Sat Nov 23 21:26:12 UTC 2019 - Bernhard Wiedemann <bwiedemann@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package abseil-cpp
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -25,7 +25,7 @@ License: Apache-2.0
URL: https://abseil.io/
Source0: https://github.com/abseil/abseil-cpp/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: baselibs.conf
%if 0%{?suse_version} < 1500
%if 0%{?suse_version} && 0%{?suse_version} < 1500
BuildRequires: gcc7
BuildRequires: gcc7-c++
%else
@ -36,7 +36,7 @@ BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: pkgconfig
# PATCH-FIX-OPENSUSE options-{old,cxx17}.patch Ensure ABI stability regardless of compiler options
%if 0%{?suse_version} < 1550
%if 0%{?suse_version} && 0%{?suse_version} < 1550
Patch0: options-old.patch
Patch1: cmake.patch
%else
@ -71,7 +71,7 @@ This package contains headers and build system files for it.
%autosetup -p1
%build
%if 0%{?suse_version} < 1500
%if 0%{?suse_version} && 0%{?suse_version} < 1500
export CC="gcc-7"
export CXX="g++-7"
%endif