Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package abseil-cpp for openSUSE:Factory 
checked in at 2023-04-25 16:54:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/abseil-cpp (Old)
 and      /work/SRC/openSUSE:Factory/.abseil-cpp.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "abseil-cpp"

Tue Apr 25 16:54:08 2023 rev:27 rq:1082518 version:20230125.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/abseil-cpp/abseil-cpp.changes    2022-10-01 
17:41:48.197522153 +0200
+++ /work/SRC/openSUSE:Factory/.abseil-cpp.new.1533/abseil-cpp.changes  
2023-04-25 16:54:09.830612454 +0200
@@ -1,0 +2,39 @@
+Mon Apr 24 12:12:45 UTC 2023 - Adrian Schröter <[email protected]>
+
+- update to 20230125.2
+  What's New:
+    The Abseil logging library has been released. This library
+    provides facilities for writing short text messages about the
+    status of a program to stderr, disk files, or other sinks
+    (via an extension API). See the logging library documentation
+    for more information.
+      An extension point, AbslStringify(), allows user-defined types
+    to seamlessly work with Abseil's string formatting functions
+    like absl::StrCat() and absl::StrFormat().
+      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 
+    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.
+
+  Breaking Changes:
+    Abseil now requires at least C++14 and follows Google's Foundational
+    C++ Support Policy. See this table for a list of currently supported
+    versions compilers, platforms, and build tools.
+      The legacy spellings of the thread annotation macros/functions
+    (e.g. GUARDED_BY()) have been removed by default in favor of the
+    ABSL_ prefixed versions (e.g. ABSL_GUARDED_BY()) due to clashes with
+    other libraries. The compatibility macro ABSL_LEGACY_THREAD_ANNOTATIONS
+    can be defined on the compile command-line to temporarily restore these
+    spellings, but this compatibility macro will be removed in the future.
+
+  Known Issues
+    The Abseil logging library in this release is not a feature-complete
+    replacement for glog yet. VLOG and DFATAL are examples of features
+    that have not yet been released.
+
+- obsolete Fix-maes-msse41-leaking-into-pkgconfig.patch
+
+-------------------------------------------------------------------

Old:
----
  Fix-maes-msse41-leaking-into-pkgconfig.patch
  abseil-cpp-20220623.1.tar.gz

New:
----
  abseil-cpp-20230125.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ abseil-cpp.spec ++++++
--- /var/tmp/diff_new_pack.Qt8OqN/_old  2023-04-25 16:54:10.502619381 +0200
+++ /var/tmp/diff_new_pack.Qt8OqN/_new  2023-04-25 16:54:10.510619464 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package abseil-cpp
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
 #
 
 
-%define lname  libabsl2206_0_0
+%define lname  libabsl2301_0_0
 Name:           abseil-cpp
-Version:        20220623.1
+Version:        20230125.2
 Release:        0
 Summary:        C++11 libraries which augment the C++ stdlib
 License:        Apache-2.0
@@ -34,8 +34,6 @@
 %else
 Patch0:         options-cxx17.patch
 %endif
-# PATCH-FIX-UPSTREAM Fix-maes-msse41-leaking-into-pkgconfig.patch
-Patch1:         Fix-maes-msse41-leaking-into-pkgconfig.patch
 
 %description
 Abseil is a collection of C++11 libraries which augment the C++

++++++ abseil-cpp-20220623.1.tar.gz -> abseil-cpp-20230125.2.tar.gz ++++++
++++ 52512 lines of diff (skipped)

++++++ options-cxx17.patch ++++++
--- /var/tmp/diff_new_pack.Qt8OqN/_old  2023-04-25 16:54:11.022624742 +0200
+++ /var/tmp/diff_new_pack.Qt8OqN/_new  2023-04-25 16:54:11.026624783 +0200
@@ -3,9 +3,11 @@
 This version of patch is for new systems (Tumbleweed) where Abseil is built 
with C++17 support.
 For more information, see “notice for package managers” in options.h
 
---- a/absl/base/options.h      2021-11-03 16:26:14.000000000 +0100
-+++ b/absl/base/options.h      2022-06-28 22:49:52.830727200 +0200
-@@ -100,7 +100,7 @@
+Index: abseil-cpp-20230125.2/absl/base/options.h
+===================================================================
+--- abseil-cpp-20230125.2.orig/absl/base/options.h
++++ abseil-cpp-20230125.2/absl/base/options.h
+@@ -94,7 +94,7 @@
  // User code should not inspect this macro.  To check in the preprocessor if
  // absl::any is a typedef of std::any, use the feature macro 
ABSL_USES_STD_ANY.
  
@@ -14,7 +16,7 @@
  
  
  // ABSL_OPTION_USE_STD_OPTIONAL
-@@ -127,7 +127,7 @@
+@@ -121,7 +121,7 @@
  // absl::optional is a typedef of std::optional, use the feature macro
  // ABSL_USES_STD_OPTIONAL.
  
@@ -23,7 +25,7 @@
  
  
  // ABSL_OPTION_USE_STD_STRING_VIEW
-@@ -154,7 +154,7 @@
+@@ -148,7 +148,7 @@
  // absl::string_view is a typedef of std::string_view, use the feature macro
  // ABSL_USES_STD_STRING_VIEW.
  
@@ -32,7 +34,7 @@
  
  // ABSL_OPTION_USE_STD_VARIANT
  //
-@@ -180,7 +180,7 @@
+@@ -174,7 +174,7 @@
  // absl::variant is a typedef of std::variant, use the feature macro
  // ABSL_USES_STD_VARIANT.
  

Reply via email to