Hello community,

here is the log from the commit of package kapidox for openSUSE:Factory checked 
in at 2019-01-24 14:10:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kapidox (Old)
 and      /work/SRC/openSUSE:Factory/.kapidox.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kapidox"

Thu Jan 24 14:10:18 2019 rev:60 rq:665776 version:5.54.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes  2018-12-21 
08:21:31.993563592 +0100
+++ /work/SRC/openSUSE:Factory/.kapidox.new.28833/kapidox.changes       
2019-01-24 14:10:19.803575827 +0100
@@ -1,0 +2,10 @@
+Mon Jan 14 06:08:42 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * Fix doxygen markdown rendering
+
+-------------------------------------------------------------------

Old:
----
  kapidox-5.53.0.tar.xz

New:
----
  kapidox-5.54.0.tar.xz

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

Other differences:
------------------
++++++ kapidox.spec ++++++
--- /var/tmp/diff_new_pack.Hse4bK/_old  2019-01-24 14:10:20.255575307 +0100
+++ /var/tmp/diff_new_pack.Hse4bK/_new  2019-01-24 14:10:20.255575307 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kapidox
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.53
+%define _tar_path 5.54
 # 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.53.0
+Version:        5.54.0
 Release:        0
 Summary:        Scripts and data for building API documentation
 License:        BSD-2-Clause

++++++ kapidox-5.53.0.tar.xz -> kapidox-5.54.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.53.0/CMakeLists.txt 
new/kapidox-5.54.0/CMakeLists.txt
--- old/kapidox-5.53.0/CMakeLists.txt   2018-11-11 13:55:30.000000000 +0100
+++ new/kapidox-5.54.0/CMakeLists.txt   2018-12-14 20:58:32.000000000 +0100
@@ -1,5 +1,5 @@
 project(KApiDox NONE)
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.5)
 
 find_package(PythonInterp REQUIRED)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.53.0/docs/metainfo_syntax.md 
new/kapidox-5.54.0/docs/metainfo_syntax.md
--- old/kapidox-5.53.0/docs/metainfo_syntax.md  2018-11-11 13:55:30.000000000 
+0100
+++ new/kapidox-5.54.0/docs/metainfo_syntax.md  2018-12-14 20:58:32.000000000 
+0100
@@ -10,7 +10,7 @@
 
 ## All possible keys.
 
-```yaml
+~~~{.yaml}
 description: Library doing X and Y
 fancyname: The FancyName # optional, else replaced by the `project()` value of 
the `CMakeLists.txt`
 maintainer: ochurlaud  # optional, replaced by The KDE Community
@@ -66,19 +66,19 @@
     - name: Tier 2
       description: Tier 2 frameworks additionally depend on tier 1 frameworks, 
but still have easily manageable dependencies.
     - ..
-```
+~~~
 
 ## Simple example 1
 
 In this case, the library is not part of a group, and the source is in `src`. 
If
 there is no logo, a default one is used.
 
-```yaml
+~~~{.yaml}
 description: Library doing X
 maintainer: ochurlaud
 public_lib: true
 logo: libX.png
-```
+~~~
 
 ## Simple example 2
 
@@ -86,7 +86,8 @@
 source is in `src`.
 
 ### libX
-```yaml
+
+~~~{.yaml}
 description: Library doing X
 maintainer: ochurlaud
 public_lib: true
@@ -107,14 +108,15 @@
   long_description:
     - XY does this and this
     - If you want to contribute please write to ...
-```
+~~~
 
 ### libY
-```yaml
+
+~~~{.yaml}
 description: Library doing Y
 maintainer: otherrandomguy
 public_lib: true
 platforms:
   - name: Linux
 group: XY
-```
+~~~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.53.0/setup.py new/kapidox-5.54.0/setup.py
--- old/kapidox-5.53.0/setup.py 2018-11-11 13:55:30.000000000 +0100
+++ new/kapidox-5.54.0/setup.py 2018-12-14 20:58:32.000000000 +0100
@@ -6,7 +6,7 @@
 
 setup(
         name='kapidox',
-        version='5.53.0',
+        version='5.54.0',
         description='KDE API documentation generation tools',
         maintainer = 'Olivier Churlaud',
         maintainer_email = 'oliv...@churlaud.com',


Reply via email to