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 2021-04-27 21:35:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/abseil-cpp (Old)
 and      /work/SRC/openSUSE:Factory/.abseil-cpp.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "abseil-cpp"

Tue Apr 27 21:35:08 2021 rev:18 rq:888697 version:20210324.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/abseil-cpp/abseil-cpp.changes    2021-04-19 
21:06:49.324103376 +0200
+++ /work/SRC/openSUSE:Factory/.abseil-cpp.new.12324/abseil-cpp.changes 
2021-04-27 21:35:34.120073318 +0200
@@ -1,0 +2,8 @@
+Sun Apr 25 05:42:19 UTC 2021 - Ferdinand Thiessen <[email protected]>
+
+- Update to LTS version 20210324.1
+  * Fixed missing absl::Cleanup
+  * Fixed pkgconfig install path
+- Dropped upstream merged Correctly-install-pkgconfig.patch
+
+-------------------------------------------------------------------

Old:
----
  Correctly-install-pkgconfig.patch
  abseil-cpp-20210324.0.tar.gz

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

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

Other differences:
------------------
++++++ abseil-cpp.spec ++++++
--- /var/tmp/diff_new_pack.VbyNzK/_old  2021-04-27 21:35:34.576074068 +0200
+++ /var/tmp/diff_new_pack.VbyNzK/_new  2021-04-27 21:35:34.580074075 +0200
@@ -17,14 +17,12 @@
 
 
 Name:           abseil-cpp
-Version:        20210324.0
+Version:        20210324.1
 Release:        0
 Summary:        C++11 libraries which augment the C++ stdlib
 License:        Apache-2.0
 URL:            https://abseil.io/
 Source0:        
https://github.com/abseil/abseil-cpp/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM Correctly-install-pkgconfig.patch -- 
https://github.com/abseil/abseil-cpp/commit/7f4d0ba0be4c70fd71eb4c08a6422c8c2f7faa0b
-Patch0:         Correctly-install-pkgconfig.patch
 BuildRequires:  c++_compiler
 BuildRequires:  cmake
 BuildRequires:  fdupes

++++++ abseil-cpp-20210324.0.tar.gz -> abseil-cpp-20210324.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/abseil-cpp-20210324.0/CMake/AbseilHelpers.cmake 
new/abseil-cpp-20210324.1/CMake/AbseilHelpers.cmake
--- old/abseil-cpp-20210324.0/CMake/AbseilHelpers.cmake 2021-03-25 
14:27:44.000000000 +0100
+++ new/abseil-cpp-20210324.1/CMake/AbseilHelpers.cmake 2021-04-20 
18:55:14.000000000 +0200
@@ -181,7 +181,7 @@
 Libs: -L\${libdir} $<JOIN:${ABSL_CC_LIB_LINKOPTS}, > 
$<$<NOT:$<BOOL:${ABSL_CC_LIB_IS_INTERFACE}>>:-labsl_${_NAME}>\n\
 Cflags: -I\${includedir}${PC_CFLAGS}\n")
       INSTALL(FILES "${CMAKE_BINARY_DIR}/lib/pkgconfig/absl_${_NAME}.pc"
-              DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
+              DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
     endif()
   endif()
 
@@ -263,7 +263,7 @@
     if(ABSL_ENABLE_INSTALL)
       set_target_properties(${_NAME} PROPERTIES
         OUTPUT_NAME "absl_${_NAME}"
-        SOVERSION "2103.0.0"
+        SOVERSION "2103.0.1"
       )
     endif()
   else()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/abseil-cpp-20210324.0/absl/CMakeLists.txt 
new/abseil-cpp-20210324.1/absl/CMakeLists.txt
--- old/abseil-cpp-20210324.0/absl/CMakeLists.txt       2021-03-25 
14:27:44.000000000 +0100
+++ new/abseil-cpp-20210324.1/absl/CMakeLists.txt       2021-04-20 
18:55:14.000000000 +0200
@@ -16,6 +16,7 @@
 
 add_subdirectory(base)
 add_subdirectory(algorithm)
+add_subdirectory(cleanup)
 add_subdirectory(container)
 add_subdirectory(debugging)
 add_subdirectory(flags)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/abseil-cpp-20210324.0/absl/copts/AbseilConfigureCopts.cmake 
new/abseil-cpp-20210324.1/absl/copts/AbseilConfigureCopts.cmake
--- old/abseil-cpp-20210324.0/absl/copts/AbseilConfigureCopts.cmake     
2021-03-25 14:27:44.000000000 +0100
+++ new/abseil-cpp-20210324.1/absl/copts/AbseilConfigureCopts.cmake     
2021-04-20 18:55:14.000000000 +0200
@@ -35,8 +35,7 @@
 if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
   set(ABSL_DEFAULT_COPTS "${ABSL_GCC_FLAGS}")
   set(ABSL_TEST_COPTS "${ABSL_GCC_FLAGS};${ABSL_GCC_TEST_FLAGS}")
-elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
-  # MATCHES so we get both Clang and AppleClang
+elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")  # MATCHES so we get both Clang 
and AppleClang
   if(MSVC)
     # clang-cl is half MSVC, half LLVM
     set(ABSL_DEFAULT_COPTS "${ABSL_CLANG_CL_FLAGS}")

Reply via email to