Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package khtml for openSUSE:Factory checked 
in at 2021-02-17 18:10:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/khtml (Old)
 and      /work/SRC/openSUSE:Factory/.khtml.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "khtml"

Wed Feb 17 18:10:55 2021 rev:86 rq:871697 version:5.79.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/khtml/khtml.changes      2021-01-13 
18:18:01.013118959 +0100
+++ /work/SRC/openSUSE:Factory/.khtml.new.28504/khtml.changes   2021-02-17 
18:12:04.777967092 +0100
@@ -1,0 +2,9 @@
+Mon Feb  8 08:46:21 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.79.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.79.0
+- No code change since 5.78.0
+
+-------------------------------------------------------------------

Old:
----
  khtml-5.78.0.tar.xz
  khtml-5.78.0.tar.xz.sig

New:
----
  khtml-5.79.0.tar.xz
  khtml-5.79.0.tar.xz.sig

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

Other differences:
------------------
++++++ khtml.spec ++++++
--- /var/tmp/diff_new_pack.mW8GWm/_old  2021-02-17 18:12:05.409967609 +0100
+++ /var/tmp/diff_new_pack.mW8GWm/_new  2021-02-17 18:12:05.413967612 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5KHtml5
-%define _tar_path 5.78
+%define _tar_path 5.79
 # 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:           khtml
-Version:        5.78.0
+Version:        5.79.0
 Release:        0
 Summary:        HTML rendering engine
 License:        LGPL-2.1-or-later


++++++ khtml-5.78.0.tar.xz -> khtml-5.79.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/.gitignore new/khtml-5.79.0/.gitignore
--- old/khtml-5.78.0/.gitignore 2021-01-02 14:15:35.000000000 +0100
+++ new/khtml-5.79.0/.gitignore 2021-02-06 19:17:25.000000000 +0100
@@ -20,3 +20,4 @@
 CMakeLists.txt.user*
 *.unc-backup*
 .cmake/
+/.clang-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/CMakeLists.txt 
new/khtml-5.79.0/CMakeLists.txt
--- old/khtml-5.78.0/CMakeLists.txt     2021-01-02 14:15:35.000000000 +0100
+++ new/khtml-5.79.0/CMakeLists.txt     2021-02-06 19:17:25.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.78.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.78.0") # handled by release scripts
-project(KHtml VERSION ${KF5_VERSION})
+set(KF_VERSION "5.79.0") # handled by release scripts
+set(KF_DEP_VERSION "5.79.0") # handled by release scripts
+project(KHtml VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.78.0  NO_MODULE)
+find_package(ECM 5.79.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)
 
@@ -27,21 +27,21 @@
 # Most of KJS doesn't even require Qt, thus we can't use override
 string(REPLACE "-Wsuggest-override" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
 
-find_package(KF5Archive ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Codecs ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5GlobalAccel ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5IconThemes ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5KIO ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5JS ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Notifications ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Parts ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Sonnet ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5TextWidgets ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5Wallet ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5WindowSystem ${KF5_DEP_VERSION} REQUIRED)
-find_package(KF5XmlGui ${KF5_DEP_VERSION} REQUIRED)
+find_package(KF5Archive ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5Codecs ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5GlobalAccel ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5I18n ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5IconThemes ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5KIO ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5JS ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5Notifications ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5Parts ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5Sonnet ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5TextWidgets ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5Wallet ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5WidgetsAddons ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5WindowSystem ${KF_DEP_VERSION} REQUIRED)
+find_package(KF5XmlGui ${KF_DEP_VERSION} REQUIRED)
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX KHTML
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/khtml_version.h"
@@ -95,8 +95,13 @@
 
 find_package(Gperf REQUIRED)
 
+# remove definitions set by KDEFrameworkCompilerSettings which we fail to meet
+remove_definitions(-DQT_NO_KEYWORDS)
+remove_definitions(-DQT_NO_FOREACH)
 remove_definitions(-DQT_NO_CAST_FROM_ASCII)
 remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY)
