Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hardinfo for openSUSE:Factory checked in at 2025-03-10 18:06:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hardinfo (Old) and /work/SRC/openSUSE:Factory/.hardinfo.new.19136 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hardinfo" Mon Mar 10 18:06:00 2025 rev:7 rq:1251655 version:0.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/hardinfo/hardinfo.changes 2021-11-10 21:47:00.799826229 +0100 +++ /work/SRC/openSUSE:Factory/.hardinfo.new.19136/hardinfo.changes 2025-03-10 18:06:31.813573848 +0100 @@ -1,0 +2,7 @@ +Wed Mar 5 12:55:03 UTC 2025 - pgaj...@suse.com + +- added patches + https://github.com/hardinfo2/hardinfo2/commit/6a0e91649e61cc920b0d90f8ce1e0a25cc63bcb3 + + hardinfo-gcc15.patch + +------------------------------------------------------------------- New: ---- hardinfo-gcc15.patch BETA DEBUG BEGIN: New: https://github.com/hardinfo2/hardinfo2/commit/6a0e91649e61cc920b0d90f8ce1e0a25cc63bcb3 + hardinfo-gcc15.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hardinfo.spec ++++++ --- /var/tmp/diff_new_pack.4IweUr/_old 2025-03-10 18:06:33.649650873 +0100 +++ /var/tmp/diff_new_pack.4IweUr/_new 2025-03-10 18:06:33.665651543 +0100 @@ -1,7 +1,7 @@ # # spec file for package hardinfo # -# Copyright (c) 2021 SUSE LLC +# 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 @@ -27,6 +27,8 @@ # PATCH-FIX-UPSTREAM hardinfo-0.5.1-reproducible.patch bwiedem...@suse.com -- make build reproducible Patch0: hardinfo-0.5.1-reproducible.patch Patch1: hardinfo-dyamic-libsoup.patch +# https://github.com/hardinfo2/hardinfo2/commit/6a0e91649e61cc920b0d90f8ce1e0a25cc63bcb3 +Patch2: hardinfo-gcc15.patch BuildRequires: fdupes BuildRequires: pkgconfig BuildRequires: update-desktop-files ++++++ hardinfo-gcc15.patch ++++++ Index: hardinfo-0.5.1/report.h =================================================================== --- hardinfo-0.5.1.orig/report.h +++ hardinfo-0.5.1/report.h @@ -71,7 +71,7 @@ struct _ReportDialog { GtkTreeModel *model; }; -void report_dialog_show(); +void report_dialog_show(GtkTreeModel *model, GtkWidget *parent); ReportContext *report_context_html_new(); ReportContext *report_context_text_new(); Index: hardinfo-0.5.1/shell.h =================================================================== --- hardinfo-0.5.1.orig/shell.h +++ hardinfo-0.5.1/shell.h @@ -138,7 +138,7 @@ struct _ShellModuleEntry { gint number; gchar *(*func) (); - void (*scan_func) (); + void (*scan_func) (gboolean flag); gchar *(*fieldfunc) (gchar * entry); gchar *(*morefunc) (gchar * entry); Index: hardinfo-0.5.1/callbacks.c =================================================================== --- hardinfo-0.5.1.orig/callbacks.c +++ hardinfo-0.5.1/callbacks.c @@ -103,7 +103,7 @@ void cb_copy_to_clipboard() gchar *data = module_entry_function(entry); GtkClipboard *clip = gtk_clipboard_get(gdk_atom_intern("CLIPBOARD", FALSE)); - ReportContext *ctx = report_context_text_new(NULL); + ReportContext *ctx = report_context_text_new(); ctx->entry = entry;