Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcompletion for openSUSE:Factory 
checked in at 2022-03-14 19:34:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcompletion (Old)
 and      /work/SRC/openSUSE:Factory/.kcompletion.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcompletion"

Mon Mar 14 19:34:13 2022 rev:103 rq:961228 version:5.92.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcompletion/kcompletion.changes  2022-02-24 
18:21:27.118690383 +0100
+++ /work/SRC/openSUSE:Factory/.kcompletion.new.25692/kcompletion.changes       
2022-03-14 19:35:28.446011837 +0100
@@ -1,0 +2,12 @@
+Mon Mar  7 09:26:45 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.92.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.92.0
+- Changes since 5.91.0:
+  * Add Qt6 Android CI
+  * Remove broken Python bindings generation
+  * Make the BUILD_DESIGNERPLUGIN option dependent on not cross-compiling
+
+-------------------------------------------------------------------

Old:
----
  kcompletion-5.91.0.tar.xz
  kcompletion-5.91.0.tar.xz.sig

New:
----
  kcompletion-5.92.0.tar.xz
  kcompletion-5.92.0.tar.xz.sig

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

Other differences:
------------------
++++++ kcompletion.spec ++++++
--- /var/tmp/diff_new_pack.ZTZzv0/_old  2022-03-14 19:35:29.074012590 +0100
+++ /var/tmp/diff_new_pack.ZTZzv0/_new  2022-03-14 19:35:29.078012594 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Completion5
-%define _tar_path 5.91
+%define _tar_path 5.92
 # 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 released
 Name:           kcompletion
-Version:        5.91.0
+Version:        5.92.0
 Release:        0
 Summary:        Widgets with advanced completion support
 License:        LGPL-2.1-or-later


++++++ kcompletion-5.91.0.tar.xz -> kcompletion-5.92.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/.gitlab-ci.yml 
new/kcompletion-5.92.0/.gitlab-ci.yml
--- old/kcompletion-5.91.0/.gitlab-ci.yml       2022-02-05 22:19:40.000000000 
+0100
+++ new/kcompletion-5.92.0/.gitlab-ci.yml       2022-03-05 13:56:56.000000000 
+0100
@@ -6,3 +6,4 @@
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml
+  - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/CMakeLists.txt 
new/kcompletion-5.92.0/CMakeLists.txt
--- old/kcompletion-5.91.0/CMakeLists.txt       2022-02-05 22:19:40.000000000 
+0100
+++ new/kcompletion-5.92.0/CMakeLists.txt       2022-03-05 13:56:56.000000000 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.91.0") # handled by release scripts
-set(KF_DEP_VERSION "5.91.0") # handled by release scripts
+set(KF_VERSION "5.92.0") # handled by release scripts
+set(KF_DEP_VERSION "5.92.0") # handled by release scripts
 project(KCompletion VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.91.0  NO_MODULE)
+find_package(ECM 5.92.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -22,6 +22,7 @@
 include(ECMGenerateHeaders)
 include(ECMQtDeclareLoggingCategory)
 include(CMakePackageConfigHelpers)
+include(CMakeDependentOption)
 
 include(ECMAddQch)
 include(ECMPoQmTools)
@@ -44,7 +45,7 @@
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
-option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON)
+cmake_dependent_option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON 
"NOT CMAKE_CROSSCOMPILING" OFF)
 add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Build plugin for Qt 
