commit ktp-contact-runner for openSUSE:Factory
Hello community, here is the log from the commit of package ktp-contact-runner for openSUSE:Factory checked in at 2020-04-29 20:50:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ktp-contact-runner (Old) and /work/SRC/openSUSE:Factory/.ktp-contact-runner.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ktp-contact-runner" Wed Apr 29 20:50:11 2020 rev:13 rq:797011 version:20.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ktp-contact-runner/ktp-contact-runner.changes 2020-03-12 23:06:32.503187387 +0100 +++ /work/SRC/openSUSE:Factory/.ktp-contact-runner.new.2738/ktp-contact-runner.changes 2020-04-29 20:51:22.100858509 +0200 @@ -1,0 +2,27 @@ +Thu Apr 23 12:22:58 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-04-apps-update +- No code change since 20.03.90 + +------------------------------------------------------------------- +Sun Apr 5 20:30:31 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-rc +- No code change since 20.03.80 + +------------------------------------------------------------------- +Sun Mar 22 09:17:28 UTC 2020 - Luca Beltrame <lbeltrame@kde.org> + +- Update to 20.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-beta +- No code change since 19.12.3 + +------------------------------------------------------------------- Old: ---- ktp-contact-runner-19.12.3.tar.xz ktp-contact-runner-19.12.3.tar.xz.sig New: ---- ktp-contact-runner-20.04.0.tar.xz ktp-contact-runner-20.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ktp-contact-runner.spec ++++++ --- /var/tmp/diff_new_pack.cHoiQX/_old 2020-04-29 20:51:22.892860323 +0200 +++ /var/tmp/diff_new_pack.cHoiQX/_new 2020-04-29 20:51:22.892860323 +0200 @@ -16,41 +16,40 @@ # -%define kf5_version 5.26.0 +%define kf5_version 5.60.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: ktp-contact-runner -Version: 19.12.3 +Version: 20.04.0 Release: 0 Summary: Telepathy Krunner plugin License: LGPL-2.1-or-later Group: Productivity/Networking/Instant Messenger URL: https://community.kde.org/Real-Time_Communication_and_Collaboration 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: fdupes BuildRequires: kf5-filesystem -BuildRequires: ki18n-devel -BuildRequires: krunner-devel -BuildRequires: kservice-devel -BuildRequires: ktp-common-internals-devel -BuildRequires: kwallet-devel -BuildRequires: pkgconfig BuildRequires: telepathy-logger-qt5-devel BuildRequires: telepathy-qt5-devel +BuildRequires: cmake(KF5I18n) +BuildRequires: cmake(KF5Runner) +BuildRequires: cmake(KF5Service) +BuildRequires: cmake(KF5Wallet) BuildRequires: cmake(KF5WindowSystem) -BuildRequires: pkgconfig(Qt5Core) -BuildRequires: pkgconfig(Qt5DBus) -BuildRequires: pkgconfig(Qt5Network) -BuildRequires: pkgconfig(Qt5Widgets) +BuildRequires: cmake(KTp) +BuildRequires: cmake(Qt5Core) +BuildRequires: cmake(Qt5DBus) +BuildRequires: cmake(Qt5Network) +BuildRequires: cmake(Qt5Widgets) +Recommends: %{name}-lang Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -Recommends: %{name}-lang +%if %{with lang} +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif %description A KRunner plugin to find your Telepathy contacts. ++++++ ktp-contact-runner-19.12.3.tar.xz -> ktp-contact-runner-20.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktp-contact-runner-19.12.3/CMakeLists.txt new/ktp-contact-runner-20.04.0/CMakeLists.txt --- old/ktp-contact-runner-19.12.3/CMakeLists.txt 2020-03-03 01:30:24.000000000 +0100 +++ new/ktp-contact-runner-20.04.0/CMakeLists.txt 2020-04-17 02:37:03.000000000 +0200 @@ -5,10 +5,10 @@ include(FeatureSummary) # KDE Application Version, managed by release script -set(KDE_APPLICATIONS_VERSION_MAJOR "19") -set(KDE_APPLICATIONS_VERSION_MINOR "12") -set(KDE_APPLICATIONS_VERSION_MICRO "3") -set(KTP_CONTACT_RUNNER_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") +set(RELEASE_SERVICE_VERSION_MAJOR "20") +set(RELEASE_SERVICE_VERSION_MINOR "04") +set(RELEASE_SERVICE_VERSION_MICRO "0") +set(KTP_CONTACT_RUNNER_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") set(IS_KTP_INTERNAL_MODULE TRUE) find_package(ECM 1.0.0 REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktp-contact-runner-19.12.3/po/en_GB/plasma_runner_ktp_contacts.po new/ktp-contact-runner-20.04.0/po/en_GB/plasma_runner_ktp_contacts.po --- old/ktp-contact-runner-19.12.3/po/en_GB/plasma_runner_ktp_contacts.po 2020-03-03 01:30:22.000000000 +0100 +++ new/ktp-contact-runner-20.04.0/po/en_GB/plasma_runner_ktp_contacts.po 2020-04-17 02:37:02.000000000 +0200 @@ -9,7 +9,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2017-11-26 14:20+0000\n" "Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n" -"Language-Team: British English <kde-i18n-doc@kde.org>\n" +"Language-Team: British English <kde-l10n-en_gb@kde.org>\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktp-contact-runner-19.12.3/po/nb/plasma_runner_ktp_contacts.po new/ktp-contact-runner-20.04.0/po/nb/plasma_runner_ktp_contacts.po --- old/ktp-contact-runner-19.12.3/po/nb/plasma_runner_ktp_contacts.po 2020-03-03 01:30:23.000000000 +0100 +++ new/ktp-contact-runner-20.04.0/po/nb/plasma_runner_ktp_contacts.po 2020-04-17 02:37:02.000000000 +0200 @@ -8,7 +8,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2012-11-22 19:21+0100\n" "Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n" -"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n" +"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktp-contact-runner-19.12.3/po/nn/plasma_runner_ktp_contacts.po new/ktp-contact-runner-20.04.0/po/nn/plasma_runner_ktp_contacts.po --- old/ktp-contact-runner-19.12.3/po/nn/plasma_runner_ktp_contacts.po 2020-03-03 01:30:23.000000000 +0100 +++ new/ktp-contact-runner-20.04.0/po/nn/plasma_runner_ktp_contacts.po 2020-04-17 02:37:03.000000000 +0200 @@ -8,7 +8,7 @@ "POT-Creation-Date: 2019-05-20 03:11+0200\n" "PO-Revision-Date: 2018-07-03 10:17+0100\n" "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n" -"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" +"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktp-contact-runner-19.12.3/po/zh_CN/plasma_runner_ktp_contacts.po new/ktp-contact-runner-20.04.0/po/zh_CN/plasma_runner_ktp_contacts.po --- old/ktp-contact-runner-19.12.3/po/zh_CN/plasma_runner_ktp_contacts.po 2020-03-03 01:30:24.000000000 +0100 +++ new/ktp-contact-runner-20.04.0/po/zh_CN/plasma_runner_ktp_contacts.po 2020-04-17 02:37:03.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:11+0200\n" -"PO-Revision-Date: 2020-01-20 21:56\n" +"PO-Revision-Date: 2020-03-25 19:57\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"
participants (1)
-
root