Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kpeople5 for openSUSE:Factory 
checked in at 2021-11-15 15:25:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpeople5 (Old)
 and      /work/SRC/openSUSE:Factory/.kpeople5.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpeople5"

Mon Nov 15 15:25:34 2021 rev:82 rq:931106 version:5.88.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpeople5/kpeople5.changes        2021-10-18 
22:00:45.834031578 +0200
+++ /work/SRC/openSUSE:Factory/.kpeople5.new.1890/kpeople5.changes      
2021-11-15 15:26:55.969832445 +0100
@@ -1,0 +2,17 @@
+Sun Nov  7 09:13:31 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Strip 'Source' URL for faster submissions
+
+-------------------------------------------------------------------
+Sun Nov  7 09:08:17 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.88.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.88.0
+- Changes since 5.87.0:
+  * Use const'ref here
+  * Add FreeBSD CI
+  * Add Android CI
+
+-------------------------------------------------------------------

Old:
----
  kpeople-5.87.0.tar.xz
  kpeople-5.87.0.tar.xz.sig

New:
----
  kpeople-5.88.0.tar.xz
  kpeople-5.88.0.tar.xz.sig

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

Other differences:
------------------
++++++ kpeople5.spec ++++++
--- /var/tmp/diff_new_pack.qExwUt/_old  2021-11-15 15:26:56.437832576 +0100
+++ /var/tmp/diff_new_pack.qExwUt/_new  2021-11-15 15:26:56.437832576 +0100
@@ -17,22 +17,22 @@
 
 
 %define rname kpeople
-%define _tar_path 5.87
+%define _tar_path 5.88
 # 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:           kpeople5
-Version:        5.87.0
+Version:        5.88.0
 Release:        0
 Summary:        Library for access to contacts and identity holders
 License:        LGPL-2.1-or-later
 Group:          Development/Libraries/KDE
 URL:            https://www.kde.org
-Source:         
https://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz
+Source:         %{rname}-%{version}.tar.xz
 %if %{with lang}
-Source1:        
https://download.kde.org/stable/frameworks/%{_tar_path}/%{rname}-%{version}.tar.xz.sig
+Source1:        %{rname}-%{version}.tar.xz.sig
 Source2:        frameworks.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{_kf5_version}


