Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kholidays for openSUSE:Factory 
checked in at 2022-01-11 21:16:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kholidays (Old)
 and      /work/SRC/openSUSE:Factory/.kholidays.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kholidays"

Tue Jan 11 21:16:21 2022 rev:80 rq:945057 version:5.90.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kholidays/kholidays.changes      2021-12-13 
20:44:12.684483719 +0100
+++ /work/SRC/openSUSE:Factory/.kholidays.new.1892/kholidays.changes    
2022-01-11 21:18:55.704944428 +0100
@@ -1,0 +2,12 @@
+Mon Jan  3 12:47:34 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.90.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.90.0
+- Changes since 5.89.0:
+  * holiday_us_en-us - add Juneteenth
+  * Add missing Qt@QT_MAJOR_VERSION@ here
+  * Make it compile against qt6
+
+-------------------------------------------------------------------

Old:
----
  kholidays-5.89.0.tar.xz
  kholidays-5.89.0.tar.xz.sig

New:
----
  kholidays-5.90.0.tar.xz
  kholidays-5.90.0.tar.xz.sig

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

Other differences:
------------------
++++++ kholidays.spec ++++++
--- /var/tmp/diff_new_pack.foC5eH/_old  2022-01-11 21:18:56.300944847 +0100
+++ /var/tmp/diff_new_pack.foC5eH/_new  2022-01-11 21:18:56.308944853 +0100
@@ -17,21 +17,21 @@
 
 
 %define lname   libKF5Holidays5
-%define _tar_path 5.89
+%define _tar_path 5.90
 # 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
+%bcond_without released
 Name:           kholidays
-Version:        5.89.0
+Version:        5.90.0
 Release:        0
 Summary:        Holiday calculation library
 License:        LGPL-2.1-or-later
 Group:          System/GUI/KDE
 URL:            https://www.kde.org
 Source:         %{name}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
 Source1:        %{name}-%{version}.tar.xz.sig
 Source2:        frameworks.keyring
 %endif
@@ -39,7 +39,7 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(Qt5Core)
 BuildRequires:  cmake(Qt5Qml)
-%if %{with lang}
+%if %{with released}
 BuildRequires:  cmake(Qt5LinguistTools)
 %endif
 
@@ -49,7 +49,6 @@
 %package -n %{lname}
 Summary:        Holiday API for KDE PIM
 Group:          System/GUI/KDE
-Recommends:     %{lname}-lang
 Provides:       %{name}-lang = %{version}
 Obsoletes:      %{name}-lang < %{version}
 
@@ -77,7 +76,7 @@
 
 %install
 %kf5_makeinstall -C build
-  %if %{with lang}
+  %if %{with released}
     %find_lang %{name} --with-man --all-name --with-qt
   %endif
 
@@ -102,7 +101,7 @@
 %{_kf5_libdir}/libKF5Holidays.so
 %{_kf5_mkspecsdir}/qt_KHolidays.pri
 
-%if %{with lang}
+%if %{with released}
 %files -n %{lname}-lang -f %{name}.lang
 %endif
 


++++++ kholidays-5.89.0.tar.xz -> kholidays-5.90.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/CMakeLists.txt 
new/kholidays-5.90.0/CMakeLists.txt
--- old/kholidays-5.89.0/CMakeLists.txt 2021-12-04 19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/CMakeLists.txt 2022-01-01 13:30:45.000000000 +0100
@@ -1,9 +1,9 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.89.0")
+set(KF_VERSION "5.90.0")
 project(KHolidays VERSION ${KF_VERSION})
 
-find_package(ECM 5.89.0 REQUIRED NO_MODULE)
+find_package(ECM 5.90.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 set(CMAKE_AUTORCC ON)
 
@@ -35,7 +35,7 @@
 
 ########### Find packages ###########
 set(REQUIRED_QT_VERSION 5.15.2)
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core Qml)
+find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core 
Qml)
 
 remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII)
 
@@ -79,7 +79,7 @@
 
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/kholidays_version.h
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF} COMPONENT Devel
 )
 
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/KF5HolidaysConfig.cmake.in 
new/kholidays-5.90.0/KF5HolidaysConfig.cmake.in
--- old/kholidays-5.89.0/KF5HolidaysConfig.cmake.in     2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/KF5HolidaysConfig.cmake.in     2022-01-01 
13:30:45.000000000 +0100
@@ -1,7 +1,7 @@
 @PACKAGE_INIT@
 
 include(CMakeFindDependencyMacro)
