Hello community,

here is the log from the commit of package kcalc for openSUSE:Factory checked 
in at 2019-01-21 10:11:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcalc (Old)
 and      /work/SRC/openSUSE:Factory/.kcalc.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcalc"

Mon Jan 21 10:11:40 2019 rev:92 rq:665111 version:18.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes      2018-12-19 
13:32:58.868652616 +0100
+++ /work/SRC/openSUSE:Factory/.kcalc.new.28833/kcalc.changes   2019-01-21 
10:11:42.302597389 +0100
@@ -1,0 +2,11 @@
+Fri Jan 11 05:42:04 UTC 2019 - lbeltr...@kde.org
+
+- Update to 18.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12.1.php
+- Changes since 18.12.0:
+  * Use more https in links
+  * Fix running the test after requiring ECM 5.46.0
+
+-------------------------------------------------------------------

Old:
----
  kcalc-18.12.0.tar.xz

New:
----
  kcalc-18.12.1.tar.xz

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

Other differences:
------------------
++++++ kcalc.spec ++++++
--- /var/tmp/diff_new_pack.KH2LBG/_old  2019-01-21 10:11:42.730596956 +0100
+++ /var/tmp/diff_new_pack.KH2LBG/_new  2019-01-21 10:11:42.734596953 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kcalc
-Version:        18.12.0
+Version:        18.12.1
 Release:        0
 Summary:        Scientific Calculator
 License:        GPL-2.0-or-later

++++++ kcalc-18.12.0.tar.xz -> kcalc-18.12.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/CMakeLists.txt 
new/kcalc-18.12.1/CMakeLists.txt
--- old/kcalc-18.12.0/CMakeLists.txt    2018-12-07 01:26:01.000000000 +0100
+++ new/kcalc-18.12.1/CMakeLists.txt    2019-01-08 01:09:16.000000000 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "18")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 project(kcalc VERSION ${KDE_APPLICATIONS_VERSION})
 
@@ -51,7 +51,7 @@
 find_package(GMP)
 set_package_properties(GMP PROPERTIES
     DESCRIPTION "The GNU Multiple Precision Arithmetic Library"
-    URL "http://gmplib.org/";
+    URL "https://gmplib.org/";
     TYPE REQUIRED
     PURPOSE "Required for building KCalc."
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/kcalc.cpp new/kcalc-18.12.1/kcalc.cpp
--- old/kcalc-18.12.0/kcalc.cpp 2018-12-05 00:34:37.000000000 +0100
+++ new/kcalc-18.12.1/kcalc.cpp 2019-01-04 22:58:31.000000000 +0100
@@ -2296,7 +2296,7 @@
                               "Copyright © 2003-2005, Klaus Niederkr" 
"\xc3\xbc" "ger\n"
                               "Copyright © 1996-2000, Bernd Johannes Wuebben"),
                          QStringLiteral(),
