diff --git a/doxygen-1.8.14.src.tar.gz b/doxygen-1.8.14.src.tar.gz deleted file mode 100644 index 8019d2d..0000000 --- a/doxygen-1.8.14.src.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1757e02755ef6f56fd45f1f4398598b920381948d6fcfa58f5ca6aa56f59d4d -size 4877980 diff --git a/doxygen-1.8.15.src.tar.gz b/doxygen-1.8.15.src.tar.gz new file mode 100644 index 0000000..a26f38f --- /dev/null +++ b/doxygen-1.8.15.src.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9c0ec462b6a9b5b41ede97bede5458e0d7bb40d4cfa27f6f622eb33c59245d +size 5097791 diff --git a/doxygen.changes b/doxygen.changes index 4bd1e81..44671ff 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -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 diff --git a/doxygen.spec b/doxygen.spec index 6622da8..2f23ae4 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -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 \ diff --git a/doxywizard.changes b/doxywizard.changes index 8797e4a..7d63370 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -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 diff --git a/doxywizard.spec b/doxywizard.spec index 3a7ef8a..b193d5e 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -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 diff --git a/res2cc_sort_resources.diff b/res2cc_sort_resources.diff deleted file mode 100644 index b3fa197..0000000 --- a/res2cc_sort_resources.diff +++ /dev/null @@ -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: