Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kcrash for openSUSE:Factory checked in at 2022-07-11 19:08:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcrash (Old) and /work/SRC/openSUSE:Factory/.kcrash.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcrash" Mon Jul 11 19:08:32 2022 rev:105 rq:988125 version:5.96.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kcrash/kcrash.changes 2022-06-17 21:20:52.210719923 +0200 +++ /work/SRC/openSUSE:Factory/.kcrash.new.1523/kcrash.changes 2022-07-11 19:09:43.843637783 +0200 @@ -1,0 +2,11 @@ +Sun Jul 3 11:55:51 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.96.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.96.0 +- Changes since 5.95.0: + * Bump deprecation KF version in ecm_set_disabled_deprecation_versions + * Use cmakedefine01 + +------------------------------------------------------------------- Old: ---- kcrash-5.95.0.tar.xz kcrash-5.95.0.tar.xz.sig New: ---- kcrash-5.96.0.tar.xz kcrash-5.96.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcrash.spec ++++++ --- /var/tmp/diff_new_pack.xZq4MT/_old 2022-07-11 19:09:44.307638455 +0200 +++ /var/tmp/diff_new_pack.xZq4MT/_new 2022-07-11 19:09:44.311638462 +0200 @@ -17,7 +17,7 @@ %define lname libKF5Crash5 -%define _tar_path 5.95 +%define _tar_path 5.96 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -25,7 +25,7 @@ # Only needed for the package signature condition %bcond_without released Name: kcrash -Version: 5.95.0 +Version: 5.96.0 Release: 0 Summary: An application crash handler License: LGPL-2.1-or-later ++++++ kcrash-5.95.0.tar.xz -> kcrash-5.96.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcrash-5.95.0/CMakeLists.txt new/kcrash-5.96.0/CMakeLists.txt --- old/kcrash-5.95.0/CMakeLists.txt 2022-06-04 10:16:08.000000000 +0200 +++ new/kcrash-5.96.0/CMakeLists.txt 2022-07-02 16:30:52.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.95.0") # handled by release scripts -set(KF_DEP_VERSION "5.95.0") # handled by release scripts +set(KF_VERSION "5.96.0") # handled by release scripts +set(KF_DEP_VERSION "5.96.0") # handled by release scripts project(KCrash VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.95.0 NO_MODULE) +find_package(ECM 5.96.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) @@ -62,7 +62,7 @@ ecm_set_disabled_deprecation_versions( QT 5.15.2 - KF 5.90.0 + KF 5.95.0 ) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcrash-5.95.0/autotests/coreconfigtest.cpp new/kcrash-5.96.0/autotests/coreconfigtest.cpp --- old/kcrash-5.95.0/autotests/coreconfigtest.cpp 2022-06-04 10:16:08.000000000 +0200 +++ new/kcrash-5.96.0/autotests/coreconfigtest.cpp 2022-07-02 16:30:52.000000000 +0200 @@ -19,7 +19,7 @@ void testExec() { KCrash::CoreConfig c(QFINDTESTDATA("core_patterns/exec")); -#ifdef KCRASH_CORE_PATTERN_RAISE +#if KCRASH_CORE_PATTERN_RAISE QCOMPARE(c.isProcess(), true); QCOMPARE(c.isCoredumpd(), true); #else @@ -30,7 +30,7 @@ void testExecNot() { -#ifndef KCRASH_CORE_PATTERN_RAISE +#if !KCRASH_CORE_PATTERN_RAISE QSKIP("Not useful when opting out of re-raising.") #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcrash-5.95.0/src/config-kcrash.h.cmake new/kcrash-5.96.0/src/config-kcrash.h.cmake --- old/kcrash-5.95.0/src/config-kcrash.h.cmake 2022-06-04 10:16:08.000000000 +0200 +++ new/kcrash-5.96.0/src/config-kcrash.h.cmake 2022-07-02 16:30:52.000000000 +0200 @@ -1,5 +1,5 @@ #cmakedefine01 HAVE_X11 -#cmakedefine KCRASH_CORE_PATTERN_RAISE +#cmakedefine01 KCRASH_CORE_PATTERN_RAISE #define kde_socklen_t socklen_t #define KDE_INSTALL_FULL_LIBEXECDIR "${KDE_INSTALL_FULL_LIBEXECDIR}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcrash-5.95.0/src/coreconfig.cpp new/kcrash-5.96.0/src/coreconfig.cpp --- old/kcrash-5.95.0/src/coreconfig.cpp 2022-06-04 10:16:08.000000000 +0200 +++ new/kcrash-5.96.0/src/coreconfig.cpp 2022-07-02 16:30:52.000000000 +0200 @@ -13,7 +13,7 @@ { CoreConfig::CoreConfig(const QString &path) { -#ifndef KCRASH_CORE_PATTERN_RAISE +#if !KCRASH_CORE_PATTERN_RAISE return; // Leave everything false unless enabled. #endif QFile file(path);