+# ideally we would support QT_NO_KEYWORDS, but at least we can do this
+add_definitions(-DQT_NO_SIGNALS_SLOTS_KEYWORDS)
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/KF5KHtmlConfig.cmake.in 
new/khtml-5.79.0/KF5KHtmlConfig.cmake.in
--- old/khtml-5.78.0/KF5KHtmlConfig.cmake.in    2021-01-02 14:15:35.000000000 
+0100
+++ new/khtml-5.79.0/KF5KHtmlConfig.cmake.in    2021-02-06 19:17:25.000000000 
+0100
@@ -3,12 +3,12 @@
 include(CMakeFindDependencyMacro)
 find_dependency(Qt5Gui @REQUIRED_QT_VERSION@)
 
-find_dependency(KF5Codecs "@KF5_DEP_VERSION@")
-find_dependency(KF5I18n "@KF5_DEP_VERSION@")
-find_dependency(KF5JS "@KF5_DEP_VERSION@")
-find_dependency(KF5KIO "@KF5_DEP_VERSION@")
-find_dependency(KF5Parts "@KF5_DEP_VERSION@")
-find_dependency(KF5TextWidgets "@KF5_DEP_VERSION@")
+find_dependency(KF5Codecs "@KF_DEP_VERSION@")
+find_dependency(KF5I18n "@KF_DEP_VERSION@")
+find_dependency(KF5JS "@KF_DEP_VERSION@")
+find_dependency(KF5KIO "@KF_DEP_VERSION@")
+find_dependency(KF5Parts "@KF_DEP_VERSION@")
+find_dependency(KF5TextWidgets "@KF_DEP_VERSION@")
 
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5KHtmlTargets.cmake")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/po/fr/khtml5.po 
new/khtml-5.79.0/po/fr/khtml5.po
--- old/khtml-5.78.0/po/fr/khtml5.po    2021-01-02 14:15:35.000000000 +0100
+++ new/khtml-5.79.0/po/fr/khtml5.po    2021-02-06 19:17:25.000000000 +0100
@@ -18,20 +18,21 @@
 # Sebastien Renard <[email protected]>, 2013, 2014.
 # Vincent Pinon <[email protected]>, 2016.
 # Simon Depiets <[email protected]>, 2019.
+# Xavier Besnard <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-10-24 02:12+0200\n"
-"PO-Revision-Date: 2019-01-24 12:08+0800\n"
-"Last-Translator: Simon Depiets <[email protected]>\n"
-"Language-Team: French <[email protected]>\n"
+"PO-Revision-Date: 2021-01-12 08:14+0100\n"
+"Last-Translator: Xavier Besnard <[email protected]>\n"
+"Language-Team: FR\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 20.12.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -92,7 +93,7 @@
 #: ecma/debugger/debugwindow.cpp:96
 #, kde-format
 msgid "JavaScript Debugger"
-msgstr "D??bogueur Javascript"
+msgstr "D??bogueur JavaScript"
 
 #: ecma/debugger/debugwindow.cpp:173
 #, kde-format
@@ -127,7 +128,7 @@
 #: ecma/debugger/debugwindow.cpp:204
 #, kde-format
 msgid "Reindent Sources"
-msgstr "R??indenter les sources"
+msgstr "R??-indenter les sources"
 
 #: ecma/debugger/debugwindow.cpp:209
 #, kde-format
@@ -242,7 +243,7 @@
 #: ecma/kjs_html.cpp:2233 ecma/kjs_window.cpp:1944
 #, kde-format
 msgid "Confirmation: JavaScript Popup"
-msgstr "Confirmation??: nouvelle fen??tre Javascript"
+msgstr "Confirmation??: nouvelle fen??tre JavaScript"
 
 #: ecma/kjs_html.cpp:2235
 #, kde-format
@@ -263,7 +264,7 @@
 "submitted?</qt>"
 msgstr ""
 "<qt>Ce site soumet un formulaire qui essaie d'ouvrir <p>%1</p> dans une "
