Compare commits
7 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a28815cce9 | ||
|
|
dfa9e68631 | ||
|
|
1db674ec9c | ||
|
|
c825cd247b | ||
|
|
77f3f23380 | ||
|
|
597be65ab2 | ||
|
|
c93a12f360 |
8 changed files with 284 additions and 345 deletions
17
.gitignore
vendored
17
.gitignore
vendored
|
|
@ -3,20 +3,3 @@
|
||||||
/abseil-cpp-20200923.3.tar.gz
|
/abseil-cpp-20200923.3.tar.gz
|
||||||
/abseil-cpp-20210324.2.tar.gz
|
/abseil-cpp-20210324.2.tar.gz
|
||||||
/abseil-cpp-20211102.0.tar.gz
|
/abseil-cpp-20211102.0.tar.gz
|
||||||
/abseil-cpp-20220623.0.tar.gz
|
|
||||||
/abseil-cpp-20220623.1.tar.gz
|
|
||||||
/abseil-cpp-20230125.1.tar.gz
|
|
||||||
/abseil-cpp-20230125.2.tar.gz
|
|
||||||
/abseil-cpp-20230125.3.tar.gz
|
|
||||||
/abseil-cpp-20230802.0.tar.gz
|
|
||||||
/abseil-cpp-20230802.1.tar.gz
|
|
||||||
/abseil-cpp-20240116.0.tar.gz
|
|
||||||
/abseil-cpp-20240116.2.tar.gz
|
|
||||||
/abseil-cpp-20240722.0.tar.gz
|
|
||||||
/abseil-cpp-20240722.1.tar.gz
|
|
||||||
/abseil-cpp-20250127.0.tar.gz
|
|
||||||
/abseil-cpp-20250127.1.tar.gz
|
|
||||||
/abseil-cpp-20250512.0.tar.gz
|
|
||||||
/abseil-cpp-20250512.1.tar.gz
|
|
||||||
/abseil-cpp-20250814.0.tar.gz
|
|
||||||
/abseil-cpp-20250814.1.tar.gz
|
|
||||||
|
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
From 8e8c72e1cb92d63aa2aaa7f9d8ccb059250928d1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
|
||||||
Date: Fri, 9 Jan 2026 07:37:42 +0000
|
|
||||||
Subject: [PATCH] =?UTF-8?q?Omit=20the=20=E2=80=9Cbind=E2=80=9D=20block=20i?=
|
|
||||||
=?UTF-8?q?n=20test=20Test=20Mutex::FunctorCondition?=
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Work around failure to compile with GCC 16,
|
|
||||||
https://github.com/abseil/abseil-cpp/issues/1992.
|
|
||||||
---
|
|
||||||
absl/synchronization/mutex_test.cc | 2 ++
|
|
||||||
1 file changed, 2 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/absl/synchronization/mutex_test.cc b/absl/synchronization/mutex_test.cc
|
|
||||||
index 793acf8c..7acd2e56 100644
|
|
||||||
--- a/absl/synchronization/mutex_test.cc
|
|
||||||
+++ b/absl/synchronization/mutex_test.cc
|
|
||||||
@@ -1022,6 +1022,7 @@ TEST(Mutex, FunctorCondition) {
|
|
||||||
EXPECT_TRUE(c.Eval());
|
|
||||||
}
|
|
||||||
|
|
||||||
+#if 0
|
|
||||||
{ // bind
|
|
||||||
int value = 0;
|
|
||||||
auto is_positive = std::bind(std::less<int>(), 0, std::cref(value));
|
|
||||||
@@ -1030,6 +1031,7 @@ TEST(Mutex, FunctorCondition) {
|
|
||||||
value = 1;
|
|
||||||
EXPECT_TRUE(c.Eval());
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
{ // std::function
|
|
||||||
int value = 3;
|
|
||||||
--
|
|
||||||
2.52.0
|
|
||||||
|
|
||||||
22
09e96049995584c3489e4bd1467313e3e85af99c.patch
Normal file
22
09e96049995584c3489e4bd1467313e3e85af99c.patch
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
From 09e96049995584c3489e4bd1467313e3e85af99c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Bruno Pitrus <brunopitrus@hotmail.com>
|
||||||
|
Date: Mon, 11 Jul 2022 18:27:39 +0200
|
||||||
|
Subject: [PATCH] Do not leak -maes -msse4.1 into pkgconfig
|
||||||
|
|
||||||
|
---
|
||||||
|
CMake/AbseilHelpers.cmake | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/CMake/AbseilHelpers.cmake b/CMake/AbseilHelpers.cmake
|
||||||
|
index ebe9ddc87..9cd87c513 100644
|
||||||
|
--- a/CMake/AbseilHelpers.cmake
|
||||||
|
+++ b/CMake/AbseilHelpers.cmake
|
||||||
|
@@ -166,6 +166,8 @@ function(absl_cc_library)
|
||||||
|
set(PC_CFLAGS "${PC_CFLAGS} ${cflag}")
|
||||||
|
elseif(${cflag} MATCHES "^(-W|/w[1234eo])")
|
||||||
|
# Don't impose our warnings on others.
|
||||||
|
+ elseif(${cflag} MATCHES "^-m")
|
||||||
|
+ # Don't impose CPU instruction requirements on others, as the code performs feature detection on runtime.
|
||||||
|
else()
|
||||||
|
set(PC_CFLAGS "${PC_CFLAGS} ${cflag}")
|
||||||
|
endif()
|
||||||
44
abseil-cpp-20211102.0-disable-nominalcpufrequency.patch
Normal file
44
abseil-cpp-20211102.0-disable-nominalcpufrequency.patch
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
From d984ddf1a64ce9fae36395b423cf6e52afc9a07a Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
||||||
|
Date: Wed, 16 Mar 2022 14:33:41 -0400
|
||||||
|
Subject: [PATCH] Disable SysinfoTest.NominalCPUFrequency
|
||||||
|
|
||||||
|
SysinfoTest.NominalCPUFrequency in absl_sysinfo_test fails occasionally
|
||||||
|
on aarch64, but see:
|
||||||
|
|
||||||
|
NominalCPUFrequency Test from SysInfoTest Suite Fails on M1 Mac
|
||||||
|
https://github.com/abseil/abseil-cpp/issues/1053#issuecomment-961432444
|
||||||
|
|
||||||
|
in which an upstream author opines:
|
||||||
|
|
||||||
|
If the only problem you are trying to solve is a failing test, this is safe
|
||||||
|
to ignore since this code is never called. I should consider stripping this
|
||||||
|
test out of the open source release. NominalCPUFrequency is only called in
|
||||||
|
code private to Google and we do have tests on the platforms we use it on.
|
||||||
|
|
||||||
|
We therefore disable it on all architectures, since any future failures
|
||||||
|
will also not be meaningful.
|
||||||
|
|
||||||
|
Note also that this test is removed upstream in commit
|
||||||
|
732b5580f089101ce4b8cdff55bb6461c59a6720 (internal commit
|
||||||
|
7e8da4f14afd25d11713eee6b743ba31605332bf).
|
||||||
|
---
|
||||||
|
absl/base/internal/sysinfo_test.cc | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/absl/base/internal/sysinfo_test.cc b/absl/base/internal/sysinfo_test.cc
|
||||||
|
index 5f9e45f..1a944f0 100644
|
||||||
|
--- a/absl/base/internal/sysinfo_test.cc
|
||||||
|
+++ b/absl/base/internal/sysinfo_test.cc
|
||||||
|
@@ -44,7 +44,7 @@ TEST(SysinfoTest, NumCPUs) {
|
||||||
|
// frequency, while others do not. Since we can't predict a priori what a given
|
||||||
|
// machine is going to do, just disable this test on POWER on Linux.
|
||||||
|
#if !(defined(__linux) && (defined(__ppc64__) || defined(__PPC64__)))
|
||||||
|
-TEST(SysinfoTest, NominalCPUFrequency) {
|
||||||
|
+TEST(SysinfoTest, DISABLED_NominalCPUFrequency) {
|
||||||
|
// Linux only exposes the CPU frequency on certain architectures, and
|
||||||
|
// Emscripten doesn't expose it at all.
|
||||||
|
#if defined(__linux__) && \
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
111
abseil-cpp-20211102.0-gtest-unreleased-features.patch
Normal file
111
abseil-cpp-20211102.0-gtest-unreleased-features.patch
Normal file
|
|
@ -0,0 +1,111 @@
|
||||||
|
diff -Naur abseil-cpp-20211102.0-original/absl/strings/internal/cord_rep_btree_test.cc abseil-cpp-20211102.0/absl/strings/internal/cord_rep_btree_test.cc
|
||||||
|
--- abseil-cpp-20211102.0-original/absl/strings/internal/cord_rep_btree_test.cc 2021-11-03 11:26:14.000000000 -0400
|
||||||
|
+++ abseil-cpp-20211102.0/absl/strings/internal/cord_rep_btree_test.cc 2021-12-17 08:44:54.254485697 -0500
|
||||||
|
@@ -59,7 +59,6 @@
|
||||||
|
using ::testing::_;
|
||||||
|
using ::testing::AllOf;
|
||||||
|
using ::testing::AnyOf;
|
||||||
|
-using ::testing::Conditional;
|
||||||
|
using ::testing::ElementsAre;
|
||||||
|
using ::testing::ElementsAreArray;
|
||||||
|
using ::testing::Eq;
|
||||||
|
@@ -381,7 +380,6 @@
|
||||||
|
flats.push_back(MakeHexFlat(i));
|
||||||
|
auto* result = CordRepBtree::Append(leaf, flats.back());
|
||||||
|
EXPECT_THAT(result->height(), Eq(0));
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(leaf), Eq(leaf)));
|
||||||
|
EXPECT_THAT(result->Edges(), ElementsAreArray(flats));
|
||||||
|
leaf = result;
|
||||||
|
}
|
||||||
|
@@ -399,7 +397,6 @@
|
||||||
|
flats.push_front(MakeHexFlat(i));
|
||||||
|
auto* result = CordRepBtree::Prepend(leaf, flats.front());
|
||||||
|
EXPECT_THAT(result->height(), Eq(0));
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(leaf), Eq(leaf)));
|
||||||
|
EXPECT_THAT(result->Edges(), ElementsAreArray(flats));
|
||||||
|
leaf = result;
|
||||||
|
}
|
||||||
|
@@ -426,7 +423,6 @@
|
||||||
|
result = CordRepBtree::Append(leaf, flats.back());
|
||||||
|
}
|
||||||
|
EXPECT_THAT(result->height(), Eq(0));
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(leaf), Eq(leaf)));
|
||||||
|
EXPECT_THAT(result->Edges(), ElementsAreArray(flats));
|
||||||
|
leaf = result;
|
||||||
|
}
|
||||||
|
@@ -483,7 +479,6 @@
|
||||||
|
flats.push_back(MakeHexFlat(i));
|
||||||
|
CordRepBtree* result = CordRepBtree::Append(tree, flats.back());
|
||||||
|
ASSERT_THAT(result, IsNode(1));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
std::vector<CordRep*> edges = GetLeafEdges(result);
|
||||||
|
ASSERT_THAT(edges, ElementsAreArray(flats));
|
||||||
|
tree = result;
|
||||||
|
@@ -514,7 +509,6 @@
|
||||||
|
flats.push_back(MakeHexFlat(i));
|
||||||
|
CordRepBtree* result = CordRepBtree::Append(tree, flats.back());
|
||||||
|
ASSERT_THAT(result, IsNode(2));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
std::vector<CordRep*> edges = GetLeafEdges(result);
|
||||||
|
ASSERT_THAT(edges, ElementsAreArray(flats));
|
||||||
|
tree = result;
|
||||||
|
@@ -544,7 +538,6 @@
|
||||||
|
flats.push_front(MakeHexFlat(i));
|
||||||
|
CordRepBtree* result = CordRepBtree::Prepend(tree, flats.front());
|
||||||
|
ASSERT_THAT(result, IsNode(1));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
std::vector<CordRep*> edges = GetLeafEdges(result);
|
||||||
|
ASSERT_THAT(edges, ElementsAreArray(flats));
|
||||||
|
tree = result;
|
||||||
|
@@ -575,7 +568,6 @@
|
||||||
|
flats.push_front(MakeHexFlat(i));
|
||||||
|
CordRepBtree* result = CordRepBtree::Prepend(tree, flats.front());
|
||||||
|
ASSERT_THAT(result, IsNode(2));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
std::vector<CordRep*> edges = GetLeafEdges(result);
|
||||||
|
ASSERT_THAT(edges, ElementsAreArray(flats));
|
||||||
|
tree = result;
|
||||||
|
@@ -889,7 +881,6 @@
|
||||||
|
for (size_t i = 1; i < n; ++i) {
|
||||||
|
refs.RefIf(shared(), leaf);
|
||||||
|
CordRepBtree* result = BtreeAdd(leaf, append, consumer.Next(3));
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(leaf), Eq(leaf)));
|
||||||
|
EXPECT_THAT(CordToString(result), Eq(consumer.Consumed()));
|
||||||
|
leaf = result;
|
||||||
|
}
|
||||||
|
@@ -905,9 +896,6 @@
|
||||||
|
CordRepBtree* leaf0 = tree->Edges()[0]->btree();
|
||||||
|
CordRepBtree* leaf1 = tree->Edges()[1]->btree();
|
||||||
|
CordRepBtree* result = CordRepBtree::Append(tree, "123456789");
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
- EXPECT_THAT(result->Edges(),
|
||||||
|
- ElementsAre(leaf0, Conditional(shared(), Ne(leaf1), Eq(leaf1))));
|
||||||
|
EXPECT_THAT(CordToString(result), Eq(data + "123456789"));
|
||||||
|
CordRep::Unref(result);
|
||||||
|
}
|
||||||
|
@@ -920,9 +908,6 @@
|
||||||
|
CordRepBtree* leaf0 = tree->Edges()[0]->btree();
|
||||||
|
CordRepBtree* leaf1 = tree->Edges()[1]->btree();
|
||||||
|
CordRepBtree* result = CordRepBtree::Prepend(tree, "123456789");
|
||||||
|
- EXPECT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
- EXPECT_THAT(result->Edges(),
|
||||||
|
- ElementsAre(Conditional(shared(), Ne(leaf0), Eq(leaf0)), leaf1));
|
||||||
|
EXPECT_THAT(CordToString(result), Eq("123456789" + data));
|
||||||
|
CordRep::Unref(result);
|
||||||
|
}
|
||||||
|
@@ -954,7 +939,6 @@
|
||||||
|
for (size_t i = max_cap + 1; i < max_cap * max_cap; ++i) {
|
||||||
|
refs.RefIf(shared(), tree);
|
||||||
|
result = BtreeAdd(tree, append, consumer.Next(3));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
ASSERT_THAT(CordToString(result), Eq(consumer.Consumed()));
|
||||||
|
tree = result;
|
||||||
|
}
|
||||||
|
@@ -970,7 +954,6 @@
|
||||||
|
++i) {
|
||||||
|
refs.RefIf(shared(), tree);
|
||||||
|
result = BtreeAdd(tree, append, consumer.Next(3));
|
||||||
|
- ASSERT_THAT(result, Conditional(shared(), Ne(tree), Eq(tree)));
|
||||||
|
ASSERT_THAT(CordToString(result), Eq(consumer.Consumed()));
|
||||||
|
tree = result;
|
||||||
|
}
|
||||||
254
abseil-cpp.spec
254
abseil-cpp.spec
|
|
@ -1,9 +1,9 @@
|
||||||
# Installed library version
|
# Installed library version
|
||||||
%global lib_version 2508.0.0
|
%global lib_version 2111.0.0
|
||||||
|
|
||||||
Name: abseil-cpp
|
Name: abseil-cpp
|
||||||
Version: 20250814.1
|
Version: 20211102.0
|
||||||
Release: %autorelease
|
Release: 4%{?dist}
|
||||||
Summary: C++ Common Libraries
|
Summary: C++ Common Libraries
|
||||||
|
|
||||||
# The entire source is Apache-2.0, except:
|
# The entire source is Apache-2.0, except:
|
||||||
|
|
@ -22,13 +22,40 @@ Summary: C++ Common Libraries
|
||||||
# (https://gitlab.com/fedora/legal/fedora-license-data/-/merge_requests/205).
|
# (https://gitlab.com/fedora/legal/fedora-license-data/-/merge_requests/205).
|
||||||
License: Apache-2.0 AND LicenseRef-Fedora-Public-Domain
|
License: Apache-2.0 AND LicenseRef-Fedora-Public-Domain
|
||||||
URL: https://abseil.io
|
URL: https://abseil.io
|
||||||
Source: https://github.com/abseil/abseil-cpp/archive/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/abseil/abseil-cpp/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
# Omit the “bind” block in test Test Mutex::FunctorCondition
|
# Remove test assertions that use ::testing::Conditional, which is not in a
|
||||||
|
# released version of GTest. Not submitted upstream, as this is a workaround
|
||||||
|
# rather than a fix. https://github.com/abseil/abseil-cpp/issues/1063
|
||||||
|
Patch: abseil-cpp-20211102.0-gtest-unreleased-features.patch
|
||||||
|
# SysinfoTest.NominalCPUFrequency in absl_sysinfo_test fails occasionally
|
||||||
|
# on aarch64, but see:
|
||||||
#
|
#
|
||||||
# Work around failure to compile with GCC 16,
|
# NominalCPUFrequency Test from SysInfoTest Suite Fails on M1 Mac
|
||||||
# https://github.com/abseil/abseil-cpp/issues/1992.
|
# https://github.com/abseil/abseil-cpp/issues/1053#issuecomment-961432444
|
||||||
Patch: 0001-Omit-the-bind-block-in-test-Test-Mutex-FunctorCondit.patch
|
#
|
||||||
|
# in which an upstream author opines:
|
||||||
|
#
|
||||||
|
# If the only problem you are trying to solve is a failing test, this is safe
|
||||||
|
# to ignore since this code is never called. I should consider stripping this
|
||||||
|
# test out of the open source release. NominalCPUFrequency is only called in
|
||||||
|
# code private to Google and we do have tests on the platforms we use it on.
|
||||||
|
#
|
||||||
|
# We therefore disable it on all architectures, since any future failures
|
||||||
|
# will also not be meaningful.
|
||||||
|
#
|
||||||
|
# Note also that this test is removed upstream in commit
|
||||||
|
# 732b5580f089101ce4b8cdff55bb6461c59a6720 (internal commit
|
||||||
|
# 7e8da4f14afd25d11713eee6b743ba31605332bf).
|
||||||
|
Patch: abseil-cpp-20211102.0-disable-nominalcpufrequency.patch
|
||||||
|
# Backport upstream commit 09e96049995584c3489e4bd1467313e3e85af99c, which
|
||||||
|
# corresponds to:
|
||||||
|
#
|
||||||
|
# Do not leak -maes -msse4.1 into pkgconfig
|
||||||
|
# https://github.com/abseil/abseil-cpp/pull/1216
|
||||||
|
#
|
||||||
|
# Fixes RHBZ#2108658.
|
||||||
|
Patch: https://github.com/abseil/abseil-cpp/commit/09e96049995584c3489e4bd1467313e3e85af99c.patch
|
||||||
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
# The default make backend would work just as well; ninja is observably faster
|
# The default make backend would work just as well; ninja is observably faster
|
||||||
|
|
@ -72,19 +99,9 @@ Abseil is not meant to be a competitor to the standard library; we've just
|
||||||
found that many of these utilities serve a purpose within our code base,
|
found that many of these utilities serve a purpose within our code base,
|
||||||
and we now want to provide those resources to the C++ community as a whole.
|
and we now want to provide those resources to the C++ community as a whole.
|
||||||
|
|
||||||
%package testing
|
|
||||||
Summary: Libraries needed for running tests on the installed %{name}
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
Provides: bundled(cctz)
|
|
||||||
|
|
||||||
%description testing
|
|
||||||
%{summary}.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Requires: %{name}-testing%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
# Some of the headers from CCTZ are part of the -devel subpackage. See the
|
# Some of the headers from CCTZ are part of the -devel subpackage. See the
|
||||||
# corresponding virtual Provides in the base package for full details.
|
# corresponding virtual Provides in the base package for full details.
|
||||||
|
|
@ -96,17 +113,24 @@ Development headers for %{name}
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -S gendiff
|
%autosetup -p1 -S gendiff
|
||||||
|
|
||||||
|
# Replace GTEST_FLAG_GET, which is not in a released version of GTest, with an
|
||||||
|
# appropriate default value. Not submitted upstream, as this is a workaround
|
||||||
|
# rather than a fix. https://github.com/abseil/abseil-cpp/issues/1063
|
||||||
|
#
|
||||||
|
# The find-then-sed pattern means we only discard mtimes on files that actually
|
||||||
|
# needed to be modified.
|
||||||
|
find . -type f -name '*.cc' \
|
||||||
|
-exec gawk '/GTEST_FLAG_GET/ { print FILENAME ; nextfile }' '{}' '+' |
|
||||||
|
xargs -r -t sed -r -i 's/GTEST_FLAG_GET/::testing::GTEST_FLAG/g'
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# ABSL_BUILD_TEST_HELPERS is needed to build libraries for the -testing
|
|
||||||
# subpackage when tests are not enabled. It is therefore redundant here, but we
|
|
||||||
# still supply it to be more explicit.
|
|
||||||
%cmake \
|
%cmake \
|
||||||
-GNinja \
|
-GNinja \
|
||||||
-DABSL_USE_EXTERNAL_GOOGLETEST:BOOL=ON \
|
-DABSL_USE_EXTERNAL_GOOGLETEST:BOOL=ON \
|
||||||
-DABSL_FIND_GOOGLETEST:BOOL=ON \
|
-DABSL_FIND_GOOGLETEST:BOOL=ON \
|
||||||
-DABSL_ENABLE_INSTALL:BOOL=ON \
|
-DABSL_ENABLE_INSTALL:BOOL=ON \
|
||||||
-DABSL_BUILD_TESTING:BOOL=ON \
|
-DBUILD_TESTING:BOOL=ON \
|
||||||
-DABSL_BUILD_TEST_HELPERS:BOOL=ON \
|
|
||||||
-DCMAKE_BUILD_TYPE:STRING=None \
|
-DCMAKE_BUILD_TYPE:STRING=None \
|
||||||
-DCMAKE_CXX_STANDARD:STRING=17
|
-DCMAKE_CXX_STANDARD:STRING=17
|
||||||
%cmake_build
|
%cmake_build
|
||||||
|
|
@ -122,10 +146,6 @@ skips='^($.'
|
||||||
# Fedora
|
# Fedora
|
||||||
# https://github.com/abseil/abseil-cpp/issues/1804
|
# https://github.com/abseil/abseil-cpp/issues/1804
|
||||||
skips="${skips}|absl_failure_signal_handler_test"
|
skips="${skips}|absl_failure_signal_handler_test"
|
||||||
# [Bug]: StackTrace.NestedSignal in absl_stacktrace_test fails on ppc64le since
|
|
||||||
# 20250184.0
|
|
||||||
# https://github.com/abseil/abseil-cpp/issues/1925
|
|
||||||
skips="${skips}|absl_stacktrace_test"
|
|
||||||
%endif
|
%endif
|
||||||
skips="${skips})$"
|
skips="${skips})$"
|
||||||
|
|
||||||
|
|
@ -134,129 +154,67 @@ skips="${skips})$"
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc FAQ.md README.md UPGRADES.md
|
%doc FAQ.md README.md UPGRADES.md
|
||||||
# All shared libraries except installed TESTONLY libraries; see the %%files
|
%{_libdir}/libabsl_*.so.%{lib_version}
|
||||||
# list for the -testing subpackage for those.
|
|
||||||
%{_libdir}/libabsl_base.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_city.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_civil_time.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cord.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cord_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cordz_functions.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cordz_handle.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cordz_info.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_cordz_sample_token.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_crc32c.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_crc_cord_state.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_crc_cpu_detect.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_crc_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_debugging_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_decode_rust_punycode.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_demangle_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_demangle_rust.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_die_if_null.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_examine_stack.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_exponential_biased.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_failure_signal_handler.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_commandlineflag.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_commandlineflag_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_config.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_marshalling.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_parse.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_private_handle_accessor.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_program_name.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_reflection.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_usage.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_flags_usage_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_graphcycles_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_hash.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_hashtablez_sampler.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_hashtable_profiler.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_int128.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_kernel_timeout_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_leak_check.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_entry.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_flags.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_globals.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_initialize.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_check_op.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_conditions.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_fnmatch.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_format.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_globals.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_log_sink_set.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_message.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_nullguard.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_proto.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_structured_proto.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_severity.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_sink.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_malloc_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_periodic_sampler.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_poison.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_profile_builder.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_distributions.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_distribution_test_util.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_entropy_pool.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_platform.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_randen.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_randen_hwaes.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_randen_hwaes_impl.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_randen_slow.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_internal_seed_material.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_seed_gen_exception.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_random_seed_sequences.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_raw_hash_set.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_raw_logging_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_scoped_set_env.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_spinlock_wait.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_stacktrace.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_status.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_statusor.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_str_format_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_strerror.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_strings.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_strings_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_string_view.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_symbolize.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_synchronization.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_throw_delegate.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_time.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_time_zone.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_tracing_internal.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_utf8_for_code_point.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_vlog_config_internal.so.%{lib_version}
|
|
||||||
|
|
||||||
%files testing
|
|
||||||
# TESTONLY libraries (that are actually installed):
|
|
||||||
# absl/base/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_exception_safety_testing.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_atomic_hook_test_helper.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_spinlock_test_common.so.%{lib_version}
|
|
||||||
# absl/container/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_test_instance_tracker.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_hash_generator_testing.so.%{lib_version}
|
|
||||||
# absl/debugging/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_stack_consumption.so.%{lib_version}
|
|
||||||
# absl/log/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_log_internal_test_actions.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_test_helpers.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_log_internal_test_matchers.so.%{lib_version}
|
|
||||||
%{_libdir}/libabsl_scoped_mock_log.so.%{lib_version}
|
|
||||||
# absl/status/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_status_matchers.so.%{lib_version}
|
|
||||||
# absl/strings/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_pow10_helper.so.%{lib_version}
|
|
||||||
# absl/synchronization/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_per_thread_sem_test_common.so.%{lib_version}
|
|
||||||
# absl/time/CMakeLists.txt
|
|
||||||
%{_libdir}/libabsl_time_internal_test_util.so.%{lib_version}
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/absl
|
%{_includedir}/absl
|
||||||
%{_libdir}/libabsl_*.so
|
%{_libdir}/libabsl_*.so
|
||||||
%{_libdir}/cmake/absl
|
%{_libdir}/cmake/absl
|
||||||
%{_libdir}/pkgconfig/absl_*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
%autochangelog
|
* Sat Jan 25 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-4
|
||||||
|
- Update License to SPDX
|
||||||
|
- Indicate CCTZ bundling
|
||||||
|
- Report and skip a test regression on ppc64le
|
||||||
|
|
||||||
|
* Fri Jul 29 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-3
|
||||||
|
- Do not leak -maes -msse4.1 into pkgconfig (fix RHBZ#2108658)
|
||||||
|
|
||||||
|
* Tue Mar 15 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-2
|
||||||
|
- Disable LTO on s390x to work around test failure
|
||||||
|
- Skip SysinfoTest.NominalCPUFrequency on all architectures; it fails
|
||||||
|
occasionally on aarch64, and upstream says we should not care
|
||||||
|
|
||||||
|
* Fri Feb 18 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-1
|
||||||
|
- Update to 20211102.0 (close RHBZ#2019691)
|
||||||
|
- Drop --output-on-failure, already in %%ctest expansion
|
||||||
|
- On s390x, instead of ignoring all tests, skip only the single failing test
|
||||||
|
- Use ninja backend for CMake: speeds up build with no downsides
|
||||||
|
- Drop patch for armv7hl
|
||||||
|
|
||||||
|
* Mon Jan 31 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20210324.2-4
|
||||||
|
- Fix test failure (fix RHBZ#2045186)
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 21 2021 Rich Mattes <richmattes@gmail.com> - 20210324.1-2
|
||||||
|
- Update to release 20210324.2
|
||||||
|
- Enable and run test suite
|
||||||
|
|
||||||
|
* Mon Mar 08 2021 Rich Mattes <richmattes@gmail.com> - 20200923.3-1
|
||||||
|
- Update to release 20200923.3
|
||||||
|
|
||||||
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20200923.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 19 2020 Rich Mattes <richmattes@gmail.com> - 20200923.2-1
|
||||||
|
- Update to release 20200923.2
|
||||||
|
- Rebuild to fix tagging in koji (rhbz#1885561)
|
||||||
|
|
||||||
|
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-4
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-2
|
||||||
|
- Don't remove buildroot in install
|
||||||
|
|
||||||
|
* Sun May 24 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-1
|
||||||
|
- Initial package.
|
||||||
|
|
|
||||||
141
changelog
141
changelog
|
|
@ -1,141 +0,0 @@
|
||||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 20250512.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu May 15 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20250512.0-1
|
|
||||||
- Update to 20250512.0 (close RHBZ#2366373)
|
|
||||||
|
|
||||||
* Wed Mar 19 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20250127.1-1
|
|
||||||
- Update to 20250127.1 (close RHBZ#2353223)
|
|
||||||
|
|
||||||
* Tue Feb 04 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20250127.0-1
|
|
||||||
- Update to 20250127.0 (close RHBZ#2343779)
|
|
||||||
|
|
||||||
* Fri Jan 24 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20240722.1-1
|
|
||||||
- Update to 20240722.1 (close RHBZ#2341808)
|
|
||||||
|
|
||||||
* Wed Jan 22 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20240722.0-5
|
|
||||||
- Rebuilt for gtest 1.15.2
|
|
||||||
|
|
||||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 20240722.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 09 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20240722.0-3
|
|
||||||
- Patch for GCC 15 (fix RHBZ#2336266)
|
|
||||||
|
|
||||||
* Wed Jan 08 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 20240722.0-2
|
|
||||||
- Report and skip a test regression on ppc64le
|
|
||||||
|
|
||||||
* Sat Aug 03 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 20240722.0-1
|
|
||||||
- Update to 20240722.0 (close RHBZ#2302537)
|
|
||||||
|
|
||||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20240116.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 03 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 20240116.2-3
|
|
||||||
- Rebuilt with upstream patch for NegativeNaN test failure on riscv64
|
|
||||||
|
|
||||||
* Wed May 29 2024 David Abdurachmanov <davidlt@rivosinc.com> - 20240116.2-2
|
|
||||||
- Disable NegativeNaN test on riscv64
|
|
||||||
|
|
||||||
* Tue Apr 09 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 20240116.2-1
|
|
||||||
- Update to 20240116.2 (close RHBZ#2274172)
|
|
||||||
|
|
||||||
* Wed Jan 24 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 20240116.0-1
|
|
||||||
- Update to 20240116.0
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20230802.1-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20230802.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Oct 31 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230802.1-2
|
|
||||||
- Rebuild for gtest 1.14.0
|
|
||||||
|
|
||||||
* Wed Sep 20 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230802.1-1
|
|
||||||
- Update to 20230802.1 (close RHBZ#2239814)
|
|
||||||
|
|
||||||
* Thu Aug 10 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230802.0-1
|
|
||||||
- Update to 20230802.0 (Abseil LTS branch, Aug 2023): close RHBZ#2229015
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20230125.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 09 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.3-1
|
|
||||||
- Update to 20230125.3 (close RHBZ#2193306)
|
|
||||||
- Split installed TESTONLY libraries into a -testing subpackage; explicitly
|
|
||||||
list all installed shared libraries
|
|
||||||
- Explicitly enable the ABSL_BUILD_TEST_HELPERS CMake option
|
|
||||||
|
|
||||||
* Thu Mar 30 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.2-1
|
|
||||||
- Update to 20230125.2 (close RHBZ#2182229)
|
|
||||||
|
|
||||||
* Thu Feb 23 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.1-1
|
|
||||||
- Update to 20230125.1 (close RHBZ#2162638)
|
|
||||||
|
|
||||||
* Sat Jan 21 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.1-4
|
|
||||||
- Backport upstream commit 4eef161 for GCC 13
|
|
||||||
|
|
||||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20220623.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Sep 02 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.1-2
|
|
||||||
- Update to 20220623.1 (close RHBZ#2123181)
|
|
||||||
|
|
||||||
* Sat Aug 13 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.0-1
|
|
||||||
- Update to 20220623.0 (close RHBZ#2101021)
|
|
||||||
- Update License to SPDX
|
|
||||||
|
|
||||||
* Fri Jul 29 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-4
|
|
||||||
- Do not leak -maes -msse4.1 into pkgconfig (fix RHBZ#2108658)
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20211102.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Mar 15 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-2
|
|
||||||
- Disable LTO on s390x to work around test failure
|
|
||||||
- Skip SysinfoTest.NominalCPUFrequency on all architectures; it fails
|
|
||||||
occasionally on aarch64, and upstream says we should not care
|
|
||||||
|
|
||||||
* Fri Feb 18 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-1
|
|
||||||
- Update to 20211102.0 (close RHBZ#2019691)
|
|
||||||
- Drop --output-on-failure, already in %%ctest expansion
|
|
||||||
- On s390x, instead of ignoring all tests, skip only the single failing test
|
|
||||||
- Use ninja backend for CMake: speeds up build with no downsides
|
|
||||||
- Drop patch for armv7hl
|
|
||||||
|
|
||||||
* Mon Jan 31 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20210324.2-4
|
|
||||||
- Fix test failure (fix RHBZ#2045186)
|
|
||||||
|
|
||||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 21 2021 Rich Mattes <richmattes@gmail.com> - 20210324.1-2
|
|
||||||
- Update to release 20210324.2
|
|
||||||
- Enable and run test suite
|
|
||||||
|
|
||||||
* Mon Mar 08 2021 Rich Mattes <richmattes@gmail.com> - 20200923.3-1
|
|
||||||
- Update to release 20200923.3
|
|
||||||
|
|
||||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20200923.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Dec 19 2020 Rich Mattes <richmattes@gmail.com> - 20200923.2-1
|
|
||||||
- Update to release 20200923.2
|
|
||||||
- Rebuild to fix tagging in koji (rhbz#1885561)
|
|
||||||
|
|
||||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-4
|
|
||||||
- Second attempt - Rebuilt for
|
|
||||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 27 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-2
|
|
||||||
- Don't remove buildroot in install
|
|
||||||
|
|
||||||
* Sun May 24 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-1
|
|
||||||
- Initial package.
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (abseil-cpp-20250814.1.tar.gz) = 7083b73c3cf763f6f7a7edb70a5171f44d27045a0f5e52ca043e0a86379af2c50cf85dbfea30ebaa22a7bb2929452581d26b1ba18945023b057267d4c3bad2f7
|
SHA512 (abseil-cpp-20211102.0.tar.gz) = fed68aa434c02ec6faa9d1c81f1ad35b60ec024b44957e2e0ac31e6075e385c06a3e1b616afeb4bb7c2413191fd7827d82e1f9f0796b52ed21fb2c41dd9031cf
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue