Hello community, here is the log from the commit of package pam_kwallet for openSUSE:Leap:15.2 checked in at 2020-02-13 14:40:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/pam_kwallet (Old) and /work/SRC/openSUSE:Leap:15.2/.pam_kwallet.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pam_kwallet" Thu Feb 13 14:40:56 2020 rev:70 rq:773611 version:5.18.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/pam_kwallet/pam_kwallet.changes 2020-01-15 15:38:48.475085632 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.pam_kwallet.new.26092/pam_kwallet.changes 2020-02-13 14:40:57.277660524 +0100 @@ -1,0 +2,26 @@ +Thu Feb 6 15:10:05 UTC 2020 - Fabian Vogt <[email protected]> + +- Update to 5.18.0 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.18.0.php +- No code changes since 5.17.90 + +------------------------------------------------------------------- +Thu Jan 23 11:20:32 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Replace %make_jobs with %cmake_build + +------------------------------------------------------------------- +Thu Jan 16 14:04:19 UTC 2020 - Fabian Vogt <[email protected]> + +- Update to 5.17.90 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.17.90.php +- Changes since 5.17.5: + * KF5_MIN_VERSION for plasma 5.18 is KF5 5.66.0 + * Fix minor typo + * Add KDEClangFormat cmake support + +------------------------------------------------------------------- Old: ---- kwallet-pam-5.17.5.tar.xz kwallet-pam-5.17.5.tar.xz.sig New: ---- kwallet-pam-5.18.0.tar.xz kwallet-pam-5.18.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pam_kwallet.spec ++++++ --- /var/tmp/diff_new_pack.vMK9Ek/_old 2020-02-13 14:40:57.793660807 +0100 +++ /var/tmp/diff_new_pack.vMK9Ek/_new 2020-02-13 14:40:57.793660807 +0100 @@ -19,15 +19,15 @@ %bcond_without lang Name: pam_kwallet -Version: 5.17.5 +Version: 5.18.0 Release: 0 Summary: A PAM Module for KWallet signing License: LGPL-2.1-only AND GPL-2.0-or-later AND GPL-3.0-only Group: System/GUI/KDE Url: http://www.kde.org/ -Source: https://download.kde.org/stable/plasma/%{version}/kwallet-pam-%{version}.tar.xz +Source: kwallet-pam-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/kwallet-pam-%{version}.tar.xz.sig +Source1: kwallet-pam-%{version}.tar.xz.sig Source2: plasma.keyring %endif Source3: baselibs.conf @@ -63,7 +63,7 @@ %build %cmake_kf5 -d build -- -DLIBEXEC_INSTALL_DIR=%{_kf5_libexecdir} -DCMAKE_INSTALL_PREFIX=/ - %make_jobs + %cmake_build %install %kf5_makeinstall -C build ++++++ kwallet-pam-5.17.5.tar.xz -> kwallet-pam-5.18.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwallet-pam-5.17.5/CMakeLists.txt new/kwallet-pam-5.18.0/CMakeLists.txt --- old/kwallet-pam-5.17.5/CMakeLists.txt 2020-01-07 16:32:10.000000000 +0100 +++ new/kwallet-pam-5.18.0/CMakeLists.txt 2020-02-06 14:13:56.000000000 +0100 @@ -1,7 +1,7 @@ project(pam_kwallet) cmake_minimum_required(VERSION 2.8.12) -set(KF5_MIN_VERSION "5.62.0") -set(PROJECT_VERSION "5.17.5") +set(KF5_MIN_VERSION "5.66.0") +set(PROJECT_VERSION "5.18.0") set(PROJECT_VERSION_MAJOR 5) find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) @@ -9,6 +9,7 @@ include(CheckFunctionExists) include(KDEInstallDirs) +include(KDEClangFormat) find_package(PAM REQUIRED) find_package(LibGcrypt 1.5.0 REQUIRED) @@ -27,6 +28,10 @@ ${CMAKE_CURRENT_BINARY_DIR} ${LIBGCRYPT_INCLUDE_DIR} ) +if (EXISTS "${CMAKE_SOURCE_DIR}/.git") + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) + add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000) +endif() set(library_name "pam_kwallet5") @@ -34,7 +39,7 @@ pam_kwallet.c ) -set(KF5_MIN_VERSION "5.62.0") +set(KF5_MIN_VERSION "5.66.0") find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Wallet ) @@ -75,6 +80,10 @@ ${LIBGCRYPT_LIBRARIES} ) +# add clang-format target for all our real source files +file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h) +kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES}) + install(TARGETS ${library_name} DESTINATION ${CMAKE_INSTALL_LIBDIR}/security) configure_file(pam_kwallet_init.desktop.cmake ${CMAKE_BINARY_DIR}/pam_kwallet_init.desktop) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwallet-pam-5.17.5/pam_kwallet.c new/kwallet-pam-5.18.0/pam_kwallet.c --- old/kwallet-pam-5.17.5/pam_kwallet.c 2020-01-07 16:32:10.000000000 +0100 +++ new/kwallet-pam-5.18.0/pam_kwallet.c 2020-02-06 14:13:56.000000000 +0100 @@ -751,7 +751,7 @@ exit(0); } - close(readSaltPipe[1]); // we won't be writting from the pipe + close(readSaltPipe[1]); // we won't be writing from the pipe // pam process, just wait for child to finish int status;
