Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] edb-debugger: update to 1.2.0
@ 2020-04-26 12:18 dmarto
  2020-04-26 12:21 ` [PR PATCH] [Updated] " dmarto
  2020-04-27 21:37 ` [PR PATCH] [Merged]: " jnbr
  0 siblings, 2 replies; 3+ messages in thread
From: dmarto @ 2020-04-26 12:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dmarto/void-packages edb-update
https://github.com/void-linux/void-packages/pull/21350

edb-debugger: update to 1.2.0


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

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

From e16367709508a83fdaf4627d8d15dc7b54618bea Mon Sep 17 00:00:00 2001
From: Martin Dimov <martin@dmarto.com>
Date: Sun, 26 Apr 2020 15:04:41 +0300
Subject: [PATCH] edb-debugger: update to 1.2.0

---
 srcpkgs/edb-debugger/patches/fix-musl.patch | 4 ++--
 srcpkgs/edb-debugger/template               | 7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/edb-debugger/patches/fix-musl.patch b/srcpkgs/edb-debugger/patches/fix-musl.patch
index 64aef6c4f4d..7fe72187bdd 100644
--- a/srcpkgs/edb-debugger/patches/fix-musl.patch
+++ b/srcpkgs/edb-debugger/patches/fix-musl.patch
@@ -4,13 +4,13 @@ Reason: fixes compilation by avoiding using __ptrace_request as an enum.
 
 --- plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
 +++ plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
-@@ -34,6 +34,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+@@ -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/template b/srcpkgs/edb-debugger/template
index d2ce83f665f..156db9e2d18 100644
--- a/srcpkgs/edb-debugger/template
+++ b/srcpkgs/edb-debugger/template
@@ -1,7 +1,8 @@
 # Template file for 'edb-debugger'
 pkgname=edb-debugger
-version=1.0.0
-revision=3
+version=1.2.0
+revision=1
+wrksrc="edb-debugger"
 archs="x86_64* i686*"
 build_style=cmake
 hostmakedepends='pkg-config'
@@ -11,4 +12,4 @@ 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=fab87541042df79ea63254e371d81b84d6b72f78141a6ab92512610ed2b7dfac
+checksum=96f8ee00c5983e6a4e108a0d738464e8b74da187018229334b498c80e7fe4917

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Updated] edb-debugger: update to 1.2.0
  2020-04-26 12:18 [PR PATCH] edb-debugger: update to 1.2.0 dmarto
@ 2020-04-26 12:21 ` dmarto
  2020-04-27 21:37 ` [PR PATCH] [Merged]: " jnbr
  1 sibling, 0 replies; 3+ messages in thread
From: dmarto @ 2020-04-26 12:21 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by dmarto against master on the void-packages repository

https://github.com/dmarto/void-packages edb-update
https://github.com/void-linux/void-packages/pull/21350

edb-debugger: update to 1.2.0


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

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

From 286e466905e4243eabb1a1c151cf972a54986012 Mon Sep 17 00:00:00 2001
From: Martin Dimov <martin@dmarto.com>
Date: Sun, 26 Apr 2020 15:04:41 +0300
Subject: [PATCH] edb-debugger: update to 1.2.0

---
 srcpkgs/edb-debugger/patches/fix-musl.patch | 4 ++--
 srcpkgs/edb-debugger/template               | 7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/edb-debugger/patches/fix-musl.patch b/srcpkgs/edb-debugger/patches/fix-musl.patch
index 64aef6c4f4d..7fe72187bdd 100644
--- a/srcpkgs/edb-debugger/patches/fix-musl.patch
+++ b/srcpkgs/edb-debugger/patches/fix-musl.patch
@@ -4,13 +4,13 @@ Reason: fixes compilation by avoiding using __ptrace_request as an enum.
 
 --- plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
 +++ plugins/DebuggerCore/unix/linux/arch/x86-generic/PlatformThread.cpp
-@@ -34,6 +34,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+@@ -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/template b/srcpkgs/edb-debugger/template
index d2ce83f665f..b9bfd34cb5e 100644
--- a/srcpkgs/edb-debugger/template
+++ b/srcpkgs/edb-debugger/template
@@ -1,8 +1,9 @@
 # Template file for 'edb-debugger'
 pkgname=edb-debugger
-version=1.0.0
-revision=3
+version=1.2.0
+revision=1
 archs="x86_64* i686*"
+wrksrc="edb-debugger"
 build_style=cmake
 hostmakedepends='pkg-config'
 makedepends="capstone-devel graphviz-devel boost-devel qt5-devel qt5-xmlpatterns-devel qt5-svg-devel"
@@ -11,4 +12,4 @@ 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=fab87541042df79ea63254e371d81b84d6b72f78141a6ab92512610ed2b7dfac
+checksum=96f8ee00c5983e6a4e108a0d738464e8b74da187018229334b498c80e7fe4917

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Merged]: edb-debugger: update to 1.2.0
  2020-04-26 12:18 [PR PATCH] edb-debugger: update to 1.2.0 dmarto
  2020-04-26 12:21 ` [PR PATCH] [Updated] " dmarto
@ 2020-04-27 21:37 ` jnbr
  1 sibling, 0 replies; 3+ messages in thread
From: jnbr @ 2020-04-27 21:37 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

edb-debugger: update to 1.2.0
https://github.com/void-linux/void-packages/pull/21350

Description:


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-04-27 21:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-26 12:18 [PR PATCH] edb-debugger: update to 1.2.0 dmarto
2020-04-26 12:21 ` [PR PATCH] [Updated] " dmarto
2020-04-27 21:37 ` [PR PATCH] [Merged]: " jnbr

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).