Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package fcitx5-skk for openSUSE:Factory 
checked in at 2024-02-05 22:02:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fcitx5-skk (Old)
 and      /work/SRC/openSUSE:Factory/.fcitx5-skk.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fcitx5-skk"

Mon Feb  5 22:02:29 2024 rev:6 rq:1144312 version:5.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/fcitx5-skk/fcitx5-skk.changes    2023-08-21 
11:45:16.603653795 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx5-skk.new.1815/fcitx5-skk.changes  
2024-02-05 22:02:45.902408566 +0100
@@ -1,0 +2,6 @@
+Mon Feb  5 13:00:58 UTC 2024 - Marguerite Su <i...@marguerite.su>
+
+- update to 5.1.1
+  * Port to Qt 6
+
+-------------------------------------------------------------------

Old:
----
  fcitx5-skk-5.1.0.tar.xz

New:
----
  fcitx5-skk-5.1.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ fcitx5-skk.spec ++++++
--- /var/tmp/diff_new_pack.Tn2eq7/_old  2024-02-05 22:02:46.342424485 +0100
+++ /var/tmp/diff_new_pack.Tn2eq7/_new  2024-02-05 22:02:46.342424485 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx5-skk
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           fcitx5-skk
-Version:        5.1.0
+Version:        5.1.1
 Release:        0
 Summary:        Libskk input method engine for Fcitx5
 License:        GPL-3.0-or-later

++++++ fcitx5-skk-5.1.0.tar.xz -> fcitx5-skk-5.1.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx5-skk-5.1.0/CMakeLists.txt 
new/fcitx5-skk-5.1.1/CMakeLists.txt
--- old/fcitx5-skk-5.1.0/CMakeLists.txt 2023-08-14 19:44:49.596118000 +0200
+++ new/fcitx5-skk-5.1.1/CMakeLists.txt 2024-01-02 18:34:50.155766200 +0100
@@ -1,9 +1,10 @@
-cmake_minimum_required(VERSION 3.4.0)
-project(fcitx5-skk VERSION 5.1.0)
+cmake_minimum_required(VERSION 3.6.0)
+project(fcitx5-skk VERSION 5.1.1)
 
 find_package(ECM 1.0.0 REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake" 
${CMAKE_MODULE_PATH}) 
 option(ENABLE_QT "Enable Qt for GUI configuration" On)
+option(USE_QT6 "Build against Qt6" Off)
 
 include(ECMUninstallTarget)
 include(FeatureSummary)
@@ -21,9 +22,15 @@
 include(GNUInstallDirs)
 
 if (ENABLE_QT)
-find_package(Qt5 5.7 REQUIRED COMPONENTS Core Gui Widgets)
-find_package(Fcitx5Qt5WidgetsAddons REQUIRED)
-endif ()
+if (USE_QT6)
+    set(QT_MAJOR_VERSION 6)
+    find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
+else()
+    set(QT_MAJOR_VERSION 5)
+    find_package(Qt5 5.7 REQUIRED COMPONENTS Core Gui Widgets)
+endif()
+find_package(Fcitx5Qt${QT_MAJOR_VERSION}WidgetsAddons REQUIRED)
+endif()
 
 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/config.h.in"
   "${CMAKE_CURRENT_BINARY_DIR}/config.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx5-skk-5.1.0/gui/CMakeLists.txt 
new/fcitx5-skk-5.1.1/gui/CMakeLists.txt
--- old/fcitx5-skk-5.1.0/gui/CMakeLists.txt     2020-05-22 19:58:07.161517000 
+0200
+++ new/fcitx5-skk-5.1.1/gui/CMakeLists.txt     2023-12-02 01:22:09.543735700 
+0100
@@ -18,12 +18,12 @@
                       AUTOUIC_OPTIONS 
"-tr=fcitx::tr2fcitx;--include=fcitxqti18nhelper.h"
 )
 target_link_libraries(fcitx5-skk-config
-  Qt5::Core
-  Qt5::Widgets
-  Fcitx5Qt5::WidgetsAddons
+  Qt${QT_MAJOR_VERSION}::Core
+  Qt${QT_MAJOR_VERSION}::Widgets
+  Fcitx5Qt${QT_MAJOR_VERSION}::WidgetsAddons
   Fcitx5::Utils
   PkgConfig::GObject2
   LibSKK::LibSKK
   )
 
-install(TARGETS fcitx5-skk-config DESTINATION 
${CMAKE_INSTALL_LIBDIR}/fcitx5/qt5)
+install(TARGETS fcitx5-skk-config DESTINATION 
${CMAKE_INSTALL_LIBDIR}/fcitx5/qt${QT_MAJOR_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/fcitx5-skk-5.1.0/org.fcitx.Fcitx5.Addon.Skk.metainfo.xml.in 
new/fcitx5-skk-5.1.1/org.fcitx.Fcitx5.Addon.Skk.metainfo.xml.in
--- old/fcitx5-skk-5.1.0/org.fcitx.Fcitx5.Addon.Skk.metainfo.xml.in     
2023-08-14 19:44:49.676118100 +0200
+++ new/fcitx5-skk-5.1.1/org.fcitx.Fcitx5.Addon.Skk.metainfo.xml.in     
2024-01-02 18:34:50.199098800 +0100
@@ -10,6 +10,7 @@
   <url type="bugtracker">https://github.com/fcitx/fcitx5-skk/issues</url>
   <project_group>Fcitx</project_group>
   <releases>
+    <release version="5.1.1" date="2024-01-02"/>
     <release version="5.1.0" date="2023-08-14"/>
     <release version="5.0.15" date="2023-03-10"/>
     <release version="5.0.14" date="2022-11-19"/>

Reply via email to