Hello community, here is the log from the commit of package krunner for openSUSE:Factory checked in at 2018-08-24 16:56:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/krunner (Old) and /work/SRC/openSUSE:Factory/.krunner.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "krunner" Fri Aug 24 16:56:00 2018 rev:54 rq:630633 version:5.49.0 Changes: -------- --- /work/SRC/openSUSE:Factory/krunner/krunner.changes 2018-07-21 10:15:20.459099013 +0200 +++ /work/SRC/openSUSE:Factory/.krunner.new/krunner.changes 2018-08-24 16:56:06.757503684 +0200 @@ -1,0 +2,10 @@ +Sun Aug 19 09:19:22 UTC 2018 - [email protected] + +- Update to 5.49.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.49.0.php +- Changes since 5.48.0: + * Honor BUILD_TESTING + +------------------------------------------------------------------- Old: ---- krunner-5.48.0.tar.xz New: ---- krunner-5.49.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ krunner.spec ++++++ --- /var/tmp/diff_new_pack.w0wTs1/_old 2018-08-24 16:56:09.625507073 +0200 +++ /var/tmp/diff_new_pack.w0wTs1/_new 2018-08-24 16:56:09.625507073 +0200 @@ -17,14 +17,20 @@ %define lname libKF5Runner5 -%define _tar_path 5.48 +%define _tar_path 5.49 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: krunner -Version: 5.48.0 +Version: 5.49.0 Release: 0 +Summary: Plugins responsible for better integration of Qt applications in KDE Workspace +License: LGPL-2.1-or-later +Group: System/GUI/KDE +URL: http://www.kde.org +Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz +Source1: baselibs.conf BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: fdupes @@ -41,13 +47,6 @@ BuildRequires: cmake(Qt5Gui) >= 5.6.0 BuildRequires: cmake(Qt5Quick) >= 5.6.0 BuildRequires: cmake(Qt5Test) >= 5.6.0 -Summary: Plugins responsible for better integration of Qt applications in KDE Workspace -License: LGPL-2.1-or-later -Group: System/GUI/KDE -Url: http://www.kde.org -Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz -Source1: baselibs.conf -BuildRoot: %{_tmppath}/%{name}-%{version}-build %description Framework Integration is a set of plugins responsible for better @@ -56,11 +55,11 @@ Applications do not need to link to this directly. -%package -n %lname +%package -n %{lname} Summary: Plugins responsible for better integration of Qt applications in KDE Workspace Group: System/GUI/KDE -%description -n %lname +%description -n %{lname} Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. @@ -70,7 +69,7 @@ %package devel Summary: Plugins responsible for better integration of Qt applications in KDE Workspace Group: Development/Libraries/KDE -Requires: %lname = %{version} +Requires: %{lname} = %{version} Requires: extra-cmake-modules Requires: plasma-framework-devel >= %{_kf5_bugfix_version} Requires: cmake(Qt5Core) >= 5.6.0 @@ -94,12 +93,10 @@ %kf5_makeinstall -C build %fdupes %{buildroot} -%post -n %lname -p /sbin/ldconfig - -%postun -n %lname -p /sbin/ldconfig +%post -n %{lname} -p /sbin/ldconfig +%postun -n %{lname} -p /sbin/ldconfig -%files -n %lname -%defattr(-,root,root) +%files -n %{lname} # no license yet #doc COPYING* README* %{_kf5_libdir}/libKF5Runner.so.* @@ -108,7 +105,6 @@ %{_kf5_debugdir}/*.categories %files devel -%defattr(-,root,root) #doc COPYING* README* %{_kf5_libdir}/libKF5Runner.so %{_kf5_libdir}/cmake/KF5Runner/ ++++++ krunner-5.48.0.tar.xz -> krunner-5.49.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.48.0/CMakeLists.txt new/krunner-5.49.0/CMakeLists.txt --- old/krunner-5.48.0/CMakeLists.txt 2018-07-07 23:53:34.000000000 +0200 +++ new/krunner-5.49.0/CMakeLists.txt 2018-08-04 10:44:50.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.48.0") # handled by release scripts -set(KF5_DEP_VERSION "5.48.0") # handled by release scripts +set(KF5_VERSION "5.49.0") # handled by release scripts +set(KF5_DEP_VERSION "5.49.0") # handled by release scripts project(KRunner VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.48.0 NO_MODULE) +find_package(ECM 5.49.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -55,8 +55,10 @@ # Subdirectories add_subdirectory(src) -add_subdirectory(autotests) -add_subdirectory(tests) +if (BUILD_TESTING) + add_subdirectory(autotests) + add_subdirectory(tests) +endif() add_subdirectory(templates) # Create a Config.cmake and a ConfigVersion.cmake file and install them
