Compare commits
23 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5dc15e5f19 | ||
|
|
893317922c | ||
|
|
07413ab010 | ||
|
|
5205ac8ad2 | ||
|
|
b637f17a22 | ||
|
|
cd61e639b5 | ||
|
|
d3dff91b47 | ||
|
|
c492497a4f | ||
|
|
b3c8ea51b1 | ||
|
|
8820887069 | ||
|
|
0e3dfdaeae | ||
|
|
a129e5dcf7 | ||
|
|
3c0947e8e6 | ||
|
|
0a5109b6ad | ||
|
|
f73b91d988 | ||
|
|
06fd1bd32e | ||
|
|
ca0a3d5d75 | ||
|
|
33a4b5c728 | ||
|
|
d96a8dec9b | ||
|
|
75c58ab1c6 | ||
|
|
8c7c252cff | ||
|
|
dd755b6b6a | ||
|
|
2f3f17bf9e |
5 changed files with 224 additions and 113 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -12,3 +12,11 @@
|
|||
/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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,38 @@
|
|||
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
|
||||
|
||||
148
abseil-cpp.spec
148
abseil-cpp.spec
|
|
@ -1,9 +1,9 @@
|
|||
# Installed library version
|
||||
%global lib_version 2401.0.0
|
||||
%global lib_version 2508.0.0
|
||||
|
||||
Name: abseil-cpp
|
||||
Version: 20240116.2
|
||||
Release: 1%{?dist}
|
||||
Version: 20250814.1
|
||||
Release: %autorelease
|
||||
Summary: C++ Common Libraries
|
||||
|
||||
# The entire source is Apache-2.0, except:
|
||||
|
|
@ -22,7 +22,13 @@ Summary: C++ Common Libraries
|
|||
# (https://gitlab.com/fedora/legal/fedora-license-data/-/merge_requests/205).
|
||||
License: Apache-2.0 AND LicenseRef-Fedora-Public-Domain
|
||||
URL: https://abseil.io
|
||||
Source0: https://github.com/abseil/abseil-cpp/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
Source: https://github.com/abseil/abseil-cpp/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
# Omit the “bind” block in test Test Mutex::FunctorCondition
|
||||
#
|
||||
# Work around failure to compile with GCC 16,
|
||||
# https://github.com/abseil/abseil-cpp/issues/1992.
|
||||
Patch: 0001-Omit-the-bind-block-in-test-Test-Mutex-FunctorCondit.patch
|
||||
|
||||
BuildRequires: cmake
|
||||
# The default make backend would work just as well; ninja is observably faster
|
||||
|
|
@ -110,16 +116,26 @@ Development headers for %{name}
|
|||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest
|
||||
skips='^($.'
|
||||
%ifarch ppc64le
|
||||
# [Bug]: Flaky test failures in absl_failure_signal_handler_test on ppc64le in
|
||||
# Fedora
|
||||
# https://github.com/abseil/abseil-cpp/issues/1804
|
||||
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
|
||||
skips="${skips})$"
|
||||
|
||||
%ctest --exclude-regex "${skips}"
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc FAQ.md README.md UPGRADES.md
|
||||
# All shared libraries except installed TESTONLY libraries; see the %%files
|
||||
# list for the -testing subpackage for those.
|
||||
%{_libdir}/libabsl_bad_any_cast_impl.so.%{lib_version}
|
||||
%{_libdir}/libabsl_bad_optional_access.so.%{lib_version}
|
||||
%{_libdir}/libabsl_bad_variant_access.so.%{lib_version}
|
||||
%{_libdir}/libabsl_base.so.%{lib_version}
|
||||
%{_libdir}/libabsl_city.so.%{lib_version}
|
||||
%{_libdir}/libabsl_civil_time.so.%{lib_version}
|
||||
|
|
@ -134,7 +150,9 @@ Development headers for %{name}
|
|||
%{_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}
|
||||
|
|
@ -153,6 +171,7 @@ Development headers for %{name}
|
|||
%{_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}
|
||||
|
|
@ -169,15 +188,17 @@ Development headers for %{name}
|
|||
%{_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_low_level_hash.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_pool_urbg.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}
|
||||
|
|
@ -202,6 +223,8 @@ Development headers for %{name}
|
|||
%{_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
|
||||
|
|
@ -220,6 +243,8 @@ Development headers for %{name}
|
|||
%{_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
|
||||
|
|
@ -234,105 +259,4 @@ Development headers for %{name}
|
|||
%{_libdir}/pkgconfig/absl_*.pc
|
||||
|
||||
%changelog
|
||||
* 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.
|
||||
%autochangelog
|
||||
|
|
|
|||
141
changelog
Normal file
141
changelog
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
* 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-20240116.2.tar.gz) = 5062e731ee8c9a757e6d75fc1c558652deb4dd1daab4d6143f7ad52a139501c61365f89acbf82480be0f9a4911a58286560068d8b1a8b6774e6afad51739766e
|
||||
SHA512 (abseil-cpp-20250814.1.tar.gz) = 7083b73c3cf763f6f7a7edb70a5171f44d27045a0f5e52ca043e0a86379af2c50cf85dbfea30ebaa22a7bb2929452581d26b1ba18945023b057267d4c3bad2f7
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue