Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lucene++ for openSUSE:Factory checked in at 2021-06-09 21:52:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lucene++ (Old) and /work/SRC/openSUSE:Factory/.lucene++.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lucene++" Wed Jun 9 21:52:44 2021 rev:8 rq:898523 version:3.0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/lucene++/lucene++.changes 2021-01-25 18:23:45.804441115 +0100 +++ /work/SRC/openSUSE:Factory/.lucene++.new.32437/lucene++.changes 2021-06-09 21:53:09.594566481 +0200 @@ -1,0 +2,5 @@ +Tue Jun 8 06:41:05 UTC 2021 - Hillwood Yang <[email protected]> + +- Contrib headers should be installed, add lucene++-3.0.8-fix-missing-headers.patch + +------------------------------------------------------------------- New: ---- lucene++-3.0.8-fix-missing-headers.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lucene++.spec ++++++ --- /var/tmp/diff_new_pack.tKDX9S/_old 2021-06-09 21:53:10.098567379 +0200 +++ /var/tmp/diff_new_pack.tKDX9S/_new 2021-06-09 21:53:10.098567379 +0200 @@ -30,6 +30,9 @@ Patch1: lucene++-3.0.8-fix-pc-libdir.patch # PATCH-FIX-UPSTREAM lucene++-3.0.8-fix-cmake-issues.patch -- https://github.com/luceneplusplus/LucenePlusPlus/pull/163 Patch2: lucene++-3.0.8-fix-cmake-issues.patch +# PATCH-FIX-UPSTREAM lucene++-3.0.8-fix-missing-headers.patch -- [email protected] +# contrib headers should be installed +Patch3: lucene++-3.0.8-fix-missing-headers.patch BuildRequires: cmake >= 3.5 BuildRequires: gcc-c++ BuildRequires: libboost_filesystem-devel ++++++ lucene++-3.0.8-fix-missing-headers.patch ++++++ diff -Nur a/src/contrib/CMakeLists.txt b/src/contrib/CMakeLists.txt --- a/src/contrib/CMakeLists.txt 2020-12-29 20:10:43.000000000 +0800 +++ b/src/contrib/CMakeLists.txt 2021-06-08 13:50:28.225527544 +0800 @@ -3,6 +3,8 @@ #################################### # create library target #################################### +add_subdirectory(include) + if (LUCENE_BUILD_SHARED) add_library(lucene++-contrib SHARED) else() @@ -94,4 +96,5 @@ install( FILES ${contrib_headers} DESTINATION "include/lucene++" + DESTINATION "src/contrib/include" COMPONENT development-contrib) diff -Nur a/src/contrib/include/CMakeLists.txt b/src/contrib/include/CMakeLists.txt --- a/src/contrib/include/CMakeLists.txt 1970-01-01 08:00:00.000000000 +0800 +++ b/src/contrib/include/CMakeLists.txt 2020-12-29 20:10:43.000000000 +0800 @@ -0,0 +1,11 @@ +#################################### +# install headers +#################################### + +file(GLOB_RECURSE lucene_headers + "${CMAKE_CURRENT_SOURCE_DIR}/*.h" +) + +install( + FILES ${lucene_headers} + DESTINATION include/lucene++ )