-find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
+find_dependency(Qt@QT_MAJOR_VERSION@Core @REQUIRED_QT_VERSION@)
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5HolidaysTargets.cmake")
 @PACKAGE_INCLUDE_QCHTARGETS@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/autotests/CMakeLists.txt 
new/kholidays-5.90.0/autotests/CMakeLists.txt
--- old/kholidays-5.89.0/autotests/CMakeLists.txt       2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/autotests/CMakeLists.txt       2022-01-01 
13:30:45.000000000 +0100
@@ -1,34 +1,34 @@
 include(ECMMarkAsTest)
 
-find_package(Qt5Test CONFIG REQUIRED)
+find_package(Qt${QT_MAJOR_VERSION}Test CONFIG REQUIRED)
 
 ########### next target ###############
 
 add_executable(testlunar testlunar.cpp)
 add_test(NAME testlunar COMMAND testlunar)
 ecm_mark_as_test(testlunar)
-target_link_libraries(testlunar KF5Holidays Qt5::Test)
+target_link_libraries(testlunar KF5Holidays Qt${QT_MAJOR_VERSION}::Test)
 
 ########### next target ###############
 
 add_executable(testseasons testseasons.cpp)
 add_test(NAME testseasons COMMAND testseasons)
 ecm_mark_as_test(testseasons)
-target_link_libraries(testseasons KF5Holidays Qt5::Test)
+target_link_libraries(testseasons KF5Holidays Qt${QT_MAJOR_VERSION}::Test)
 
 ########### next target ###############
 
 add_executable(testsunriseset testsunriseset.cpp)
 add_test(NAME testsunriseset COMMAND testsunriseset)
 ecm_mark_as_test(testsunriseset)
-target_link_libraries(testsunriseset KF5Holidays Qt5::Test)
+target_link_libraries(testsunriseset KF5Holidays Qt${QT_MAJOR_VERSION}::Test)
 
 ########### next target ###############
 
 add_executable(testzodiac testzodiac.cpp)
 add_test(NAME testzodiac COMMAND testzodiac)
 ecm_mark_as_test(testzodiac)
-target_link_libraries(testzodiac KF5Holidays Qt5::Test)
+target_link_libraries(testzodiac KF5Holidays Qt${QT_MAJOR_VERSION}::Test)
 
 ########### next target ###############
 
@@ -37,4 +37,4 @@
 set_target_properties(testholidayregion PROPERTIES COMPILE_FLAGS 
-DKDESRCDIR="\\"${CMAKE_CURRENT_SOURCE_DIR}/\\"")
 
 ecm_mark_as_test(testholidayregion)
-target_link_libraries(testholidayregion KF5Holidays Qt5::Test)
+target_link_libraries(testholidayregion KF5Holidays 
Qt${QT_MAJOR_VERSION}::Test)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/holidays/plan2/holiday_us_en-us 
new/kholidays-5.90.0/holidays/plan2/holiday_us_en-us
--- old/kholidays-5.89.0/holidays/plan2/holiday_us_en-us        2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/holidays/plan2/holiday_us_en-us        2022-01-01 
13:30:45.000000000 +0100
@@ -23,6 +23,7 @@
 "Martin Luther King's Birthday"  public on third monday in january
 "President's Day"                public on third monday in february
 "Memorial Day"                   public on last monday in may
+"Juneteenth Day"                 public on june 20
 "Independence Day"               public on july 4
 "Labor Day"                      public on first monday in september
 "Columbus Day"                   public on second monday in october
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/po/ca@valencia/libkholidays5_qt.po 
new/kholidays-5.90.0/po/ca@valencia/libkholidays5_qt.po
--- old/kholidays-5.89.0/po/ca@valencia/libkholidays5_qt.po     2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/po/ca@valencia/libkholidays5_qt.po     2022-01-01 
13:30:45.000000000 +0100
@@ -4,17 +4,17 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Albert Astals Cid <aa...@kde.org>, 2005.
-# Josep Ma. Ferrer <txe...@gmail.com>, 2007, 2009, 2010, 2012, 2014, 2015.
+# Josep M. Ferrer <txe...@gmail.com>, 2007, 2009, 2010, 2012, 2014, 2015.
 # Manuel Tortosa Moreno <manutort...@gmail.com>, 2010.
 # Antoni Bella P??rez <antonibel...@yahoo.com>, 2014.
