Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ktimer for openSUSE:Factory checked in at 2021-04-25 21:27:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ktimer (Old) and /work/SRC/openSUSE:Factory/.ktimer.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktimer" Sun Apr 25 21:27:01 2021 rev:119 rq:887736 version:21.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes 2021-03-10 08:55:14.842764630 +0100 +++ /work/SRC/openSUSE:Factory/.ktimer.new.12324/ktimer.changes 2021-04-25 21:28:18.072493872 +0200 @@ -1,0 +2,25 @@ +Fri Apr 16 16:12:45 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.04 +- No code change since 21.03.90 + +------------------------------------------------------------------- +Fri Apr 9 17:41:11 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.03.90 + * New feature release +- No code change since 21.03.80 + +------------------------------------------------------------------- +Sun Mar 21 13:29:06 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.03.80 + * New feature release +- Changes since 20.12.3: + * Allow to install po/doctool files + * Use Q_EMIT + +------------------------------------------------------------------- Old: ---- ktimer-20.12.3.tar.xz ktimer-20.12.3.tar.xz.sig New: ---- ktimer-21.04.0.tar.xz ktimer-21.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ktimer.spec ++++++ --- /var/tmp/diff_new_pack.xON3sT/_old 2021-04-25 21:28:18.516494406 +0200 +++ /var/tmp/diff_new_pack.xON3sT/_new 2021-04-25 21:28:18.520494410 +0200 @@ -1,7 +1,7 @@ # # spec file for package ktimer # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: ktimer -Version: 20.12.3 +Version: 21.04.0 Release: 0 Summary: Countdown Launcher License: GPL-2.0-or-later Group: Productivity/Other -URL: https://www.kde.org +URL: https://apps.kde.org/ktimer Source: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz +%if %{with lang} +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif BuildRequires: extra-cmake-modules BuildRequires: update-desktop-files BuildRequires: cmake(KF5DBusAddons) @@ -40,19 +44,15 @@ BuildRequires: cmake(Qt5Widgets) Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -%if %{with lang} -Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig -Source2: applications.keyring -%endif Recommends: %{name}-lang %description -Countdown launching tool for KDE +Countdown launching tool by KDE %lang_package %prep -%setup -q -n ktimer-%{version} +%autosetup -p1 -n ktimer-%{version} %build %cmake_kf5 -d build @@ -71,7 +71,7 @@ %doc %lang(en) %{_kf5_htmldir}/en/ktimer/ %{_kf5_applicationsdir}/org.kde.ktimer.desktop %{_kf5_bindir}/ktimer -%{_kf5_iconsdir}/hicolor/*/*/*.png +%{_kf5_iconsdir}/hicolor/*/apps/ktimer.png %{_kf5_appstreamdir}/org.kde.ktimer.appdata.xml %if %{with lang} ++++++ ktimer-20.12.3.tar.xz -> ktimer-21.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/CMakeLists.txt new/ktimer-21.04.0/CMakeLists.txt --- old/ktimer-20.12.3/CMakeLists.txt 2021-03-02 01:41:09.000000000 +0100 +++ new/ktimer-21.04.0/CMakeLists.txt 2021-04-14 17:13:02.000000000 +0200 @@ -1,7 +1,7 @@ # KDE Application Version, managed by release script -set (RELEASE_SERVICE_VERSION_MAJOR "20") -set (RELEASE_SERVICE_VERSION_MINOR "12") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MAJOR "21") +set (RELEASE_SERVICE_VERSION_MINOR "04") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") cmake_minimum_required (VERSION 3.5 FATAL_ERROR) project(ktimer VERSION ${RELEASE_SERVICE_VERSION}) @@ -53,13 +53,12 @@ ########### install files ############### install( PROGRAMS org.kde.ktimer.desktop DESTINATION ${KDE_INSTALL_APPDIR}) -install(FILES org.kde.ktimer.appdata.xml DESTINATION ${CMAKE_INSTALL_METAINFODIR}) +install(FILES org.kde.ktimer.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) ecm_install_icons( ICONS 128-apps-ktimer.png 16-apps-ktimer.png 32-apps-ktimer.png 48-apps-ktimer.png DESTINATION ${KDE_INSTALL_ICONDIR} THEME hicolor ) add_subdirectory(doc) -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) -if (KF5DocTools_FOUND) - kdoctools_install(po) -endif() +kdoctools_install(po) + +feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/ktimer.cpp new/ktimer-21.04.0/ktimer.cpp --- old/ktimer-20.12.3/ktimer.cpp 2021-02-25 00:18:25.000000000 +0100 +++ new/ktimer-21.04.0/ktimer.cpp 2021-04-14 17:13:02.000000000 +0200 @@ -467,8 +467,8 @@ if( d->state==Stopped ) setValue( sec ); - emit delayChanged( this, sec ); - emit changed( this ); + Q_EMIT delayChanged( this, sec ); + Q_EMIT changed( this ); } } @@ -483,8 +483,8 @@ { if( d->command!=cmd ) { d->command = cmd; - emit commandChanged( this, cmd ); - emit changed( this ); + Q_EMIT commandChanged( this, cmd ); + Q_EMIT changed( this ); } } @@ -499,8 +499,8 @@ { if( d->loop!=loop ) { d->loop = loop; - emit loopChanged( this, loop ); - emit changed( this ); + Q_EMIT loopChanged( this, loop ); + Q_EMIT changed( this ); } } @@ -515,8 +515,8 @@ { if( d->oneInstance!=one ) { d->oneInstance = one; - emit oneInstanceChanged( this, one ); - emit changed( this ); + Q_EMIT oneInstanceChanged( this, one ); + Q_EMIT changed( this ); } } @@ -531,8 +531,8 @@ { if( d->consecutive!=consecutive ) { d->consecutive = consecutive; - emit consecutiveChanged( this, consecutive ); - emit changed( this ); + Q_EMIT consecutiveChanged( this, consecutive ); + Q_EMIT changed( this ); } } @@ -547,8 +547,8 @@ { if( d->value!=value ) { d->value = value; - emit valueChanged( this, value ); - emit changed( this ); + Q_EMIT valueChanged( this, value ); + Q_EMIT changed( this ); } } @@ -571,8 +571,8 @@ setValue( d->delay ); d->state = state; - emit stateChanged( this, state ); - emit changed( this ); + Q_EMIT stateChanged( this, state ); + Q_EMIT changed( this ); } } @@ -600,8 +600,8 @@ if (i != -1) delete d->processes.takeAt(i); - if( !ok ) emit error( this ); - emit finished( this, !ok ); + if( !ok ) Q_EMIT error( this ); + Q_EMIT finished( this, !ok ); } @@ -621,14 +621,14 @@ #else proc->start(d->command); #endif - emit fired( this ); + Q_EMIT fired( this ); } if(proc->state() == QProcess::NotRunning) { const int i = d->processes.indexOf( proc); if (i != -1) delete d->processes.takeAt(i); - emit error( this ); - emit finished( this, true ); + Q_EMIT error( this ); + Q_EMIT finished( this, true ); } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/org.kde.ktimer.appdata.xml new/ktimer-21.04.0/org.kde.ktimer.appdata.xml --- old/ktimer-20.12.3/org.kde.ktimer.appdata.xml 2021-02-25 00:18:25.000000000 +0100 +++ new/ktimer-21.04.0/org.kde.ktimer.appdata.xml 2021-04-14 17:13:02.000000000 +0200 @@ -141,9 +141,9 @@ </provides> <launchable type="desktop-id">org.kde.ktimer.desktop</launchable> <releases> + <release version="21.04.0" date="2021-04-22"/> <release version="20.12.3" date="2021-03-04"/> <release version="20.12.2" date="2021-02-04"/> <release version="20.12.1" date="2021-01-07"/> - <release version="20.12.0" date="2020-12-10"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/po/ca/docs/ktimer/index.docbook new/ktimer-21.04.0/po/ca/docs/ktimer/index.docbook --- old/ktimer-20.12.3/po/ca/docs/ktimer/index.docbook 2021-03-02 01:41:09.000000000 +0100 +++ new/ktimer-21.04.0/po/ca/docs/ktimer/index.docbook 2021-04-16 10:39:50.000000000 +0200 @@ -173,7 +173,7 @@ </screenshot> <para ->Ara s'ha programat l'execuci?? de dos &konqueror;. La de dalt comen??ar?? en 20 segons, i la de sota est?? actualment aturada. Podeu afegir m??s ordres. Tot i que mai desitgeu tenir tants &konqueror;, ??s probable que vulgueu utilitzar altres executables. Potser el vostre propi script de l'int??rpret d'ordres.</para> +>Ara s'ha programat l'execuci?? de dos &konqueror;. La de dalt comen??ar?? en 20 segons, i la de baix est?? actualment aturada. Podeu afegir m??s ordres. Tot i que mai desitgeu tenir tants &konqueror;, ??s probable que vulgueu utilitzar altres executables. Potser el vostre propi script de l'int??rpret d'ordres.</para> <para >Si voleu iniciar una tasca nova amb un retard determinat despr??s de >finalitzar la tasca anterior a la llista, marqueu l'opci?? <guilabel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/po/ru/docs/ktimer/index.docbook new/ktimer-21.04.0/po/ru/docs/ktimer/index.docbook --- old/ktimer-20.12.3/po/ru/docs/ktimer/index.docbook 2021-03-02 01:41:09.000000000 +0100 +++ new/ktimer-21.04.0/po/ru/docs/ktimer/index.docbook 1970-01-01 01:00:00.000000000 +0100 @@ -1,290 +0,0 @@ -<?xml version="1.0" ?> -<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [ - <!ENTITY A.L.Spehr "<personname -><firstname ->A. L.</firstname -><surname ->Spehr</surname -></personname ->"> - <!ENTITY A.L.Spehr.email "<email ->[email protected]</email ->"> - <!ENTITY Stefan.Schimanski "<personname -><firstname ->Stefan</firstname -><surname ->Schimanski</surname -></personname ->"> - <!ENTITY Stefan.Schimanski.email "<email ->[email protected]</email ->"> - <!ENTITY % Russian "INCLUDE"> - <!ENTITY % addindex "IGNORE"> -]> - -<book id="ktimer" lang="&language;"> - -<bookinfo> -<title ->?????????????????????? ???????????????????????? &ktimer;</title> - -<authorgroup> -<author -><firstname ->A. L.</firstname -> <othername -></othername -> <surname ->Spehr</surname -> <affiliation -> <address ->&A.L.Spehr.email;</address> -</affiliation> -</author> -<othercredit role="translator" -><firstname ->????????????????</firstname -><surname ->??????????</surname -><affiliation -><address -><email ->[email protected]</email -></address -></affiliation -><contrib ->?????????????? ???? ?????????????? ????????</contrib -></othercredit -><othercredit role="translator" -><firstname ->??????????</firstname -><surname ->????????????????</surname -><affiliation -><address -><email ->[email protected]</email -></address -></affiliation -><contrib ->???????????????????? ????????????????</contrib -></othercredit -> -</authorgroup> - -<legalnotice ->&FDLNotice;</legalnotice> - -<date ->2018-03-04</date> -<releaseinfo ->???????????????????? KDE 18.04</releaseinfo> - -<abstract> -<para ->&ktimer; ??? ?????? ????????????????????, ?????????????????????? ?????????????????? ???????????? ???????????????????? ???? ???????????????????? ?????????????????????????? ??????????????. </para> -</abstract> - - -<keywordset> -<keyword ->KDE</keyword> -<keyword ->kdeutils</keyword> -<keyword ->ktimer</keyword> -<keyword ->???????????????? ????????????</keyword> -</keywordset> - -</bookinfo> - -<chapter id="introduction"> -<title ->????????????????</title> -<para ->&ktimer; ?????????????????? ?????????????????? ???????????????????? ???????????? ???? ???????????????????????? ??????????????. ?????????????? ???????????????? ??????????????????, ????????????????????, ???????????????? ?????? ??????????????????.</para -> - -</chapter> - -<chapter id="using-ktimer"> -<title ->?????????????????????????? ???????????????????? &ktimer;</title> - -<screenshot> -<screeninfo ->?????????????? ?????? ???????? ???????????????????? &ktimer; ?????? ???????????? ??????????????</screeninfo> - <mediaobject> - <imageobject> - <imagedata fileref="main.png" format="PNG"/> - </imageobject> - <textobject> - <phrase ->?????????????? ???????? &ktimer;</phrase> - </textobject> - </mediaobject> -</screenshot> - -<para ->?????????? ????????????, ???????????????? ???????????? ???????????????? ???????????? <guibutton ->????????????????</guibutton ->. ?????????? ?????????????? ??????????????, ?????????????? ?????????? ??????????????????, ?? ???????? ?????????? <guilabel ->??????????????????:</guilabel ->. ???????????? ?????????????????? ?????????????????? ?????????????? ?????? ?????????????????? ??????. ?????????? ?????????????????????????? ?????????? ??????????????, ?????????????????? ?????????????? ?????????? ????????????????.</para> - -<screenshot> -<screeninfo ->?????????????? ?????? ???????? ???????????????????? &ktimer; ?????????? ???????????????? ?????????????? ?????????????? &konqueror;</screeninfo> - <mediaobject> - <imageobject> - <imagedata fileref="first.png" format="PNG"/> - </imageobject> - <textobject> - <phrase ->???????????????????? ??????????????</phrase> - </textobject> - </mediaobject> -</screenshot> - -<para ->?? ???????????????? ?????????????? ???????????????????? &konqueror;. ???? ?????????????????? ???? ?????????? ?????????????? ?????????? 100 ???????????? ?????????? ???????????? ?????????????????? ??????????????.</para> - -<screenshot> -<screeninfo ->???????????? ??????????????: ???? ?????????????? &konqueror; ???????????????? 56 ????????????.</screeninfo> - <mediaobject> - <imageobject> - <imagedata fileref="running.png" format="PNG"/> - </imageobject> - <textobject> - <phrase ->???????????????? 56 ????????????</phrase> - </textobject> - </mediaobject> -</screenshot> - -<para ->?? ???????????? ???????????????? ????????????. ???? ???????? ???????????? ???????????? ???????????????? ?????? ???????????????? ??????????????: &konqueror; ?????????? ?????????????? ?????????? 56 ????????????.</para> - -<para ->???????????????? ?????????????????? ???????????? ?????????????????? ?????? ?????????????????? ?????????????????????????????????? ?????????????????? ??????????????.</para> - -<screenshot> -<screeninfo ->???????????????????? ?????????????? ??????????????</screeninfo> - <mediaobject> - <imageobject> - <imagedata fileref="two_at_once.png" format="PNG"/> - </imageobject> - <textobject> - <phrase ->???????????? ?????? ???????????? ???????????????????? &konqueror;</phrase> - </textobject> - </mediaobject> -</screenshot> - -<para ->???????????? ???????????????????????? ???????????? ?????????? ???????? ?????????????????????? &konqueror;. ????????????, ?????????????????????????? ?? ?????????????? ????????????, ???????????????? ???????????????????? ?????????? 20 ????????????; ????????????, ?????????????????????????? ??????????, ??????????????????????????. ???????? ?? ???? ???????????? ?????????????? ?????????? ?????????????????????? &konqueror;, ???????????? ????????????????, ?????? ?????????????????????? ?????????????????? ???????????? ??????????????, ????????????????, ?????????????????????? ???????????????? ????????????????.</para> - -<para ->???????? ?????????????????? ???????????????????????????????? ???????????? ???????????? ?? ???????????????????????? ??????????????????, ???????????????????? ???????????? <guilabel ->???????????????????????????????? ???????????? ????????????????</guilabel -> ?? ?????????????? ???????????????????????? ???????????????? ?? ???????? <guilabel ->????????????????</guilabel ->. </para> - -<sect1 id="settings"> -<title ->??????????????????</title> -<para> - -<variablelist> - <varlistentry> - <term -><guibutton ->????????????????</guibutton -></term> - <listitem -><para -><action ->???????????????? ???????????? ??????????????.</action -></para -></listitem> - </varlistentry> - - <varlistentry> - <term -><guibutton ->??????????????</guibutton -></term> - <listitem -><para -><action ->???????????????? ???????????????? ??????????????.</action -></para -></listitem> - </varlistentry> - - <varlistentry> - <term -><guibutton ->??????????????</guibutton -></term> - <listitem -><para -><action ->???????????? ?????????????????????? ????????????????????????.</action -></para -></listitem> - </varlistentry> -</variablelist> - - -</para> -</sect1> -</chapter> - - - - -<chapter id="credits"> - -<title ->?????????????????? ?????????? ?? ????????????????</title> - -<para ->&ktimer; </para> - - -<!--List all the copyright holders here--> -<para ->?????????????????? ?????????? ???? ??????????????????: &Stefan.Schimanski; &Stefan.Schimanski.email;, 2001</para> - -<para ->?????????????????? ?????????? ???? ????????????????????????: &A.L.Spehr; &A.L.Spehr.email;, 2008</para> - -<para ->???????????????? ??????????<email ->[email protected]</email -></para -><para ->?????????? ????????????????<email ->[email protected]</email -></para -> &underFDL; &underGPL; </chapter> - -&documentation.index; -</book> -<!-- -Local Variables: -mode: sgml -sgml-minimize-attributes: nil -sgml-general-insert-case: lower -sgml-indent-step:0 -sgml-indent-data:nil -End: ---> - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.12.3/po/zh_CN/ktimer.po new/ktimer-21.04.0/po/zh_CN/ktimer.po --- old/ktimer-20.12.3/po/zh_CN/ktimer.po 2021-03-02 01:41:09.000000000 +0100 +++ new/ktimer-21.04.0/po/zh_CN/ktimer.po 2021-04-16 10:39:50.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:13+0200\n" -"PO-Revision-Date: 2021-02-04 12:01\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"