-                         
QStringLiteral("http://utils.kde.org/projects/kcalc";));
+                         
QStringLiteral("https://utils.kde.org/projects/kcalc";));
 
        // Klaus Niederkrueger
     aboutData.addAuthor(i18n("Klaus Niederkr" "\xc3\xbc" "ger"), QString(), 
QStringLiteral("knied...@math.uni-koeln.de"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/knumber/tests/CMakeLists.txt 
new/kcalc-18.12.1/knumber/tests/CMakeLists.txt
--- old/kcalc-18.12.0/knumber/tests/CMakeLists.txt      2018-12-05 
00:34:37.000000000 +0100
+++ new/kcalc-18.12.1/knumber/tests/CMakeLists.txt      2019-01-04 
22:58:31.000000000 +0100
@@ -1,10 +1,9 @@
-set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
 include_directories( ${CMAKE_SOURCE_DIR}/knumber  )
 
-set(knumbertest_SRCS knumbertest.cpp ${libknumber_la_SRCS})
+include(ECMAddTests)
 
-add_executable(knumbertest ${knumbertest_SRCS})
-add_test(KNumber knumbertest)
-ecm_mark_as_test(knumbertest)
+ecm_add_test(knumbertest.cpp ${libknumber_la_SRCS}
+    LINK_LIBRARIES Qt5::Core ${GMP_LIBRARIES}
+    TEST_NAME knumbertest
+)
 
-target_link_libraries(knumbertest Qt5::Core ${GMP_LIBRARIES})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/org.kde.kcalc.appdata.xml 
new/kcalc-18.12.1/org.kde.kcalc.appdata.xml
--- old/kcalc-18.12.0/org.kde.kcalc.appdata.xml 2018-12-05 00:34:37.000000000 
+0100
+++ new/kcalc-18.12.1/org.kde.kcalc.appdata.xml 2019-01-04 22:58:31.000000000 
+0100
@@ -109,7 +109,7 @@
     <p xml:lang="uk">KCalc вміє усе, що ви могли б очікувати від інженерного 
калькулятора, а крім того, вміє таке:</p>
     <p xml:lang="x-test">xxKCalc has everything you would expect from a 
scientific calculator, plus:xx</p>
     <p xml:lang="zh-CN">KCalc 具有您所期待的科学计算器的全部功能,以及:</p>
-    <p xml:lang="zh-TW">KCalac 有所有您預期科學計算機會有的功能,再加上:</p>
+    <p xml:lang="zh-TW">KDE 計算機有所有您預期科學計算機會有的功能,再加上:</p>
   </description>
   <url type="homepage">https://utils.kde.org/projects/kcalc/</url>
   <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?product=kcalc</url>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/po/de/docs/kcalc/commands.docbook 
new/kcalc-18.12.1/po/de/docs/kcalc/commands.docbook
--- old/kcalc-18.12.0/po/de/docs/kcalc/commands.docbook 2018-12-07 
01:26:00.000000000 +0100
+++ new/kcalc-18.12.1/po/de/docs/kcalc/commands.docbook 2019-01-08 
01:09:16.000000000 +0100
@@ -40,7 +40,7 @@
 <listitem
 ><para
 ><action
->Enhält Lichtgeschwindigkeit, Elementarladung, Wellenimpedanz des Vakuums, 
Magnetische Feldkonstante und Dielektrizitätskonstante des Vakuums.</action>
+>Enthält Lichtgeschwindigkeit, Elementarladung, Wellenimpedanz des Vakuums, 
Magnetische Feldkonstante und Dielektrizitätskonstante des Vakuums.</action>
 </para
 ></listitem>
 </varlistentry>
@@ -57,7 +57,7 @@
 <listitem
 ><para
 ><action
->Enhält Plancksche Konstante, Elementarladung und 
Feinstrukturkonstante.</action>
+>Enthält Plancksche Konstante, Elementarladung und 
Feinstrukturkonstante.</action>
 </para
 ></listitem>
 </varlistentry>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/po/de/docs/kcalc/index.docbook 
new/kcalc-18.12.1/po/de/docs/kcalc/index.docbook
--- old/kcalc-18.12.0/po/de/docs/kcalc/index.docbook    2018-12-07 
01:26:00.000000000 +0100
+++ new/kcalc-18.12.1/po/de/docs/kcalc/index.docbook    2019-01-08 
01:09:16.000000000 +0100
@@ -218,8 +218,8 @@
 >Im Menü <guimenu
 >Einstellungen</guimenu
 > können Sie einen Modus für &kcalc; auswählen: Es gibt einen <link 
 > linkend="simple-mode"
->einfachen, einen </link
-> or <link linkend="science-mode"
+>einfachen</link
+>, einen <link linkend="science-mode"
 >wissenschaftlichen</link
 >, einen <link linkend="statistical-mode"
 >statistischen</link
@@ -806,7 +806,7 @@
 > bis <guibutton
 >F</guibutton
 > wird nur im <guilabel
->Hexl</guilabel
+>Hex</guilabel
 >-Modus angezeigt. </para>
 </sect1>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/po/pl/kcalc.po 
new/kcalc-18.12.1/po/pl/kcalc.po
--- old/kcalc-18.12.0/po/pl/kcalc.po    2018-12-07 01:25:59.000000000 +0100
+++ new/kcalc-18.12.1/po/pl/kcalc.po    2019-01-08 01:09:16.000000000 +0100
@@ -1,5 +1,5 @@
 # translation of kcalc.po to Polish
-# Version: $Revision: 1528210 $
+# Version: $Revision: 1530953 $
 # translation of kcalc.po to
 # KTranslator Generated File
 # Major part translated by Piotr Roszatycki <dex...@fnet.pl>
@@ -9,13 +9,13 @@
 # Krzysztof Lichota <lich...@mimuw.edu.pl>, 2005, 2006.
 # Marta Rybczyńska <kde-i...@rybczynska.net>, 2009.
 # Artur Chłond <eugenewo...@o2.pl>, 2011.
-# Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>, 2012, 2013, 2014, 2015, 
2017.
+# Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>, 2012, 2013, 2014, 2015, 
2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: kcalc\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-11-12 06:55+0100\n"
-"PO-Revision-Date: 2017-12-09 07:02+0100\n"
+"PO-Revision-Date: 2018-12-16 06:12+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
 "Language: pl\n"
@@ -290,7 +290,7 @@
 #: general.ui:199
 #, kde-format
 msgid "Repeat operation for each result"
-msgstr ""
+msgstr "Powtórz działanie dla każdego wyniku"
 
 #: kcalc.cpp:57
 #, kde-format
@@ -995,7 +995,7 @@
 #: kcalc.kcfg:107
 #, kde-format
 msgid "Enables that the last operation is repeated when \"=\" is pressed"
-msgstr ""
+msgstr "Umożliwia powtórzenie ostatniego działania po naciśnięciu \"=\""
 
 #. i18n: ectx: label, entry (CalculatorMode), group (General)
 #: kcalc.kcfg:113
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-18.12.0/po/zh_CN/kcalc.po 
new/kcalc-18.12.1/po/zh_CN/kcalc.po
--- old/kcalc-18.12.0/po/zh_CN/kcalc.po 2018-12-07 01:26:00.000000000 +0100
+++ new/kcalc-18.12.1/po/zh_CN/kcalc.po 2019-01-08 01:09:16.000000000 +0100
@@ -14,7 +14,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-11-12 06:55+0100\n"
-"PO-Revision-Date: 2018-11-12 09:28\n"
+"PO-Revision-Date: 2019-01-05 20:55\n"
 "Last-Translator: guoyunhe <i...@guoyunhe.me>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -286,7 +286,7 @@
 #: general.ui:199
 #, kde-format
 msgid "Repeat operation for each result"
-msgstr ""
+msgstr "对每个结果重复操作"
 
 #: kcalc.cpp:57
 #, kde-format
@@ -987,7 +987,7 @@
 #: kcalc.kcfg:107
 #, kde-format
 msgid "Enables that the last operation is repeated when \"=\" is pressed"
-msgstr ""
+msgstr "启用按“=”键重复最后一个运算"
 
 #. i18n: ectx: label, entry (CalculatorMode), group (General)
 #: kcalc.kcfg:113


Reply via email to