Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hugin for openSUSE:Factory checked in at 2022-10-14 15:42:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hugin (Old) and /work/SRC/openSUSE:Factory/.hugin.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hugin" Fri Oct 14 15:42:02 2022 rev:74 rq:1010482 version:2021.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/hugin/hugin.changes 2022-05-12 22:59:51.808756775 +0200 +++ /work/SRC/openSUSE:Factory/.hugin.new.2275/hugin.changes 2022-10-14 15:43:10.435981984 +0200 @@ -1,0 +2,9 @@ +Thu Oct 6 13:38:13 UTC 2022 - [email protected] + +- require liblz4-devel temporarily for build, it should be required + by flann-devel +- added patches + workaround, lz4 is not returned by pkg_check_modules(), hardcode it now + + hugin-flann-lz4.patch + +------------------------------------------------------------------- New: ---- hugin-flann-lz4.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hugin.spec ++++++ --- /var/tmp/diff_new_pack.fZK9Pf/_old 2022-10-14 15:43:11.007982939 +0200 +++ /var/tmp/diff_new_pack.fZK9Pf/_new 2022-10-14 15:43:11.011982945 +0200 @@ -31,6 +31,8 @@ URL: http://hugin.sourceforge.net/ Source: https://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{mversion}/%{name}-%{version}.tar.bz2 Patch0: hugin.appdata.patch +# workaround, lz4 is not returned by pkg_check_modules(), hardcode it now +Patch1: hugin-flann-lz4.patch BuildRequires: Mesa-devel BuildRequires: OpenEXR-devel BuildRequires: cmake >= 3.1.0 @@ -60,6 +62,8 @@ Recommends: exiftool %if %{with system_flann} BuildRequires: flann-devel +# until rq#1008410 is not accepted and propagated into factory +BuildRequires: liblz4-devel %endif %if %{with lapack} BuildRequires: lapack-devel ++++++ hugin-flann-lz4.patch ++++++ Index: hugin-2021.0.0/CMakeModules/FindFLANN.cmake =================================================================== --- hugin-2021.0.0.orig/CMakeModules/FindFLANN.cmake +++ hugin-2021.0.0/CMakeModules/FindFLANN.cmake @@ -11,6 +11,7 @@ if(UNIX) find_package(PkgConfig QUIET) pkg_check_modules(FLANN flann) + set(FLANN_LIBRARIES "lz4;${FLANN_LIBRARIES}") else() find_path(FLANN_INCLUDE_DIRS flann/flann.hpp)
