Github messages for voidlinux
 help / color / mirror / Atom feed
From: motorto <motorto@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] edb-debugger: update to 1.4.0.
Date: Tue, 01 Aug 2023 11:53:11 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-45367@inbox.vuxu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 634 bytes --]

There is a new pull request by motorto against master on the void-packages repository

https://github.com/motorto/void-packages edb-debugger-1.4.0
https://github.com/void-linux/void-packages/pull/45367

edb-debugger: update to 1.4.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64-musl,x86_64-glibc,i686


Useful for the capstone5.0 update

A patch file from https://github.com/void-linux/void-packages/pull/45367.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-edb-debugger-1.4.0-45367.patch --]
[-- Type: text/x-diff, Size: 5002 bytes --]

From 124a5ca6281983ac93b080bd8a8c60f96c67f497 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A9=20Cerqueira?= <acerqueira021@gmail.com>
Date: Tue, 1 Aug 2023 10:15:19 +0100
Subject: [PATCH] edb-debugger: update to 1.4.0.

---
 .../edb-debugger/patches/QPainterPath.patch   | 10 ------
 srcpkgs/edb-debugger/patches/fix-musl.patch   | 16 ---------
 srcpkgs/edb-debugger/patches/gcc12.patch      | 33 -------------------
 .../edb-debugger/patches/include-limits.patch | 10 ------
 srcpkgs/edb-debugger/template                 |  6 ++--
 5 files changed, 3 insertions(+), 72 deletions(-)
 delete mode 100644 srcpkgs/edb-debugger/patches/QPainterPath.patch
 delete mode 100644 srcpkgs/edb-debugger/patches/fix-musl.patch
 delete mode 100644 srcpkgs/edb-debugger/patches/gcc12.patch
 delete mode 100644 srcpkgs/edb-debugger/patches/include-limits.patch

diff --git a/srcpkgs/edb-debugger/patches/QPainterPath.patch b/srcpkgs/edb-debugger/patches/QPainterPath.patch
deleted file mode 100644
index 16d1e93fffca4..0000000000000
--- a/srcpkgs/edb-debugger/patches/QPainterPath.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/widgets/QDisassemblyView.cpp	2020-04-10 21:07:19.000000000 +0200
-+++ b/src/widgets/QDisassemblyView.cpp	2020-09-01 01:29:20.286597335 +0200
-@@ -40,6 +40,7 @@
- #include <QElapsedTimer>
- #include <QMouseEvent>
- #include <QPainter>
-+#include <QPainterPath>
- #include <QPixmap>
- #include <QScrollBar>
- #include <QSettings>
diff --git a/srcpkgs/edb-debugger/patches/fix-musl.patch b/srcpkgs/edb-debugger/patches/fix-musl.patch
deleted file mode 100644
index da7ec85f72e21..0000000000000
--- a/srcpkgs/edb-debugger/patches/fix-musl.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Source: maxice8
-Upstream: no
-Reason: fixes compilation by avoiding using __ptrace_request as an enum.
-
---- a/plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
-+++ b/plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
-@@ -33,6 +33,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
- #include <sys/ptrace.h>
- #include <sys/user.h>
- 
-+#ifndef __GLIBC__
-+#define __ptrace_request int
-+#endif
-+
- // doesn't always seem to be defined in the headers
- #ifndef PTRACE_GET_THREAD_AREA
diff --git a/srcpkgs/edb-debugger/patches/gcc12.patch b/srcpkgs/edb-debugger/patches/gcc12.patch
deleted file mode 100644
index 931dc45943b6e..0000000000000
--- a/srcpkgs/edb-debugger/patches/gcc12.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff --color -ruN 1/include/IState.h 2/include/IState.h
---- 1/include/IState.h	2020-12-14 02:09:07.000000000 +0100
-+++ 2/include/IState.h	2022-06-22 05:48:20.394258961 +0200
-@@ -19,6 +19,7 @@
- #ifndef ISTATE_H_20110315_
- #define ISTATE_H_20110315_
- 
-+#include <memory>
- #include "Register.h"
- #include "Types.h"
- 
-diff --color -ruN 1/include/RegisterViewModelBase.h 2/include/RegisterViewModelBase.h
---- 1/include/RegisterViewModelBase.h	2020-12-14 02:09:07.000000000 +0100
-+++ 2/include/RegisterViewModelBase.h	2022-06-22 05:49:05.600877962 +0200
-@@ -6,6 +6,7 @@
- #include "util/Integer.h"
- #include <QAbstractItemModel>
- #include <deque>
-+#include <memory>
- #include <vector>
- 
- Q_DECLARE_METATYPE(std::vector<NumberDisplayMode>)
-diff --color -ruN 1/include/State.h 2/include/State.h
---- 1/include/State.h	2020-12-14 02:09:07.000000000 +0100
-+++ 2/include/State.h	2022-06-22 05:49:27.911029610 +0200
-@@ -19,6 +19,7 @@
- #ifndef STATE_H_20060715_
- #define STATE_H_20060715_
- 
-+#include <memory>
- #include "API.h"
- #include "Types.h"
- 
diff --git a/srcpkgs/edb-debugger/patches/include-limits.patch b/srcpkgs/edb-debugger/patches/include-limits.patch
deleted file mode 100644
index e12cca124c3ce..0000000000000
--- a/srcpkgs/edb-debugger/patches/include-limits.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/include/ByteShiftArray.h	2019-08-16 23:27:51.186731499 +0200
-+++ b/include/ByteShiftArray.h	2019-08-16 23:28:15.909729902 +0200
-@@ -22,6 +22,7 @@
- #include "API.h"
- #include <QVector>
- #include <cstddef>
-+#include <limits.h>
- 
- class EDB_EXPORT ByteShiftArray {
- 	Q_DISABLE_COPY(ByteShiftArray)
diff --git a/srcpkgs/edb-debugger/template b/srcpkgs/edb-debugger/template
index 91e73f4574eed..0a3de39de86ca 100644
--- a/srcpkgs/edb-debugger/template
+++ b/srcpkgs/edb-debugger/template
@@ -1,6 +1,6 @@
 # Template file for 'edb-debugger'
 pkgname=edb-debugger
-version=1.3.0
+version=1.4.0
 revision=1
 archs="x86_64* i686*"
 build_style=cmake
@@ -10,5 +10,5 @@ short_desc="Cross platform x86/x86-64 debugger"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://github.com/eteran/edb-debugger"
-distfiles="${homepage}/releases/download/${version}/${pkgname}-${version}.tgz"
-checksum=86df4a0940a39c1480a6fc789f167f94e87a7a330f2d8163fe871f42c754afe8
+distfiles="https://github.com/eteran/edb-debugger/releases/download/${version}/${pkgname}-${version}.tgz"
+checksum=0eb2c5d17493ab0e7e0a0748eefa5733ec90329631cc8db87f2943e90f91b726

             reply	other threads:[~2023-08-01  9:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-01  9:53 motorto [this message]
2023-08-04 16:52 ` [PR PATCH] [Closed]: " Duncaen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-45367@inbox.vuxu.org \
    --to=motorto@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).