Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package apache-arrow for openSUSE:Factory checked in at 2023-04-03 17:47:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apache-arrow (Old) and /work/SRC/openSUSE:Factory/.apache-arrow.new.9019 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache-arrow" Mon Apr 3 17:47:02 2023 rev:2 rq:1076956 version:11.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/apache-arrow/apache-arrow.changes 2023-03-31 21:15:22.170341759 +0200 +++ /work/SRC/openSUSE:Factory/.apache-arrow.new.9019/apache-arrow.changes 2023-04-03 17:47:12.171656789 +0200 @@ -1,0 +2,6 @@ +Mon Apr 3 11:09:06 UTC 2023 - Andreas Schwab <sch...@suse.de> + +- cflags.patch: fix option order to compile with optimisation +- Adjust constraints + +------------------------------------------------------------------- New: ---- cflags.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apache-arrow.spec ++++++ --- /var/tmp/diff_new_pack.QnMOsx/_old 2023-04-03 17:47:13.032075518 +0200 +++ /var/tmp/diff_new_pack.QnMOsx/_new 2023-04-03 17:47:13.040116814 +0200 @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # + %bcond_without tests # Required for runtime dispatch, not yet packaged %bcond_with xsimd @@ -34,12 +35,9 @@ Source0: https://github.com/apache/arrow/archive/apache-arrow-%{version}.tar.gz Source1: https://github.com/apache/arrow-testing/archive/%{arrow_testing_commit}.tar.gz#/arrow-testing-%{version}.tar.gz Source2: https://github.com/apache/parquet-testing/archive/%{parquet_testing_commit}.tar.gz#/parquet-testing-%{version}.tar.gz +Patch0: cflags.patch BuildRequires: bison BuildRequires: cmake >= 3.2 -BuildRequires: cmake(absl) -BuildRequires: cmake(double-conversion) >= 3.1.5 -BuildRequires: cmake(re2) -BuildRequires: cmake(Snappy) >= 1.1.7 BuildRequires: fdupes BuildRequires: flex BuildRequires: gcc-c++ @@ -49,6 +47,10 @@ BuildRequires: pkgconfig BuildRequires: python-rpm-macros BuildRequires: python3-base +BuildRequires: cmake(Snappy) >= 1.1.7 +BuildRequires: cmake(absl) +BuildRequires: cmake(double-conversion) >= 3.1.5 +BuildRequires: cmake(re2) BuildRequires: pkgconfig(RapidJSON) BuildRequires: pkgconfig(bzip2) >= 1.0.8 BuildRequires: pkgconfig(gflags) >= 2.2.0 @@ -72,7 +74,6 @@ BuildRequires: pkgconfig(gtest) >= 1.10 %endif - %description Apache Arrow is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory @@ -217,7 +218,6 @@ This package provides the static library for Dataset API support - %package -n apache-parquet-devel-static Summary: Development platform for in-memory data - development files Group: Development/Libraries/C and C++ @@ -278,6 +278,7 @@ %prep %setup -q -n arrow-apache-arrow-%{version} -a1 -a2 +%patch0 -p1 %build export CFLAGS="%{optflags} -ffat-lto-objects" ++++++ _constraints ++++++ --- /var/tmp/diff_new_pack.QnMOsx/_old 2023-04-03 17:47:13.100426539 +0200 +++ /var/tmp/diff_new_pack.QnMOsx/_new 2023-04-03 17:47:13.108467835 +0200 @@ -1,10 +1,10 @@ <constraints> <hardware> <memory> - <size unit="G">9</size> + <size unit="G">10</size> </memory> <disk> - <size unit="G">9</size> + <size unit="G">10</size> </disk> </hardware> </constraints> ++++++ cflags.patch ++++++ Index: arrow-apache-arrow-11.0.0/cpp/cmake_modules/SetupCxxFlags.cmake =================================================================== --- arrow-apache-arrow-11.0.0.orig/cpp/cmake_modules/SetupCxxFlags.cmake +++ arrow-apache-arrow-11.0.0/cpp/cmake_modules/SetupCxxFlags.cmake @@ -638,8 +638,8 @@ if(NOT MSVC) string(APPEND CMAKE_CXX_FLAGS_RELEASE "${CXX_RELEASE_FLAGS}") string(APPEND CMAKE_C_FLAGS_DEBUG "${DEBUG_FLAGS}") string(APPEND CMAKE_CXX_FLAGS_DEBUG "${DEBUG_FLAGS}") - string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO "${C_RELEASE_FLAGS} ${DEBUG_FLAGS}") - string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CXX_RELEASE_FLAGS} ${DEBUG_FLAGS}") + string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO "${DEBUG_FLAGS} ${C_RELEASE_FLAGS}") + string(APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO "${DEBUG_FLAGS} ${CXX_RELEASE_FLAGS}") endif() message(STATUS "Build Type: ${CMAKE_BUILD_TYPE}")