Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kphotoalbum for openSUSE:Factory checked in at 2023-11-09 21:36:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kphotoalbum (Old) and /work/SRC/openSUSE:Factory/.kphotoalbum.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kphotoalbum" Thu Nov 9 21:36:10 2023 rev:15 rq:1124455 version:5.11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kphotoalbum/kphotoalbum.changes 2023-07-13 17:18:15.333013546 +0200 +++ /work/SRC/openSUSE:Factory/.kphotoalbum.new.17445/kphotoalbum.changes 2023-11-09 21:36:27.311227338 +0100 @@ -1,0 +2,5 @@ +Thu Nov 9 12:30:24 UTC 2023 - Dominique Leuenberger <dims...@opensuse.org> + +- Add kphotoalbum-exiv2.patch: Fix linking against libexiv2.so. + +------------------------------------------------------------------- New: ---- kphotoalbum-exiv2.patch BETA DEBUG BEGIN: New: - Add kphotoalbum-exiv2.patch: Fix linking against libexiv2.so. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kphotoalbum.spec ++++++ --- /var/tmp/diff_new_pack.DkqxBw/_old 2023-11-09 21:36:28.063255103 +0100 +++ /var/tmp/diff_new_pack.DkqxBw/_new 2023-11-09 21:36:28.067255251 +0100 @@ -29,12 +29,14 @@ Source1: https://download.kde.org/stable/%{name}/%{version}/%{name}-%{version}.tar.xz.sig Source2: kphotoalbum.keyring %endif +Patch0: kphotoalbum-exiv2.patch BuildRequires: QtAV-devel BuildRequires: cmake >= 3.18.0 BuildRequires: fdupes BuildRequires: kf5-filesystem BuildRequires: libexiv2-devel BuildRequires: libjpeg-devel +BuildRequires: pkgconfig BuildRequires: update-desktop-files BuildRequires: cmake(KF5Archive) BuildRequires: cmake(KF5Completion) @@ -57,7 +59,6 @@ BuildRequires: cmake(Qt5Test) BuildRequires: cmake(Qt5Widgets) BuildRequires: cmake(Qt5Xml) -BuildRequires: pkgconfig BuildRequires: pkgconfig(libvlc) Requires: sqlite3 Recommends: marble ++++++ kphotoalbum-exiv2.patch ++++++ Index: kphotoalbum-5.11.0/lib/CMakeLists.txt =================================================================== --- kphotoalbum-5.11.0.orig/lib/CMakeLists.txt +++ kphotoalbum-5.11.0/lib/CMakeLists.txt @@ -116,7 +116,7 @@ find_package(exiv2 CONFIG QUIET) if(exiv2_FOUND) # search again with REQUIRED, so that the feature summary correctly shows exiv as required dependency find_package(exiv2 CONFIG REQUIRED) - set(EXIV2_LIBRARIES exiv2lib) + set(EXIV2_LIBRARIES exiv2) else() find_package(Exiv2 REQUIRED) endif()