Hello community, here is the log from the commit of package kapidox for openSUSE:Factory checked in at 2019-12-21 12:29:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kapidox (Old) and /work/SRC/openSUSE:Factory/.kapidox.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kapidox" Sat Dec 21 12:29:06 2019 rev:72 rq:757009 version:5.65.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes 2019-11-10 22:44:59.437678656 +0100 +++ /work/SRC/openSUSE:Factory/.kapidox.new.6675/kapidox.changes 2019-12-21 12:29:11.963300979 +0100 @@ -1,0 +2,11 @@ +Sun Dec 8 11:18:19 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 5.65.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.65.0.php +- Changes since 5.64.0: + * Fix module imports with Python3 + * Fix minor issues found by EBN and typos + +------------------------------------------------------------------- Old: ---- kapidox-5.64.0.tar.xz kapidox-5.64.0.tar.xz.sig New: ---- kapidox-5.65.0.tar.xz kapidox-5.65.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kapidox.spec ++++++ --- /var/tmp/diff_new_pack.bqJfUz/_old 2019-12-21 12:29:13.035301489 +0100 +++ /var/tmp/diff_new_pack.bqJfUz/_new 2019-12-21 12:29:13.039301491 +0100 @@ -1,7 +1,7 @@ # # spec file for package kapidox # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,13 +18,13 @@ # Only needed for the package signature condition %bcond_without lang -%define _tar_path 5.64 +%define _tar_path 5.65 # 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.64.0 +Version: 5.65.0 Release: 0 Summary: Scripts and data for building API documentation License: BSD-2-Clause ++++++ kapidox-5.64.0.tar.xz -> kapidox-5.65.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/setup.py new/kapidox-5.65.0/setup.py --- old/kapidox-5.64.0/setup.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/setup.py 2019-12-02 08:08:31.000000000 +0100 @@ -14,7 +14,7 @@ setup( name='kapidox', - version='5.64.0', + version='5.65.0', description='KDE API documentation generation tools', maintainer = 'Olivier Churlaud', maintainer_email = '[email protected]', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/depdiagram/__init__.py new/kapidox-5.65.0/src/kapidox/depdiagram/__init__.py --- old/kapidox-5.64.0/src/kapidox/depdiagram/__init__.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/depdiagram/__init__.py 2019-12-02 08:08:31.000000000 +0100 @@ -1 +1 @@ -from generate import * +from kapidox.depdiagram.generate import * diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/depdiagram/frameworkdb.py new/kapidox-5.65.0/src/kapidox/depdiagram/frameworkdb.py --- old/kapidox-5.64.0/src/kapidox/depdiagram/frameworkdb.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/depdiagram/frameworkdb.py 2019-12-02 08:08:31.000000000 +0100 @@ -31,8 +31,8 @@ import gv import yaml -import gvutils -from framework import Framework +import kapidox.depdiagram.gvutils +from kapidox.depdiagram.framework import Framework TARGET_SHAPES = [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/generator.py new/kapidox-5.65.0/src/kapidox/generator.py --- old/kapidox-5.64.0/src/kapidox/generator.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/generator.py 2019-12-02 08:08:31.000000000 +0100 @@ -227,7 +227,7 @@ def find_tagfiles(docdir, doclink=None, flattenlinks=False, exclude=None, _depth=0): """Find Doxygen-generated tag files in a directory. - The tag files must have the extention .tags, and must be in the listed + The tag files must have the extension .tags, and must be in the listed directory, a subdirectory or a subdirectory named html of a subdirectory. Args: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/hlfunctions.py new/kapidox-5.65.0/src/kapidox/hlfunctions.py --- old/kapidox-5.64.0/src/kapidox/hlfunctions.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/hlfunctions.py 2019-12-02 08:08:31.000000000 +0100 @@ -109,7 +109,7 @@ if ok: lib.dependency_diagram = png_path - # store this as we won't use that everytime + # store this as we won't use that every time create_qhp = args.qhp args.qhp = False ctx = generator.create_fw_context(args, lib, tagfiles) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/models.py new/kapidox-5.65.0/src/kapidox/models.py --- old/kapidox-5.64.0/src/kapidox/models.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/models.py 2019-12-02 08:08:31.000000000 +0100 @@ -42,9 +42,9 @@ Constructor of the Library object Args: - metainfo: (dict) dictonary describing a library + metainfo: (dict) dictionary describing a library products: (list of Products) list of all already created products - platforms: (dict) dictionarry of all plaforms for which the library + platforms: (dict) dictionary of all platforms for which the library is available, where the key is a platform and the value is a restriction. For instance: { @@ -87,7 +87,7 @@ if sp.name == utils.serialize_name(metainfo['subgroup']): self.subproduct = sp if self.subproduct is None: - logging.warning("Subgroup {} of library {} not documentated, subgroup will be None" + logging.warning("Subgroup {} of library {} not documented, subgroup will be None" .format(metainfo['subgroup'], metainfo['name'])) if self.subproduct is not None: @@ -142,7 +142,7 @@ Constructor of the Product object Args: - metainfo: (dict) dictonary describing a product + metainfo: (dict) dictionary describing a product all_maintainers: (dict of dict) all possible maintainers, where the main key is a username/unique pseudo, and the key is a dictionary of name, email address. For example: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/preprocessing.py new/kapidox-5.65.0/src/kapidox/preprocessing.py --- old/kapidox-5.64.0/src/kapidox/preprocessing.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/preprocessing.py 2019-12-02 08:08:31.000000000 +0100 @@ -93,7 +93,7 @@ path: (string) the current path to search. Returns: A dictionary containing all the parsed information, or `None` if it - did not fullfill some conditions. + did not fulfill some conditions. """ if not os.path.isdir(path): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapidox-5.64.0/src/kapidox/utils.py new/kapidox-5.65.0/src/kapidox/utils.py --- old/kapidox-5.64.0/src/kapidox/utils.py 2019-10-12 23:20:54.000000000 +0200 +++ new/kapidox-5.65.0/src/kapidox/utils.py 2019-12-02 08:08:31.000000000 +0100 @@ -73,7 +73,7 @@ """ Expend the name of the maintainers. Args: - dictonary: (dict) Dictionary from which the name to expend will be read. + dictionary: (dict) Dictionary from which the name to expend will be read. key: (string) Key of the dictionary where the name to expend is saved. all_maintainers: (dict of dict) Look-up table where the names and emails of the maintainers are stored.
