Accepting request 658598 from KDE:Frameworks5
KDE Frameworks 5.53 OBS-URL: https://build.opensuse.org/request/show/658598 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kxmlgui?expand=0&rev=63
This commit is contained in:
commit
e40563c1db
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e4624f4f8a630ee30093ea785f17833e7668915dd71d7058829049427001b631
|
||||
size 868824
|
3
kxmlgui-5.53.0.tar.xz
Normal file
3
kxmlgui-5.53.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ea9d75bf6405dad3db0cb6f017030be139e3bc6e223ed235237e3cf09bd97a9
|
||||
size 869296
|
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 10 10:37:44 UTC 2018 - wbauer@tmo.at
|
||||
|
||||
- Use gcc7 on Leap 42.3 to fix build, compilation fails with the
|
||||
default 4.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 09 19:43:45 UTC 2018 - lbeltrame@kde.org
|
||||
|
||||
- Update to 5.53.0
|
||||
* New feature release
|
||||
* For more details please see:
|
||||
* https://www.kde.org/announcements/kde-frameworks-5.53.0.php
|
||||
- Changes since 5.52.0:
|
||||
* Use isEmpty()
|
||||
* Qt 5.9 is now the required version
|
||||
* Update the "About KDE" text
|
||||
* Mark member pointer const to tell it will not be changed by design
|
||||
* Use member-function-pointer-based signal/slot connection
|
||||
* krulertest: remove deprecated defunct call
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 11 19:48:08 UTC 2018 - lbeltrame@kde.org
|
||||
|
||||
|
13
kxmlgui.spec
13
kxmlgui.spec
@ -17,14 +17,14 @@
|
||||
|
||||
|
||||
%define lname libKF5XmlGui5
|
||||
%define _tar_path 5.52
|
||||
%define _tar_path 5.53
|
||||
# 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}')}
|
||||
%bcond_without lang
|
||||
Name: kxmlgui
|
||||
Version: 5.52.0
|
||||
Version: 5.53.0
|
||||
Release: 0
|
||||
Summary: Framework for managing menu and toolbar actions
|
||||
License: LGPL-2.1-or-later AND GPL-2.0-or-later
|
||||
@ -58,6 +58,10 @@ BuildRequires: cmake(Qt5Test) >= 5.6.0
|
||||
BuildRequires: cmake(Qt5Widgets) >= 5.6.0
|
||||
BuildRequires: cmake(Qt5Xml) >= 5.6.0
|
||||
BuildRequires: pkgconfig(x11)
|
||||
%if 0%{?suse_version} < 1330
|
||||
# It does not build with the default compiler (GCC 4.8) on Leap 42.x
|
||||
BuildRequires: gcc7-c++
|
||||
%endif
|
||||
|
||||
%description
|
||||
libkxmlgui provides a framework for managing menu and toolbar actions in an
|
||||
@ -102,6 +106,11 @@ description for example for integrating actions from plugins. Development files.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%if 0%{?suse_version} < 1330
|
||||
# It does not build with the default compiler (GCC 4.8) on Leap 42.x
|
||||
export CC=gcc-7
|
||||
export CXX=g++-7
|
||||
%endif
|
||||
%cmake_kf5 -d build -- -DSYSCONF_INSTALL_DIR=%{_kf5_sysconfdir}
|
||||
%make_jobs
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user