Hello community, here is the log from the commit of package systemsettings5 for openSUSE:Factory checked in at 2017-10-09 19:39:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/systemsettings5 (Old) and /work/SRC/openSUSE:Factory/.systemsettings5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "systemsettings5" Mon Oct 9 19:39:47 2017 rev:53 rq:532052 version:5.11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/systemsettings5/systemsettings5.changes 2017-08-24 18:10:42.529717740 +0200 +++ /work/SRC/openSUSE:Factory/.systemsettings5.new/systemsettings5.changes 2017-10-09 19:39:49.385730318 +0200 @@ -1,0 +2,23 @@ +Thu Oct 5 12:39:19 CEST 2017 - fab...@ritter-vogt.de + +- Update to 5.11.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.11.0.php +- Changes since 5.10.95: + * Remove unnecessary remove_definitions() + * Define -DQT_NO_URL_CAST_FROM_STRING and fix compilation. + * Also extract i18n messages from *.qml + +------------------------------------------------------------------- +Thu Sep 14 14:29:07 CEST 2017 - fab...@ritter-vogt.de + +- Update to 5.10.95 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.10.95.php +- Too many changes to list here +- Add patch to fix appearance of the front page with long words (kde#380972): + * 0001-try-harder-to-wrap-very-long-words.patch + +------------------------------------------------------------------- Old: ---- systemsettings-5.10.5.tar.xz New: ---- 0001-try-harder-to-wrap-very-long-words.patch systemsettings-5.11.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ systemsettings5.spec ++++++ --- /var/tmp/diff_new_pack.J0Godu/_old 2017-10-09 19:39:49.989703772 +0200 +++ /var/tmp/diff_new_pack.J0Godu/_new 2017-10-09 19:39:49.993703596 +0200 @@ -18,23 +18,29 @@ %bcond_without lang Name: systemsettings5 -Version: 5.10.5 +Version: 5.11.0 Release: 0 Summary: KDE's control center License: GPL-2.0+ Group: System/GUI/KDE Url: http://www.kde.org/ -Source: http://download.kde.org/stable/plasma/%{version}/systemsettings-%{version}.tar.xz +Source: systemsettings-%{version}.tar.xz # PATCH-FIX-OPENSUSE install_administration_category.diff -- install System Administration category, needed at least for YaST KCM Patch0: install_administration_category.diff # PATCH-FIX-OPENSUSE systemsettings-desktop.diff -- rename application name to Configure Desktop, in order to cause less confusion for KDE4 users Patch1: systemsettings-desktop.diff +# PATCH-FIX-UPSTREAM +Patch2: 0001-try-harder-to-wrap-very-long-words.patch BuildRequires: extra-cmake-modules >= 1.2.0 BuildRequires: kf5-filesystem +BuildRequires: kirigami2-devel BuildRequires: update-desktop-files BuildRequires: xz +BuildRequires: cmake(KF5Activities) +BuildRequires: cmake(KF5ActivitiesStats) BuildRequires: cmake(KF5Config) BuildRequires: cmake(KF5DBusAddons) +BuildRequires: cmake(KF5Declarative) BuildRequires: cmake(KF5DocTools) BuildRequires: cmake(KF5I18n) BuildRequires: cmake(KF5IconThemes) @@ -42,10 +48,13 @@ BuildRequires: cmake(KF5KCMUtils) BuildRequires: cmake(KF5KHtml) BuildRequires: cmake(KF5KIO) +BuildRequires: cmake(KF5Package) BuildRequires: cmake(KF5Service) BuildRequires: cmake(KF5WindowSystem) BuildRequires: cmake(KF5XmlGui) +BuildRequires: cmake(Qt5QuickWidgets) >= 5.4.0 BuildRequires: cmake(Qt5Widgets) >= 5.4.0 +Requires: kirigami2 >= 2.1 %if %{with lang} Recommends: %{name}-lang %endif @@ -67,9 +76,8 @@ %prep %setup -q -n systemsettings-%{version} %patch0 -p1 -%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320" %patch1 -p1 -%endif +%patch2 -p1 %build %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir} @@ -101,6 +109,9 @@ %{_kf5_servicetypesdir}/ %{_kf5_sharedir}/systemsettings/ %{_kf5_sharedir}/kxmlgui5/ +%dir %{_kf5_sharedir}/kpackage +%dir %{_kf5_sharedir}/kpackage/genericqml +%{_kf5_sharedir}/kpackage/genericqml/org.kde.systemsettings.sidebar %files devel %defattr(-,root,root) ++++++ 0001-try-harder-to-wrap-very-long-words.patch ++++++ >From dc7faa2d10e815450ae55493f536e0428871786a Mon Sep 17 00:00:00 2001 From: Marco Martin <notm...@gmail.com> Date: Thu, 14 Sep 2017 15:39:48 +0200 Subject: [PATCH] try harder to wrap very long words BUG:380972 --- sidebar/package/contents/ui/IntroIcon.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sidebar/package/contents/ui/IntroIcon.qml b/sidebar/package/contents/ui/IntroIcon.qml index 8a5d3fd..97bf000 100644 --- a/sidebar/package/contents/ui/IntroIcon.qml +++ b/sidebar/package/contents/ui/IntroIcon.qml @@ -48,9 +48,10 @@ MouseArea { QQC2.Label { id: label Layout.fillWidth: true + Layout.maximumWidth: root.width Layout.alignment: Qt.AlignHCenter horizontalAlignment: Text.AlignHCenter - wrapMode: Text.WordWrap + wrapMode: Text.Wrap } } Accessible.role: Accessible.Button -- 2.14.1 ++++++ systemsettings-5.10.5.tar.xz -> systemsettings-5.11.0.tar.xz ++++++ ++++ 31396 lines of diff (skipped)