Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kapidox for openSUSE:Factory checked in at 2022-04-11 23:48:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kapidox (Old) and /work/SRC/openSUSE:Factory/.kapidox.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kapidox" Mon Apr 11 23:48:10 2022 rev:101 rq:968139 version:5.93.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes 2022-03-14 19:37:08.082131298 +0100 +++ /work/SRC/openSUSE:Factory/.kapidox.new.1900/kapidox.changes 2022-04-11 23:49:52.358639838 +0200 @@ -1,0 +2,10 @@ +Sun Apr 3 10:46:59 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.93.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.93.0 +- Changes since 5.92.0: + * add cmake file for standardised build + +------------------------------------------------------------------- Old: ---- kapidox-5.92.0.tar.xz kapidox-5.92.0.tar.xz.sig New: ---- kapidox-5.93.0.tar.xz kapidox-5.93.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kapidox.spec ++++++ --- /var/tmp/diff_new_pack.gujTiq/_old 2022-04-11 23:49:52.846634271 +0200 +++ /var/tmp/diff_new_pack.gujTiq/_new 2022-04-11 23:49:52.850634225 +0200 @@ -18,13 +18,13 @@ # Only needed for the package signature condition %bcond_without released -%define _tar_path 5.92 +%define _tar_path 5.93 # 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}')} Name: kapidox -Version: 5.92.0 +Version: 5.93.0 Release: 0 Summary: Scripts and data for building API documentation License: BSD-2-Clause ++++++ kapidox-5.92.0.tar.xz -> kapidox-5.93.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.92.0/.gitignore new/kapidox-5.93.0/.gitignore --- old/kapidox-5.92.0/.gitignore 2022-02-27 14:42:44.000000000 +0100 +++ new/kapidox-5.93.0/.gitignore 2022-03-13 13:10:03.000000000 +0100 @@ -4,11 +4,7 @@ *.egg-info/ __pycache__ .cmake/ -venv -/.clang-format -/compile_commands.json -.clangd .idea /cmake-build* .cache -.venv/ +.kapidox_venv/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.92.0/CMakeLists.txt new/kapidox-5.93.0/CMakeLists.txt --- old/kapidox-5.92.0/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/kapidox-5.93.0/CMakeLists.txt 2022-03-13 13:10:03.000000000 +0100 @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.16) +project(KApiDox NONE) + +include(FindUnixCommands) + +if(WIN32) + # Needs native path and extra escaping of spaces + file(TO_NATIVE_PATH "${CMAKE_BINARY_DIR}" BINARY_DIR) +else() + set(BINARY_DIR ${CMAKE_BINARY_DIR}) +endif() + +add_custom_target(build ALL + COMMAND ${BASH} bootstrap-devenv.sh + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} +) + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.92.0/setup.py new/kapidox-5.93.0/setup.py --- old/kapidox-5.92.0/setup.py 2022-02-27 14:42:44.000000000 +0100 +++ new/kapidox-5.93.0/setup.py 2022-03-13 13:10:03.000000000 +0100 @@ -2,7 +2,7 @@ setup( name='kapidox', - version='5.92.0', + version='5.93.0', description='KDE API documentation generation tools', maintainer='Olivier Churlaud', maintainer_email='oliv...@churlaud.com',