-# Empar <montoro_...@gva.es>, 2019.
+# Empar Montoro Mart??n <montoro_...@gva.es>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kholidays\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2015-06-13 09:34+0000\n"
 "PO-Revision-Date: 2019-06-18 07:50+0200\n"
-"Last-Translator: Empar <montoro_...@gva.es>\n"
+"Last-Translator: Empar Montoro Mart??n <montoro_...@gva.es>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/po/zh_CN/libkholidays5_qt.po 
new/kholidays-5.90.0/po/zh_CN/libkholidays5_qt.po
--- old/kholidays-5.89.0/po/zh_CN/libkholidays5_qt.po   2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/po/zh_CN/libkholidays5_qt.po   2022-01-01 
13:30:45.000000000 +0100
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-11-30 15:21\n"
+"PO-Revision-Date: 2021-12-22 14:05\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/src/CMakeLists.txt 
new/kholidays-5.90.0/src/CMakeLists.txt
--- old/kholidays-5.89.0/src/CMakeLists.txt     2021-12-04 19:36:52.000000000 
+0100
+++ new/kholidays-5.90.0/src/CMakeLists.txt     2022-01-01 13:30:45.000000000 
+0100
@@ -56,11 +56,11 @@
 
 generate_export_header(KF5Holidays BASE_NAME KHolidays)
 
-target_include_directories(KF5Holidays INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KHolidays>")
+target_include_directories(KF5Holidays INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF}/KHolidays>")
 target_include_directories(KF5Holidays PUBLIC 
"$<BUILD_INTERFACE:${KHolidays_SOURCE_DIR}/src;${KHolidays_BINARY_DIR}/src>")
 target_include_directories(KF5Holidays PUBLIC 
"$<BUILD_INTERFACE:${KHolidays_SOURCE_DIR}/src/parsers/plan2>")
 
-target_link_libraries(KF5Holidays PUBLIC Qt5::Core)
+target_link_libraries(KF5Holidays PUBLIC Qt${QT_MAJOR_VERSION}::Core)
 
 ecm_generate_headers(KHolidays_CamelCase_HEADERS
   HEADER_NAMES
@@ -80,13 +80,13 @@
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/kholidays_export.h
   ${KHolidays_HEADERS}
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KHolidays/kholidays
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KHolidays/kholidays
   COMPONENT Devel
 )
 
 install(FILES
   ${KHolidays_CamelCase_HEADERS}
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KHolidays/KHolidays
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KHolidays/KHolidays
   COMPONENT Devel
 )
 
@@ -101,7 +101,7 @@
       ${KHolidays_HEADERS}
     MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md"
     LINK_QCHS
-      Qt5Core_QCH
+      Qt${QT_MAJOR_VERSION}Core_QCH
     INCLUDE_DIRS
       ${CMAKE_CURRENT_BINARY_DIR}
     BLANK_MACROS
@@ -117,7 +117,7 @@
   LIB_NAME KF5Holidays
   DEPS "widgets"
   FILENAME_VAR PRI_FILENAME
-  INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KHolidays
+  INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF}/KHolidays
 )
 
 install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kholidays-5.89.0/src/declarative/CMakeLists.txt 
new/kholidays-5.90.0/src/declarative/CMakeLists.txt
--- old/kholidays-5.89.0/src/declarative/CMakeLists.txt 2021-12-04 
19:36:52.000000000 +0100
+++ new/kholidays-5.90.0/src/declarative/CMakeLists.txt 2022-01-01 
13:30:45.000000000 +0100
@@ -1,8 +1,8 @@
 add_library(kholidaysdeclarativeplugin SHARED kholidaysdeclarativeplugin.cpp 
holidayregionsmodel.cpp kholidaysdeclarativeplugin.h holidayregionsmodel.h)
 
 target_link_libraries(kholidaysdeclarativeplugin
-  Qt5::Qml
-  Qt5::Core
+  Qt${QT_MAJOR_VERSION}::Qml
+  Qt${QT_MAJOR_VERSION}::Core
   KF5Holidays
 )
 

Reply via email to