Designer")
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/autotests/pythontest.py 
new/kcompletion-5.92.0/autotests/pythontest.py
--- old/kcompletion-5.91.0/autotests/pythontest.py      2022-02-05 
22:19:40.000000000 +0100
+++ new/kcompletion-5.92.0/autotests/pythontest.py      1970-01-01 
01:00:00.000000000 +0100
@@ -1,27 +0,0 @@
-#!/usr/bin/env python
-#-*- coding: utf-8 -*-
-
-import sys
-
-sys.path.append(sys.argv[1])
-
-from PyQt5 import QtWidgets
-
-from PyKF5 import KCompletion
-
-def main():
-    app = QtWidgets.QApplication(sys.argv)
-
-    kc = KCompletion.KCompletion()
-    kc.insertItems(["Monday", "Tuesday", "Wednesday",
-        "Thursday", "Friday", "Saturday", "Sunday"])
-
-    kl = KCompletion.KLineEdit()
-    kl.setCompletionObject(kc)
-    kl.setCompletionMode(KCompletion.KCompletion.CompletionAuto)
-
-    kl.makeCompletion("M")
-    assert(kl.text() == "Monday")
-
-if __name__ == '__main__':
-    sys.exit(main())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/cmake/rules_PyKF5.py 
new/kcompletion-5.92.0/cmake/rules_PyKF5.py
--- old/kcompletion-5.91.0/cmake/rules_PyKF5.py 2022-02-05 22:19:40.000000000 
+0100
+++ new/kcompletion-5.92.0/cmake/rules_PyKF5.py 1970-01-01 01:00:00.000000000 
+0100
@@ -1,30 +0,0 @@
-# SPDX-FileCopyrightText: 2016 Stephen Kelly <[email protected]>
-# SPDX-License-Identifier: BSD-3-Clause
-
-import os, sys
-
-import rules_engine
-sys.path.append(os.path.dirname(os.path.dirname(rules_engine.__file__)))
-import Qt5Ruleset
-
-def _container_discard_base(container, sip, matcher):
-    sip["base_specifiers"] = ""
-
-def local_container_rules():
-    return [
-        [".*", "KCompletionMatches", ".*", ".*", ".*", 
_container_discard_base],
-    ]
-
-def local_function_rules():
-    return [
-        ["KCompletionBase", "keyBindingMap", ".*", ".*", ".*", 
rules_engine.function_discard],
-        ["KCompletionBase", "getKeyBindings", ".*", ".*", ".*", 
rules_engine.function_discard],
-        ["KCompletionBase", "setKeyBindingMap", ".*", ".*", ".*", 
rules_engine.function_discard],
-        ["KCompletionMatches", "KCompletionMatches", ".*", ".*", 
".*KCompletionMatchesWrapper.*", rules_engine.function_discard],
-    ]
-
-class RuleSet(Qt5Ruleset.RuleSet):
-    def __init__(self):
-        Qt5Ruleset.RuleSet.__init__(self)
-        self._fn_db = rules_engine.FunctionRuleDb(lambda: 
local_function_rules() + Qt5Ruleset.function_rules())
-        self._container_db = rules_engine.ContainerRuleDb(lambda: 
local_container_rules() + Qt5Ruleset.container_rules())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/po/ka/kcompletion5_qt.po 
new/kcompletion-5.92.0/po/ka/kcompletion5_qt.po
--- old/kcompletion-5.91.0/po/ka/kcompletion5_qt.po     2022-02-05 
22:19:40.000000000 +0100
+++ new/kcompletion-5.92.0/po/ka/kcompletion5_qt.po     2022-03-05 
13:56:56.000000000 +0100
@@ -14,7 +14,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.9\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Qt-Contexts: true\n"
 
 #: khistorycombobox.cpp:213
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/po/sk/kcompletion5_qt.po 
new/kcompletion-5.92.0/po/sk/kcompletion5_qt.po
--- old/kcompletion-5.91.0/po/sk/kcompletion5_qt.po     2022-02-05 
22:19:40.000000000 +0100
+++ new/kcompletion-5.92.0/po/sk/kcompletion5_qt.po     2022-03-05 
13:56:56.000000000 +0100
@@ -7,26 +7,24 @@
 # Michal Sulek <[email protected]>, 2009, 2010, 2011.
 # Richard Fri?? <[email protected]>, 2011.
 # Roman Pahol??k <[email protected]>, 2012, 2013, 2014.
+# Matej Mrenica <[email protected]>, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2014-03-29 08:12+0100\n"
-"Last-Translator: Roman Pahol??k <[email protected]>\n"
-"Language-Team: Slovak <[email protected]>\n"
+"PO-Revision-Date: 2022-02-14 19:36+0100\n"
+"Last-Translator: Matej Mrenica <[email protected]>\n"
+"Language-Team: Slovak <[email protected]>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 21.12.2\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Qt-Contexts: true\n"
 
 #: khistorycombobox.cpp:213
-#, fuzzy
-#| msgctxt "KHistoryComboBox|"
-#| msgid "Clear &History"
 msgctxt "KHistoryComboBox|@action:inmenu"
 msgid "Clear &History"
 msgstr "Vy??isti?? &hist??riu"
@@ -37,9 +35,6 @@
 msgstr "1"
 
 #: klineedit.cpp:939
-#, fuzzy
-#| msgctxt "KLineEdit|"
-#| msgid "C&lear"
 msgctxt "KLineEdit|@action:inmenu"
 msgid "C&lear"
 msgstr "&Vy??isti??"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/po/zh_CN/kcompletion5_qt.po 
new/kcompletion-5.92.0/po/zh_CN/kcompletion5_qt.po
--- old/kcompletion-5.91.0/po/zh_CN/kcompletion5_qt.po  2022-02-05 
22:19:40.000000000 +0100
+++ new/kcompletion-5.92.0/po/zh_CN/kcompletion5_qt.po  2022-03-05 
13:56:56.000000000 +0100
@@ -13,7 +13,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2022-01-08 15:22\n"
+"PO-Revision-Date: 2022-02-26 05:16\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcompletion-5.91.0/src/CMakeLists.txt 
new/kcompletion-5.92.0/src/CMakeLists.txt
--- old/kcompletion-5.91.0/src/CMakeLists.txt   2022-02-05 22:19:40.000000000 
+0100
+++ new/kcompletion-5.92.0/src/CMakeLists.txt   2022-03-05 13:56:56.000000000 
+0100
@@ -73,29 +73,6 @@
   REQUIRED_HEADERS KCompletion_HEADERS
 )
 
-find_package(PythonModuleGeneration)
-
-if (PythonModuleGeneration_FOUND)
-  ecm_generate_python_binding(
-    TARGET KF5::Completion
-    PYTHONNAMESPACE PyKF5
-    MODULENAME KCompletion
-    RULES_FILE "${CMAKE_SOURCE_DIR}/cmake/rules_PyKF5.py"
-    SIP_DEPENDS
-      QtWidgets/QtWidgetsmod.sip
-    HEADERS
-      kcombobox.h
-      kcompletion.h
-      kcompletionbase.h
-      kcompletionbox.h
-      klineedit.h
-      khistorycombobox.h
-      kpixmapprovider.h
-      ksortablelist.h
-      kcompletionmatches.h
-  )
-endif()
-
 install(TARGETS KF5Completion EXPORT KF5CompletionTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
 install(FILES

Reply via email to