Hello community, here is the log from the commit of package liblxqt for openSUSE:Factory checked in at 2015-10-12 10:02:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/liblxqt (Old) and /work/SRC/openSUSE:Factory/.liblxqt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "liblxqt" Changes: -------- --- /work/SRC/openSUSE:Factory/liblxqt/liblxqt.changes 2015-08-01 11:35:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.liblxqt.new/liblxqt.changes 2015-10-12 10:02:20.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Oct 8 10:31:22 UTC 2015 - [email protected] + +- Factory moved fom libqt5.4 to 5.5 + 0001-fix-build-with-qt-5.5.patch: include QObject header explicitly + +------------------------------------------------------------------- New: ---- 0001-fix-build-with-qt-5.5.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ liblxqt.spec ++++++ --- /var/tmp/diff_new_pack.Ruiz4D/_old 2015-10-12 10:02:21.000000000 +0200 +++ /var/tmp/diff_new_pack.Ruiz4D/_new 2015-10-12 10:02:21.000000000 +0200 @@ -24,6 +24,8 @@ Group: Development/Libraries/C and C++ Url: http://www.lxqt.org Source: http://downloads.lxqt.org/lxqt/%{version}/liblxqt-%{version}.tar.xz +#factory moved to libqt5.5, we need to include QObject explicitly there +Patch: 0001-fix-build-with-qt-5.5.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ @@ -63,6 +65,7 @@ %prep %setup -q -n liblxqt-%{version} +%patch -p1 %build %cmake ++++++ 0001-fix-build-with-qt-5.5.patch ++++++ >From 7303ea207de0771d6f450a31ec4a1ce69202869b Mon Sep 17 00:00:00 2001 From: rezso <[email protected]> Date: Sun, 5 Jul 2015 18:46:13 +0200 Subject: [PATCH 01/17] fix build with qt 5.5 (lxqtnotification.h:43:5: error: 'Q_OBJECT' does not name a type) --- lxqtnotification.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lxqtnotification.h b/lxqtnotification.h index 4334a55..2d74504 100644 --- a/lxqtnotification.h +++ b/lxqtnotification.h @@ -25,6 +25,7 @@ #ifndef LXQTNOTIFICATION_H #define LXQTNOTIFICATION_H +#include <QObject> #include <QStringList> #include "lxqtglobals.h" -- 2.5.2