++++++ kpeople-5.87.0.tar.xz -> kpeople-5.88.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/.gitlab-ci.yml 
new/kpeople-5.88.0/.gitlab-ci.yml
--- old/kpeople-5.87.0/.gitlab-ci.yml   2021-10-02 16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/.gitlab-ci.yml   2021-11-06 14:23:30.000000000 +0100
@@ -3,3 +3,5 @@
 
 include:
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml
+  - 
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
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/CMakeLists.txt 
new/kpeople-5.88.0/CMakeLists.txt
--- old/kpeople-5.87.0/CMakeLists.txt   2021-10-02 16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/CMakeLists.txt   2021-11-06 14:23:30.000000000 +0100
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.87.0") # handled by release scripts
+set(KF_VERSION "5.88.0") # handled by release scripts
 set(KF_DEP_VERSION "5.87.0") # handled by release scripts
 project (KPeople VERSION ${KF_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/examples/contactlistwidgets.cpp 
new/kpeople-5.88.0/examples/contactlistwidgets.cpp
--- old/kpeople-5.87.0/examples/contactlistwidgets.cpp  2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/examples/contactlistwidgets.cpp  2021-11-06 
14:23:30.000000000 +0100
@@ -26,7 +26,7 @@
 {
 public:
     PersonsDelegate(QObject *parent = nullptr);
-    ~PersonsDelegate();
+    ~PersonsDelegate() override;
 
     void paint(QPainter *painter, const QStyleOptionViewItem &option, const 
QModelIndex &index) const override;
     QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex 
&index) const override;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/po/zh_CN/kpeople5.po 
new/kpeople-5.88.0/po/zh_CN/kpeople5.po
--- old/kpeople-5.87.0/po/zh_CN/kpeople5.po     2021-10-02 16:31:23.000000000 
+0200
+++ new/kpeople-5.88.0/po/zh_CN/kpeople5.po     2021-11-06 14:23:30.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-06-11 00:14+0000\n"
-"PO-Revision-Date: 2021-09-27 13:08\n"
+"PO-Revision-Date: 2021-10-29 13:25\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kpeople-5.87.0/src/backends/abstracteditablecontact.h 
new/kpeople-5.88.0/src/backends/abstracteditablecontact.h
--- old/kpeople-5.87.0/src/backends/abstracteditablecontact.h   2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/backends/abstracteditablecontact.h   2021-11-06 
14:23:30.000000000 +0100
@@ -26,7 +26,7 @@
     typedef QExplicitlySharedDataPointer<AbstractEditableContact> Ptr;
     typedef QList<AbstractEditableContact::Ptr> List;
     AbstractEditableContact();
-    virtual ~AbstractEditableContact();
+    ~AbstractEditableContact() override;
 
     /**
      * @p key @see AbstractContact for key identifiers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/backends/allcontactsmonitor.h 
new/kpeople-5.88.0/src/backends/allcontactsmonitor.h
--- old/kpeople-5.87.0/src/backends/allcontactsmonitor.h        2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/backends/allcontactsmonitor.h        2021-11-06 
14:23:30.000000000 +0100
@@ -30,7 +30,7 @@
     Q_OBJECT
 public:
     explicit AllContactsMonitor(); // TODO make protected? this isn't useful 
unless subclassed
-    virtual ~AllContactsMonitor();
+    ~AllContactsMonitor() override;
 
     /**
      * Returns all currently loaded contacts
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/backends/basepersonsdatasource.h 
new/kpeople-5.88.0/src/backends/basepersonsdatasource.h
--- old/kpeople-5.87.0/src/backends/basepersonsdatasource.h     2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/backends/basepersonsdatasource.h     2021-11-06 
14:23:30.000000000 +0100
@@ -26,7 +26,7 @@
     Q_OBJECT
 public:
     BasePersonsDataSource(QObject *parent, const QVariantList &args = 
QVariantList());
-    virtual ~BasePersonsDataSource();
+    ~BasePersonsDataSource() override;
 
     /**
      * Return a ref counted AllContactMonitor which lists and monitors all 
contacts from a source
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/backends/contactmonitor.h 
new/kpeople-5.88.0/src/backends/contactmonitor.h
--- old/kpeople-5.87.0/src/backends/contactmonitor.h    2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/backends/contactmonitor.h    2021-11-06 
14:23:30.000000000 +0100
@@ -32,7 +32,7 @@
     Q_OBJECT
 public:
     ContactMonitor(const QString &contactUri);
-    virtual ~ContactMonitor();
+    ~ContactMonitor() override;
 
     /**
      * The ID of the contact being loaded
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/persondata.h 
new/kpeople-5.88.0/src/persondata.h
--- old/kpeople-5.87.0/src/persondata.h 2021-10-02 16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/persondata.h 2021-11-06 14:23:30.000000000 +0100
@@ -52,7 +52,7 @@
      */
     PersonData(const QString &id, QObject *parent = nullptr);
 
-    virtual ~PersonData();
+    ~PersonData() override;
 
     /**
      * Returns true if this PersonData is mapped to some existing contact
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/personmanager_p.h 
new/kpeople-5.88.0/src/personmanager_p.h
--- old/kpeople-5.87.0/src/personmanager_p.h    2021-10-02 16:31:23.000000000 
+0200
+++ new/kpeople-5.88.0/src/personmanager_p.h    2021-11-06 14:23:30.000000000 
+0100
@@ -78,7 +78,7 @@
 
 protected:
     explicit PersonManager(const QString &databasePath, QObject *parent = 
nullptr);
-    virtual ~PersonManager();
+    ~PersonManager() override;
 
 private:
     QSqlDatabase m_db;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/personsmodel.cpp 
new/kpeople-5.88.0/src/personsmodel.cpp
--- old/kpeople-5.87.0/src/personsmodel.cpp     2021-10-02 16:31:23.000000000 
+0200
+++ new/kpeople-5.88.0/src/personsmodel.cpp     2021-11-06 14:23:30.000000000 
+0100
@@ -275,7 +275,7 @@
         addPerson(MetaContact(i.key(), i.value()));
     }
 
-    for (const AllContactsMonitorPtr monitor : 
std::as_const(m_sourceMonitors)) {
+    for (const AllContactsMonitorPtr &monitor : 
std::as_const(m_sourceMonitors)) {
         connect(monitor.data(), &AllContactsMonitor::contactAdded, this, 
&PersonsModelPrivate::onContactAdded);
         connect(monitor.data(), &AllContactsMonitor::contactChanged, this, 
&PersonsModelPrivate::onContactChanged);
         connect(monitor.data(), &AllContactsMonitor::contactRemoved, this, 
&PersonsModelPrivate::onContactRemoved);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kpeople-5.87.0/src/widgets/abstractfieldwidgetfactory.h 
new/kpeople-5.88.0/src/widgets/abstractfieldwidgetfactory.h
--- old/kpeople-5.87.0/src/widgets/abstractfieldwidgetfactory.h 2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/widgets/abstractfieldwidgetfactory.h 2021-11-06 
14:23:30.000000000 +0100
@@ -21,7 +21,7 @@
     Q_OBJECT
 public:
     explicit AbstractFieldWidgetFactory(QObject *parent = nullptr);
-    virtual ~AbstractFieldWidgetFactory();
+    ~AbstractFieldWidgetFactory() override;
 
     virtual QString label() const = 0;
     virtual int sortWeight() const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/widgets/mergedialog.h 
new/kpeople-5.88.0/src/widgets/mergedialog.h
--- old/kpeople-5.87.0/src/widgets/mergedialog.h        2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/widgets/mergedialog.h        2021-11-06 
14:23:30.000000000 +0100
@@ -43,7 +43,7 @@
     };
 
     explicit MergeDialog(QWidget *parent = nullptr);
-    ~MergeDialog();
+    ~MergeDialog() override;
 
     /**
      * Specifies which PersonsModel will be used to look for duplicates.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/widgets/persondetailsdialog.h 
new/kpeople-5.88.0/src/widgets/persondetailsdialog.h
--- old/kpeople-5.87.0/src/widgets/persondetailsdialog.h        2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/widgets/persondetailsdialog.h        2021-11-06 
14:23:30.000000000 +0100
@@ -23,7 +23,7 @@
 
 public:
     explicit PersonDetailsDialog(QWidget *parent = nullptr, Qt::WindowFlags f 
= Qt::WindowFlags());
-    virtual ~PersonDetailsDialog();
+    ~PersonDetailsDialog() override;
 
     void setPerson(PersonData *person);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpeople-5.87.0/src/widgets/persondetailsview.h 
new/kpeople-5.88.0/src/widgets/persondetailsview.h
--- old/kpeople-5.87.0/src/widgets/persondetailsview.h  2021-10-02 
16:31:23.000000000 +0200
+++ new/kpeople-5.88.0/src/widgets/persondetailsview.h  2021-11-06 
14:23:30.000000000 +0100
@@ -31,7 +31,7 @@
     Q_OBJECT
 public:
     PersonDetailsView(QWidget *parent = nullptr);
-    virtual ~PersonDetailsView();
+    ~PersonDetailsView() override;
 
 public Q_SLOTS:
     /** Specifies the @p person for which the details will be displayed. */

Reply via email to