Hello community, here is the log from the commit of package kaffeine for openSUSE:Factory checked in at 2017-03-13 15:33:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kaffeine (Old) and /work/SRC/openSUSE:Factory/.kaffeine.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kaffeine" Mon Mar 13 15:33:40 2017 rev:64 rq:478941 version:2.0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/kaffeine/kaffeine.changes 2017-02-25 00:53:34.596304588 +0100 +++ /work/SRC/openSUSE:Factory/.kaffeine.new/kaffeine.changes 2017-03-13 15:35:09.180120129 +0100 @@ -1,0 +2,11 @@ +Tue Mar 7 11:54:46 UTC 2017 - [email protected] + +- Update to 2.0.8: + * Added Norwegian Nynorsk translation to .desktop files. +- Update to 2.0.7: + * Add support for H-265 video streams. + * Organize debug logs per category, using QLoggingCategory. +- Add fix-building-from-tarball.patch to fix building it from the + released 2.0.8 tarball. + +------------------------------------------------------------------- Old: ---- kaffeine-2.0.6.tar.xz New: ---- fix-building-from-tarball.patch kaffeine-2.0.8.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kaffeine.spec ++++++ --- /var/tmp/diff_new_pack.xAPawh/_old 2017-03-13 15:35:10.043998047 +0100 +++ /var/tmp/diff_new_pack.xAPawh/_new 2017-03-13 15:35:10.047997481 +0100 @@ -20,12 +20,14 @@ Summary: VLC-based Multimedia Player License: GPL-2.0+ Group: Productivity/Multimedia/Video/Players -Version: 2.0.6 +Version: 2.0.8 Release: 0 Url: http://kaffeine.kde.org/ Source0: %{name}-%{version}.tar.xz # PATCH-FEATURE-OPENSUSE kaffeine-fixsplitter.patch -- GUI improvement (allow more flexibly set splitters) Patch0: kaffeine-fixsplitter.patch +# PATCH-FIX-UPSTREAM fix-building-from-tarball.patch -- allow kaffeine to be built from the released tarball +Patch1: fix-building-from-tarball.patch Recommends: %{name}-lang = %version Requires: libQt5Sql5-sqlite Requires: vlc-noX @@ -67,6 +69,7 @@ %prep %setup -q %patch0 +%patch1 -p1 %build %cmake_kf5 -d build ++++++ fix-building-from-tarball.patch ++++++ >From 2dbc752d644440f963bad172cf3ec83dc681ec7f Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab <[email protected]> Date: Tue, 7 Mar 2017 06:54:39 -0300 Subject: CMakeLists.txt: fix it to allow building from tarball Kaffeine has a script at tools/update_l10n.sh that allows one to download and test all translations locally, with is useful during Kaffeine development. Such script creates a file at po/CMakeLists.txt. However, normal users will use the Kaffeine tarball, downloaded from kde.org. The translations at the po/ directory on the tarballs don't have a CMakeLists.txt, as this file is created only if the tools/update_l10n.sh is called. So, change the main CMakeLists.txt to cope with both ways. Signed-off-by: Mauro Carvalho Chehab <[email protected]> --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3215e94..d24e848 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,7 +93,11 @@ add_subdirectory(icons) add_subdirectory(profiles) add_subdirectory(src) if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") - add_subdirectory(po) + if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/po/CMakeLists.txt" ) + add_subdirectory(po) + else() + ki18n_install(po) + endif() endif() if(KF5DocTools_VERSION) -- cgit v0.11.2 ++++++ kaffeine-2.0.6.tar.xz -> kaffeine-2.0.8.tar.xz ++++++ ++++ 129672 lines of diff (skipped)
