Hello community, here is the log from the commit of package amarok for openSUSE:Factory checked in at 2017-12-05 01:26:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/amarok (Old) and /work/SRC/openSUSE:Factory/.amarok.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "amarok" Tue Dec 5 01:26:05 2017 rev:111 rq:547673 version:2.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/amarok/amarok.changes 2017-11-26 10:35:00.070768006 +0100 +++ /work/SRC/openSUSE:Factory/.amarok.new/amarok.changes 2017-12-05 01:26:06.786290101 +0100 @@ -1,0 +2,6 @@ +Sat Dec 2 16:44:45 UTC 2017 - [email protected] + +- Add patch to not build WebKit-dependent parts: + * Skip-qtwebkit-parts.patch + +------------------------------------------------------------------- New: ---- Skip-qtwebkit-parts.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ amarok.spec ++++++ --- /var/tmp/diff_new_pack.0wCO1r/_old 2017-12-05 01:26:08.938211921 +0100 +++ /var/tmp/diff_new_pack.0wCO1r/_new 2017-12-05 01:26:08.942211776 +0100 @@ -37,6 +37,8 @@ Patch4: amarok-taglib-compare.patch # PATCH-FIX-OPENSUSE gcc6-workaround.patch -- Workaround an errors seen by GCC6 (PR71273) Patch5: gcc6-workaround.patch +# PATCH-FIX-OPENSUSE +Patch6: Skip-qtwebkit-parts.patch # PATCH-FIX-UPSTREAM 0001-Don-t-add-the-analyzer-applet-when-Phonon-doesn-t-su.patch -- avoids adding the analyzer applet on phonon backends that don't support it (e.g. vlc) Patch100: 0001-Don-t-add-the-analyzer-applet-when-Phonon-doesn-t-su.patch # PATCH-FIX-UPSTREAM 0002-Don-t-allow-adding-Analyzer-applet-when-not-supporte.patch -- Don't allow adding Analyzer applet when not supported. @@ -135,6 +137,7 @@ %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %patch100 -p1 %patch101 -p1 %patch102 -p1 ++++++ Skip-qtwebkit-parts.patch ++++++ From: Fabian Vogt <[email protected]> Subject: Do not build parts depending on Qt WebKit Qt WebKit is unmaintained and must not be used anymore. Index: amarok-2.8.0/CMakeLists.txt =================================================================== --- amarok-2.8.0.orig/CMakeLists.txt +++ amarok-2.8.0/CMakeLists.txt @@ -84,7 +84,7 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR}/shared ) -find_package( Qt4 4.8.3 COMPONENTS QtCore QtGui QtScript QtSvg QtXml QtWebKit REQUIRED ) +find_package( Qt4 4.8.3 COMPONENTS QtCore QtGui QtScript QtSvg QtXml REQUIRED ) find_package( KDE4 4.8.4 REQUIRED ) include( KDE4Defaults ) Index: amarok-2.8.0/src/context/applets/CMakeLists.txt =================================================================== --- amarok-2.8.0.orig/src/context/applets/CMakeLists.txt +++ amarok-2.8.0/src/context/applets/CMakeLists.txt @@ -1,18 +1,15 @@ add_subdirectory( albums ) add_subdirectory( currenttrack ) -add_subdirectory( info ) add_subdirectory( labels ) add_subdirectory( lyrics ) add_subdirectory( photos ) add_subdirectory( tabs ) -add_subdirectory( wikipedia ) if( QT_QTOPENGL_FOUND ) add_subdirectory( analyzer ) endif() if( LIBLASTFM_FOUND ) - add_subdirectory( upcomingevents ) add_subdirectory( similarartists ) endif()
