Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libzmf for openSUSE:Factory checked in at 2025-06-04 20:26:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libzmf (Old) and /work/SRC/openSUSE:Factory/.libzmf.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libzmf" Wed Jun 4 20:26:43 2025 rev:5 rq:1282237 version:0.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libzmf/libzmf.changes 2017-10-07 17:46:31.778212616 +0200 +++ /work/SRC/openSUSE:Factory/.libzmf.new.16005/libzmf.changes 2025-06-04 20:26:50.892744162 +0200 @@ -1,0 +2,27 @@ +Tue Jun 3 09:59:45 UTC 2025 - Fridrich Strba <fst...@suse.com> + +- Removed patch: + * 0001-automake-Conditional-installation-of-PNG-and-JS-file.patch + + Replaced by better solution +- Added patch: + * 0001-Install-all-files-generated-by-doxygen.patch + + Install all doxygen-generated files regardless of their file + type. This makes the doxygen installation more robust and less + dependent on doxygen internals. + +------------------------------------------------------------------- +Mon Jun 2 09:09:59 UTC 2025 - Fridrich Strba <fst...@suse.com> + +- Modified patch: + * 0001-automake-Conditional-installation-of-PNG-and-JS-file.patch + + test -f cannot be used with wildcards, since they are expanded + +------------------------------------------------------------------- +Wed May 28 19:37:12 UTC 2025 - Christoph G <f...@grueninger.de> + +- Call autoreconf because configure script uses hardcoded + automake-1.15 +- for compilation with Doxygen 1.14 add patch + 0001-automake-Conditional-installation-of-PNG-and-JS-file.patch + +------------------------------------------------------------------- New: ---- 0001-Install-all-files-generated-by-doxygen.patch BETA DEBUG BEGIN: New:- Added patch: * 0001-Install-all-files-generated-by-doxygen.patch + Install all doxygen-generated files regardless of their file BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libzmf.spec ++++++ --- /var/tmp/diff_new_pack.IYxGwk/_old 2025-06-04 20:26:51.340762725 +0200 +++ /var/tmp/diff_new_pack.IYxGwk/_new 2025-06-04 20:26:51.340762725 +0200 @@ -1,7 +1,7 @@ # # spec file for package libzmf # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # 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/ # @@ -23,11 +23,14 @@ Summary: A library for import of Zoner document formats License: MPL-2.0 Group: Productivity/Publishing/Word -Url: http://wiki.documentfoundation.org/DLP/Libraries/libzmf +URL: http://wiki.documentfoundation.org/DLP/Libraries/libzmf Source: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz +Patch0: 0001-Install-all-files-generated-by-doxygen.patch +BuildRequires: automake BuildRequires: doxygen BuildRequires: fdupes BuildRequires: gcc-c++ +BuildRequires: libtool BuildRequires: pkgconfig BuildRequires: xz BuildRequires: pkgconfig(cppunit) @@ -80,9 +83,10 @@ Tools to work with the Zoner ZMF files, based on librevenge. %prep -%setup -q +%autosetup -p1 %build +autoreconf -fi %configure \ --disable-werror \ --disable-static \ ++++++ 0001-Install-all-files-generated-by-doxygen.patch ++++++ >From 48f94abff2fcc4943626a62c6180c60862288b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fridrich=20=C5=A0trba?= <fridrich.st...@bluewin.ch> Date: Tue, 3 Jun 2025 11:57:29 +0200 Subject: [PATCH] Install all files generated by doxygen Install the whole directory and do not pick only some file-types Change-Id: I743253696f3e57dfe70c6509b7d620dc2bf39e76 --- docs/doxygen/Makefile.am | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/doxygen/Makefile.am b/docs/doxygen/Makefile.am index 4351042..40a02e8 100644 --- a/docs/doxygen/Makefile.am +++ b/docs/doxygen/Makefile.am @@ -6,9 +6,7 @@ if WITH_LIBZMF_DOCS install-data-am: mkdir -p $(DESTDIR)$(docdir)/html - $(INSTALL_DATA) html/*.html $(DESTDIR)$(docdir)/html/ - $(INSTALL_DATA) html/*.png $(DESTDIR)$(docdir)/html/ - $(INSTALL_DATA) html/*.css $(DESTDIR)$(docdir)/html/ + $(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/ uninstall-am: -rm -rf $(DESTDIR)$(docdir)/html -- 2.49.0