-"nouvelle fen??tre de navigation avec Javascript.<br />Voulez-vous autoriser "
+"nouvelle fen??tre de navigation avec JavaScript.<br />Voulez-vous autoriser "
 "la soumission du formulaire???</qt>"
 
 #: ecma/kjs_html.cpp:2240 ecma/kjs_window.cpp:1952
@@ -282,7 +283,7 @@
 "This site is requesting to open up a new browser window via JavaScript.\n"
 "Do you want to allow this?"
 msgstr ""
-"Ce site essaie d'ouvrir une fen??tre du navigateur avec Javascript.\n"
+"Ce site essaie d'ouvrir une fen??tre du navigateur avec Java script.\n"
 "Voulez-vous l'autoriser???"
 
 #: ecma/kjs_window.cpp:1950
@@ -292,7 +293,7 @@
 "JavaScript.<br />Do you want to allow this?</qt>"
 msgstr ""
 "<qt>Ce site essaie d'ouvrir <p>%1</p>dans une nouvelle fen??tre de navigation 
"
-"avec Javascript.<br />Voulez-vous l'autoriser???</qt>"
+"avec JavaScript.<br />Voulez-vous l'autoriser???</qt>"
 
 #: ecma/kjs_window.cpp:2283
 #, kde-format
@@ -1409,7 +1410,7 @@
 #: khtml_part.cpp:7599
 #, kde-format
 msgid "JavaScript &Debugger"
-msgstr "&D??bogueur Javascript"
+msgstr "&D??bogueur JavaScript"
 
 #: khtml_part.cpp:7632
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/po/pl/khtml5.po 
new/khtml-5.79.0/po/pl/khtml5.po
--- old/khtml-5.78.0/po/pl/khtml5.po    2021-01-02 14:15:35.000000000 +0100
+++ new/khtml-5.79.0/po/pl/khtml5.po    2021-02-06 19:17:25.000000000 +0100
@@ -11,13 +11,13 @@
 # Marta Rybczy??ska <[email protected]>, 2007, 2008, 2009, 2010, 2011, 
2012, 2013.
 # Michal Rudolf <[email protected]>, 2010.
 # Artur Ch??ond <[email protected]>, 2010.
-# ??ukasz Wojni??owicz <[email protected]>, 2011, 2012, 2013, 2014, 
2015, 2016, 2017, 2019.
+# ??ukasz Wojni??owicz <[email protected]>, 2011, 2012, 2013, 2014, 
2015, 2016, 2017, 2019, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-10-24 02:12+0200\n"
-"PO-Revision-Date: 2019-01-13 09:49+0100\n"
+"PO-Revision-Date: 2021-01-31 07:39+0100\n"
 "Last-Translator: ??ukasz Wojni??owicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
 "Language: pl\n"
@@ -108,7 +108,7 @@
 ">\n"
 ">\n"
 ">\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 20.12.1\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 
@@ -782,7 +782,7 @@
 #: khtml_ext.cpp:413
 #, kde-format
 msgid "&Copy Text"
-msgstr "&Kopiuj tekst"
+msgstr "S&kopiuj tekst"
 
 #: khtml_ext.cpp:427
 #, kde-format
@@ -934,7 +934,7 @@
 #: khtml_ext.cpp:875
 #, kde-format
 msgid "Overwrite File?"
-msgstr "Zast??pi?? plik?"
+msgstr "Czy zast??pi?? plik?"
 
 #: khtml_ext.cpp:927
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khtml-5.78.0/po/zh_CN/khtml5.po 
new/khtml-5.79.0/po/zh_CN/khtml5.po
--- old/khtml-5.78.0/po/zh_CN/khtml5.po 2021-01-02 14:15:35.000000000 +0100
+++ new/khtml-5.79.0/po/zh_CN/khtml5.po 2021-02-06 19:17:25.000000000 +0100
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-10-24 02:12+0200\n"
-"PO-Revision-Date: 2021-01-01 14:21\n"
+"PO-Revision-Date: 2021-02-04 11:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to