Hello community,

here is the log from the commit of package wxhexeditor for openSUSE:Factory 
checked in at 2020-10-15 13:50:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wxhexeditor (Old)
 and      /work/SRC/openSUSE:Factory/.wxhexeditor.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "wxhexeditor"

Thu Oct 15 13:50:57 2020 rev:13 rq:841802 version:0.24

Changes:
--------
--- /work/SRC/openSUSE:Factory/wxhexeditor/wxhexeditor.changes  2018-02-05 
10:53:33.590766933 +0100
+++ /work/SRC/openSUSE:Factory/.wxhexeditor.new.3486/wxhexeditor.changes        
2020-10-15 13:51:05.501316719 +0200
@@ -1,0 +2,6 @@
+Wed Oct 14 13:03:20 UTC 2020 - Guillaume GARDET <[email protected]>
+
+- Backport patch to fix build on Arm:
+  * wxhexeditor-fix-arm.patch
+
+-------------------------------------------------------------------

New:
----
  wxhexeditor-fix-arm.patch

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

Other differences:
------------------
++++++ wxhexeditor.spec ++++++
--- /var/tmp/diff_new_pack.7IZa00/_old  2020-10-15 13:51:06.941317322 +0200
+++ /var/tmp/diff_new_pack.7IZa00/_new  2020-10-15 13:51:06.945317323 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wxhexeditor
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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/
 #
 
 
@@ -25,9 +25,9 @@
 Release:        0
 Summary:        A free HEX editor / disk editor
 # Program is statically linked to udis86 which is BSD-2-Clause
-License:        GPL-2.0
+License:        GPL-2.0-only
 Group:          Development/Tools/Other
-Url:            https://github.com/EUA/wxHexEditor
+URL:            https://github.com/EUA/wxHexEditor
 Source:         
https://github.com/EUA/wxHexEditor/archive/v%{version}.tar.gz#/%{_name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE wxhexeditor-0.23-mhash.patch [email protected] -- 
Use system mhash library.
 Patch0:         %{name}-0.23-mhash.patch
@@ -35,6 +35,8 @@
 Patch1:         wxhexeditor-remove-debug.patch
 # PATCH-FIX-UPSTREAM wxhexeditor-fixdesktopfile.patch [email protected] -- 
Fix desktop file
 Patch2:         wxhexeditor-fixdesktopfile.patch
+# PATCH-FIX-UPSTREAM - https://github.com/EUA/wxHexEditor/issues/90
+Patch3:         wxhexeditor-fix-arm.patch
 %if %{with gcc6}
 %if 0%{?sle_version} >= 120200
 #!BuildIgnore:  libgcc_s1
@@ -70,6 +72,7 @@
 %patch0 -p0
 %patch1 -p0
 %patch2
+%patch3 -p1
 chmod -x docs/*
 cp -v udis86/LICENSE LICENSE-udis86
 cp -v docs/GPL.txt .

++++++ wxhexeditor-fix-arm.patch ++++++
--- wxHexEditor-0.24.orig/src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp     
2020-10-14 14:54:27.206689027 +0200
+++ wxHexEditor-0.24/src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp  2020-10-14 
14:56:10.059696720 +0200
@@ -2365,7 +2365,7 @@ cpformat(a)
                        else if(i==0x7E)
                                newCP += wxChar(0x203E);//Overline
                        else if(i<0x80)
-                               newCP += ((i<0x20 || i==0x7F)   ? '.' : 
wxChar(i));
+                               newCP += ((i<0x20 || i==0x7F) ? wxChar('.') : 
wxChar(i));
                        else if( i>=0xA1 && i<0xE0)
                                newCP += wxChar(i-0xA0+0xFF60);
                        else

Reply via email to