Script 'mail_helper' called by obssrc
Hello community,

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

Package is "kcodecs"

Mon Mar 14 19:34:12 2022 rev:101 rq:961227 version:5.92.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcodecs/kcodecs.changes  2022-02-24 
18:21:26.082690660 +0100
+++ /work/SRC/openSUSE:Factory/.kcodecs.new.25692/kcodecs.changes       
2022-03-14 19:35:27.474010671 +0100
@@ -1,0 +2,11 @@
+Mon Mar  7 09:26:44 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
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kcodecs.spec ++++++
--- /var/tmp/diff_new_pack.FcQSzD/_old  2022-03-14 19:35:28.058011371 +0100
+++ /var/tmp/diff_new_pack.FcQSzD/_new  2022-03-14 19:35:28.062011376 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Codecs5
-%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:           kcodecs
-Version:        5.91.0
+Version:        5.92.0
 Release:        0
 Summary:        Method collection to manipulate strings using various encodings
 License:        LGPL-2.1-or-later


++++++ kcodecs-5.91.0.tar.xz -> kcodecs-5.92.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-5.91.0/.gitlab-ci.yml 
new/kcodecs-5.92.0/.gitlab-ci.yml
--- old/kcodecs-5.91.0/.gitlab-ci.yml   2022-02-05 22:19:28.000000000 +0100
+++ new/kcodecs-5.92.0/.gitlab-ci.yml   2022-03-05 13:56:44.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/kcodecs-5.91.0/CMakeLists.txt 
new/kcodecs-5.92.0/CMakeLists.txt
--- old/kcodecs-5.91.0/CMakeLists.txt   2022-02-05 22:19:28.000000000 +0100
+++ new/kcodecs-5.92.0/CMakeLists.txt   2022-03-05 13:56:44.000000000 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.91.0") # handled by release scripts
+set(KF_VERSION "5.92.0") # handled by release scripts
 project(KCodecs VERSION ${KF_VERSION})
 
 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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-5.91.0/autotests/pythontest.py 
new/kcodecs-5.92.0/autotests/pythontest.py
--- old/kcodecs-5.91.0/autotests/pythontest.py  2022-02-05 22:19:28.000000000 
+0100
+++ new/kcodecs-5.92.0/autotests/pythontest.py  1970-01-01 01:00:00.000000000 
+0100
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-#-*- coding: utf-8 -*-
-
-from __future__ import print_function
-
-import sys
-
-sys.path.append(sys.argv[1])
-
-from PyQt5 import QtCore
-from PyQt5 import QtWidgets
-
-from PyKF5 import KCodecs
-
-def main():
-    app = QtWidgets.QApplication(sys.argv)
-
-    assert(KCodecs.KEmailAddress.isValidSimpleAddress("[email protected]"))
-    assert(not KCodecs.KEmailAddress.isValidSimpleAddress("konqi"))
-
-if __name__ == '__main__':
-    sys.exit(main())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-5.91.0/cmake/rules_PyKF5.py 
new/kcodecs-5.92.0/cmake/rules_PyKF5.py
--- old/kcodecs-5.91.0/cmake/rules_PyKF5.py     2022-02-05 22:19:28.000000000 
+0100
+++ new/kcodecs-5.92.0/cmake/rules_PyKF5.py     1970-01-01 01:00:00.000000000 
+0100
@@ -1,41 +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 local_container_rules():
-    return [
-        ["KCodecs", "Encoder", ".*", ".*", ".*", 
rules_engine.container_mark_abstract],
-        ["KCodecs", "Decoder", ".*", ".*", ".*", 
rules_engine.container_mark_abstract],
-        ["KCodecs", "Codec", ".*", ".*", ".*", 
rules_engine.container_mark_abstract],
-    ]
-
-def local_function_rules():
-    return [
-
-        ["KCodecs::Codec", "encode", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Codec", "decode", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-
-        ["KCodecs::Encoder", "encode", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Encoder", "finish", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Encoder", "write", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Encoder", "writeCRLF", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Encoder", "flushOutputBuffer", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-
-        ["KCodecs::Decoder", "decode", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-        ["KCodecs::Decoder", "finish", ".*", ".*", ".*char.*&.*", 
rules_engine.function_discard],
-
-        ["KCharsets", "codecForName", ".*", ".*", ".*bool &.*", 
rules_engine.function_discard],
-        ["KCharsets", "fromEntity", ".*", ".*", ".*int &.*", 
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/kcodecs-5.91.0/po/ka/kcodecs5_qt.po 
new/kcodecs-5.92.0/po/ka/kcodecs5_qt.po
--- old/kcodecs-5.91.0/po/ka/kcodecs5_qt.po     2022-02-05 22:19:28.000000000 
+0100
+++ new/kcodecs-5.92.0/po/ka/kcodecs5_qt.po     2022-03-05 13:56:44.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"
 
 #: kcharsets.cpp:156
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-5.91.0/po/zh_CN/kcodecs5_qt.po 
new/kcodecs-5.92.0/po/zh_CN/kcodecs5_qt.po
--- old/kcodecs-5.91.0/po/zh_CN/kcodecs5_qt.po  2022-02-05 22:19:28.000000000 
+0100
+++ new/kcodecs-5.92.0/po/zh_CN/kcodecs5_qt.po  2022-03-05 13:56:44.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/kcodecs-5.91.0/src/CMakeLists.txt 
new/kcodecs-5.92.0/src/CMakeLists.txt
--- old/kcodecs-5.91.0/src/CMakeLists.txt       2022-02-05 22:19:28.000000000 
+0100
+++ new/kcodecs-5.92.0/src/CMakeLists.txt       2022-03-05 13:56:44.000000000 
+0100
@@ -123,24 +123,6 @@
   REQUIRED_HEADERS KCodecs_HEADERS
 )
 
-find_package(PythonModuleGeneration)
-
-if (PythonModuleGeneration_FOUND)
-  ecm_generate_python_binding(
-    TARGET KF5::Codecs
-    PYTHONNAMESPACE PyKF5
-    MODULENAME KCodecs
-    RULES_FILE "${CMAKE_SOURCE_DIR}/cmake/rules_PyKF5.py"
-    SIP_DEPENDS
-      QtCore/QtCoremod.sip
-    HEADERS
-      kcharsets.h
-      kcodecs.h
-      kencodingprober.h
-      kemailaddress.h
-  )
-endif()
-
 install(TARGETS KF5Codecs EXPORT KF5CodecsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
 install(FILES

Reply via email to