Accepting request 662185 from home:seanlew:branches:devel:tools

Update doxygen to 1.8.15

OBS-URL: https://build.opensuse.org/request/show/662185
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=132
This commit is contained in:
Petr Gajdos 2018-12-31 07:54:23 +00:00 committed by Git OBS Bridge
parent f450fbd2c2
commit 2b5007a533
7 changed files with 23 additions and 24 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1757e02755ef6f56fd45f1f4398598b920381948d6fcfa58f5ca6aa56f59d4d
size 4877980

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd9c0ec462b6a9b5b41ede97bede5458e0d7bb40d4cfa27f6f622eb33c59245d
size 5097791

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Dec 31 07:07:14 UTC 2018 - sean@suspend.net
- Update to 1.8.15:
* Another year, another lengthy set of fixes
http://www.doxygen.nl/manual/changelog.html#log_1_8_15
- Removed res2cc_sort_resources.diff (issue fixed upstream)
-------------------------------------------------------------------
Wed Jan 3 12:52:54 UTC 2018 - tchvatal@suse.com

View File

@ -12,12 +12,12 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: doxygen
Version: 1.8.14
Version: 1.8.15
Release: 0
Summary: Automated C, C++, and Java Documentation Generator
# qtools are used for building and they are GPL-3.0 licensed
@ -34,7 +34,6 @@ Patch3: vhdlparser-no-return.patch
# suse specific, for ppc64le ppc64, workaround for bnc#921577
Patch4: doxygen-dot-one-thread.patch
# Submitted upstream, fix for https://bugzilla.gnome.org/show_bug.cgi?id=777672
Patch6: res2cc_sort_resources.diff
BuildRequires: bison
BuildRequires: cmake >= 2.8.12
BuildRequires: flex
@ -61,7 +60,6 @@ as well.
%ifarch ppc64le ppc64
%patch4 -p1
%endif
%patch6
%build
%cmake \

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Dec 31 01:19:11 UTC 2018 - sean@suspend.net
- Update to 1.8.15:
* Another year, another lengthy set of development changes:
http://www.doxygen.nl/manual/changelog.html#log_1_8_15
-------------------------------------------------------------------
Tue Jun 19 09:51:37 UTC 2018 - pgajdos@suse.com

View File

@ -12,12 +12,12 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: doxywizard
Version: 1.8.14
Version: 1.8.15
Release: 0
Summary: Graphical User Interface for Doxygen
# qtools are used for building and they are GPL-3.0 licensed

View File

@ -1,15 +0,0 @@
--- src/res2cc_cmd.py_orig 2016-05-10 21:51:52.000000000 +0200
+++ src/res2cc_cmd.py 2017-01-23 23:54:53.499507342 +0100
@@ -98,10 +98,11 @@
directory = sys.argv[1]
files = []
for dirName, subdirList, fileList in walk(directory):
- for fname in sorted(fileList):
+ for fname in fileList:
subdir = dirName[len(directory)+1:] if dirName.startswith(directory) else dirName
if subdir:
files.append(File.factory(directory,subdir,fname))
+ files.sort(key=lambda f: f.subdir + "/" + f.fileName)
outputFile = open(sys.argv[2],"w")
print("#include \"resourcemgr.h\"\n",file=outputFile)
for f in files: