Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package extra-cmake-modules for
openSUSE:Factory checked in at 2024-01-15 22:11:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
and /work/SRC/openSUSE:Factory/.extra-cmake-modules.new.21961 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "extra-cmake-modules"
Mon Jan 15 22:11:49 2024 rev:121 rq:1138886 version:5.114.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes
2023-12-17 21:30:54.098482578 +0100
+++
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new.21961/extra-cmake-modules.changes
2024-01-15 22:13:32.598360458 +0100
@@ -1,0 +2,10 @@
+Sat Jan 13 11:21:13 UTC 2024 - Christophe Marin <[email protected]>
+
+- Update to 5.114.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/5/5.114.0
+- Changes since 5.113.0:
+ * Fixes to FindLibGit2.cmake (kde#478669)
+
+-------------------------------------------------------------------
Old:
----
extra-cmake-modules-5.113.0.tar.xz
extra-cmake-modules-5.113.0.tar.xz.sig
New:
----
extra-cmake-modules-5.114.0.tar.xz
extra-cmake-modules-5.114.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.MRUEPe/_old 2024-01-15 22:13:33.382389102 +0100
+++ /var/tmp/diff_new_pack.MRUEPe/_new 2024-01-15 22:13:33.386389247 +0100
@@ -24,7 +24,7 @@
%bcond_without doc
%bcond_without released
Name: extra-cmake-modules%{?pkg_suffix}
-Version: 5.113.0
+Version: 5.114.0
Release: 0
Summary: CMake modules
License: BSD-3-Clause
++++++ extra-cmake-modules-5.113.0.tar.xz -> extra-cmake-modules-5.114.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.113.0/.gitlab-ci.yml
new/extra-cmake-modules-5.114.0/.gitlab-ci.yml
--- old/extra-cmake-modules-5.113.0/.gitlab-ci.yml 2023-11-30
15:53:49.000000000 +0100
+++ new/extra-cmake-modules-5.114.0/.gitlab-ci.yml 2023-12-23
01:45:39.000000000 +0100
@@ -2,12 +2,14 @@
# SPDX-License-Identifier: CC0-1.0
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/linux-static.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
- -
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml
- -
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows-static.yml
+ - project: sysadmin/ci-utilities
+ file:
+ - /gitlab-templates/linux.yml
+ - /gitlab-templates/linux-static.yml
+ - /gitlab-templates/android.yml
+ - /gitlab-templates/freebsd.yml
+ - /gitlab-templates/windows.yml
+ - /gitlab-templates/windows-static.yml
docs:
stage: build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.113.0/CMakeLists.txt
new/extra-cmake-modules-5.114.0/CMakeLists.txt
--- old/extra-cmake-modules-5.113.0/CMakeLists.txt 2023-11-30
15:53:49.000000000 +0100
+++ new/extra-cmake-modules-5.114.0/CMakeLists.txt 2023-12-23
01:45:39.000000000 +0100
@@ -11,7 +11,7 @@
# Preliminary setup
#
-set(VERSION "5.113.0") # handled by release scripts
+set(VERSION "5.114.0") # handled by release scripts
project(ECM
VERSION "${VERSION}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.113.0/find-modules/FindLibGit2.cmake
new/extra-cmake-modules-5.114.0/find-modules/FindLibGit2.cmake
--- old/extra-cmake-modules-5.113.0/find-modules/FindLibGit2.cmake
2023-11-30 15:53:49.000000000 +0100
+++ new/extra-cmake-modules-5.114.0/find-modules/FindLibGit2.cmake
2023-12-23 01:45:39.000000000 +0100
@@ -1,6 +1,7 @@
# SPDX-FileCopyrightText: 2014 Alex Merry <[email protected]>
# SPDX-FileCopyrightText: 2014 Martin GräÃlin <[email protected]>
# SPDX-FileCopyrightText: 2014 Christoph Cullmann <[email protected]>
+# SPDX-FileCopyrightText: 2023 Louis Moureaux <[email protected]>
#
# SPDX-License-Identifier: BSD-3-Clause
@@ -45,7 +46,7 @@
# Use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
find_package(PkgConfig QUIET)
-pkg_check_modules(PKG_GIT2 QUIET git2)
+pkg_check_modules(PKG_GIT2 QUIET libgit2)
set(LIBGIT2_DEFINITIONS ${PKG_GIT2_CFLAGS_OTHER})
@@ -64,11 +65,11 @@
# get version from header, should work on windows, too
if(LIBGIT2_INCLUDE_DIR)
- file(STRINGS "${LIBGIT2_INCLUDE_DIR}/git2/version.h" LIBGIT2_H REGEX
"^#define LIBGIT2_VERSION \"[^\"]*\"$")
+ file(STRINGS "${LIBGIT2_INCLUDE_DIR}/git2/version.h" LIBGIT2_H REGEX
"^#define LIBGIT2_VERSION +\"[^\"]*\"$")
- string(REGEX REPLACE "^.*LIBGIT2_VERSION \"([0-9]+).*$" "\\1"
LIBGIT2_VERSION_MAJOR "${LIBGIT2_H}")
- string(REGEX REPLACE "^.*LIBGIT2_VERSION \"[0-9]+\\.([0-9]+).*$" "\\1"
LIBGIT2_VERSION_MINOR "${LIBGIT2_H}")
- string(REGEX REPLACE "^.*LIBGIT2_VERSION \"[0-9]+\\.[0-9]+\\.([0-9]+).*$"
"\\1" LIBGIT2_VERSION_PATCH "${LIBGIT2_H}")
+ string(REGEX REPLACE "^.*LIBGIT2_VERSION +\"([0-9]+).*$" "\\1"
LIBGIT2_VERSION_MAJOR "${LIBGIT2_H}")
+ string(REGEX REPLACE "^.*LIBGIT2_VERSION +\"[0-9]+\\.([0-9]+).*$" "\\1"
LIBGIT2_VERSION_MINOR "${LIBGIT2_H}")
+ string(REGEX REPLACE "^.*LIBGIT2_VERSION +\"[0-9]+\\.[0-9]+\\.([0-9]+).*$"
"\\1" LIBGIT2_VERSION_PATCH "${LIBGIT2_H}")
set(LIBGIT2_VERSION
"${LIBGIT2_VERSION_MAJOR}.${LIBGIT2_VERSION_MINOR}.${LIBGIT2_VERSION_PATCH}")
set(LIBGIT2_MAJOR_VERSION "${LIBGIT2_VERSION_MAJOR}")