Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wxhexeditor for openSUSE:Factory 
checked in at 2024-12-02 16:59:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wxhexeditor (Old)
 and      /work/SRC/openSUSE:Factory/.wxhexeditor.new.28523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "wxhexeditor"

Mon Dec  2 16:59:36 2024 rev:16 rq:1227686 version:0.24

Changes:
--------
--- /work/SRC/openSUSE:Factory/wxhexeditor/wxhexeditor.changes  2024-02-21 
18:01:34.474499407 +0100
+++ /work/SRC/openSUSE:Factory/.wxhexeditor.new.28523/wxhexeditor.changes       
2024-12-02 17:00:07.419695721 +0100
@@ -1,0 +2,7 @@
+Wed Nov 27 14:08:46 UTC 2024 - Bjørn Lie <[email protected]>
+
+- Add ebe2449fac22089825d124935a215fd1c0739403.patch: Fix build for
+  wxWidgets v3.1.2. Following this, replace wxWidgets-3_0-devel
+  with wxWidgets-devel BuildRequires.
+
+-------------------------------------------------------------------

New:
----
  ebe2449fac22089825d124935a215fd1c0739403.patch

BETA DEBUG BEGIN:
  New:
- Add ebe2449fac22089825d124935a215fd1c0739403.patch: Fix build for
  wxWidgets v3.1.2. Following this, replace wxWidgets-3_0-devel
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ wxhexeditor.spec ++++++
--- /var/tmp/diff_new_pack.w74gIl/_old  2024-12-02 17:00:08.051722461 +0100
+++ /var/tmp/diff_new_pack.w74gIl/_new  2024-12-02 17:00:08.055722630 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wxhexeditor
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -39,6 +39,8 @@
 Patch3:         wxhexeditor-fix-arm.patch
 # PATCH-FEATURE-UPSTREAM - https://github.com/EUA/wxHexEditor/pull/173
 Patch4:         wxhexeditor-appdata.patch
+# PATCH-FIX-UPSTREAM ebe2449fac22089825d124935a215fd1c0739403.patch -- Fix 
build for wxWidgets v3.1.2
+Patch5:         
https://github.com/EUA/wxHexEditor/commit/ebe2449fac22089825d124935a215fd1c0739403.patch
 %if %{with gcc6}
 %if 0%{?sle_version} >= 120200
 #!BuildIgnore:  libgcc_s1
@@ -54,7 +56,7 @@
 BuildRequires:  mhash-devel
 BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
-BuildRequires:  wxWidgets-3_0-devel
+BuildRequires:  wxWidgets-devel
 Recommends:     %{name}-lang
 
 %description
@@ -76,6 +78,7 @@
 %patch -P 2
 %patch -P 3 -p1
 %patch -P 4 -p1
+%patch -P 5 -p1
 chmod -x docs/*
 cp -v udis86/LICENSE LICENSE-udis86
 cp -v docs/GPL.txt .

++++++ ebe2449fac22089825d124935a215fd1c0739403.patch ++++++
>From ebe2449fac22089825d124935a215fd1c0739403 Mon Sep 17 00:00:00 2001
From: GT <[email protected]>
Date: Tue, 10 Sep 2019 23:52:19 +0100
Subject: [PATCH] Fix build for wxWidgets v3.1.2

---
 src/HexDialogs.cpp                  | 2 +-
 src/HexEditorCtrl/HexEditorCtrl.cpp | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/HexDialogs.cpp b/src/HexDialogs.cpp
index 260571b4..9c312ba4 100644
--- a/src/HexDialogs.cpp
+++ b/src/HexDialogs.cpp
@@ -420,7 +420,7 @@ void FindDialog::OnChar( wxKeyEvent& event ){
        }
 
 void FindDialog::EventHandler( wxCommandEvent& event ){
-       WX_CLEAR_ARRAY(parent->HighlightArray )
+       WX_CLEAR_ARRAY(parent->HighlightArray);
        parent->HighlightArray.Shrink();
 
        if( event.GetId() == btnFind->GetId())
diff --git a/src/HexEditorCtrl/HexEditorCtrl.cpp 
b/src/HexEditorCtrl/HexEditorCtrl.cpp
index 37a6e4b0..6f3a4a0e 100644
--- a/src/HexEditorCtrl/HexEditorCtrl.cpp
+++ b/src/HexEditorCtrl/HexEditorCtrl.cpp
@@ -64,9 +64,9 @@ HexEditorCtrl::~HexEditorCtrl( void ){
        Dynamic_Disconnector();
        Clear();
 
-       WX_CLEAR_ARRAY(MainTagArray)
-       WX_CLEAR_ARRAY(HighlightArray)
-   WX_CLEAR_ARRAY(CompareArray)
+       WX_CLEAR_ARRAY(MainTagArray);
+       WX_CLEAR_ARRAY(HighlightArray);
+       WX_CLEAR_ARRAY(CompareArray);
 
    MainTagArray.Shrink();
    HighlightArray.Shrink();

Reply via email to