* [bug#45964] [PATCH 0/2] radare2 & cutter updates
@ 2021-01-18 18:00 Vincent Legoll
2021-01-18 18:03 ` [bug#45964] [PATCH 1/2] gnu: radare2: Update to 5.0.0 Vincent Legoll
2021-01-20 9:20 ` bug#45964: [PATCH 0/2] radare2 & cutter updates Efraim Flashner
0 siblings, 2 replies; 4+ messages in thread
From: Vincent Legoll @ 2021-01-18 18:00 UTC (permalink / raw)
To: 45964
The following patches are interdependent updates
for cutter & radare2, they can go to master I think.
The radare2 update has been tested to break the
build of our previous version of cutter, which
updated to latest, now builds properly with the
updated radare.
--
Vincent Legoll
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#45964] [PATCH 1/2] gnu: radare2: Update to 5.0.0.
2021-01-18 18:00 [bug#45964] [PATCH 0/2] radare2 & cutter updates Vincent Legoll
@ 2021-01-18 18:03 ` Vincent Legoll
2021-01-18 18:03 ` [bug#45964] [PATCH 2/2] gnu: cutter: Update to 1.12.0 Vincent Legoll
2021-01-20 9:20 ` bug#45964: [PATCH 0/2] radare2 & cutter updates Efraim Flashner
1 sibling, 1 reply; 4+ messages in thread
From: Vincent Legoll @ 2021-01-18 18:03 UTC (permalink / raw)
To: 45964; +Cc: Vincent Legoll
* gnu/packages/engineering.scm (radare2): Update to 5.0.0.
---
gnu/packages/engineering.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 826e2d89b6..1747671683 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -15,7 +15,7 @@
;;; Copyright © 2019 Steve Sprang <scs@stevesprang.com>
;;; Copyright © 2019 John Soo <jsoo1@asu.edu>
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
-;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
+;;; Copyright © 2020,2021 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
@@ -1524,7 +1524,7 @@ bindings for Python, Java, OCaml and more.")
(define-public radare2
(package
(name "radare2")
- (version "4.4.0")
+ (version "5.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1532,7 +1532,7 @@ bindings for Python, Java, OCaml and more.")
(commit version)))
(sha256
(base32
- "0gwdnrnk7wdgkajp2qwg4fyplh7nsbmf01bzx07px6xmiscd9z2s"))
+ "0aa7c27kd0l55fy5qfvxqmakp4pz6240v3hn84095qmqkzcbs420"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(arguments
--
2.30.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#45964] [PATCH 2/2] gnu: cutter: Update to 1.12.0.
2021-01-18 18:03 ` [bug#45964] [PATCH 1/2] gnu: radare2: Update to 5.0.0 Vincent Legoll
@ 2021-01-18 18:03 ` Vincent Legoll
0 siblings, 0 replies; 4+ messages in thread
From: Vincent Legoll @ 2021-01-18 18:03 UTC (permalink / raw)
To: 45964; +Cc: Vincent Legoll
* gnu/packages/engineering.scm (cutter): Update to 1.12.0.
---
gnu/packages/engineering.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 1747671683..baddaf1737 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -2367,7 +2367,7 @@ simulation.")
(define-public cutter
(package
(name "cutter")
- (version "1.10.3")
+ (version "1.12.0")
(source
(origin
(method git-fetch)
@@ -2376,7 +2376,7 @@ simulation.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0qj8jyij02nif4jpirl09ygwnv8a9zi3vkb5sf5s8mg7qwlpnvyk"))))
+ (base32 "0ljj3j3apbbw628n2nyrxpbnclixx20bqjxm0xwggqzz9vywsar0"))))
(build-system gnu-build-system)
(arguments
`(#:phases
--
2.30.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#45964: [PATCH 0/2] radare2 & cutter updates
2021-01-18 18:00 [bug#45964] [PATCH 0/2] radare2 & cutter updates Vincent Legoll
2021-01-18 18:03 ` [bug#45964] [PATCH 1/2] gnu: radare2: Update to 5.0.0 Vincent Legoll
@ 2021-01-20 9:20 ` Efraim Flashner
1 sibling, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2021-01-20 9:20 UTC (permalink / raw)
To: Vincent Legoll; +Cc: 45964-done
[-- Attachment #1: Type: text/plain, Size: 736 bytes --]
On Mon, Jan 18, 2021 at 07:00:48PM +0100, Vincent Legoll wrote:
> The following patches are interdependent updates
> for cutter & radare2, they can go to master I think.
>
> The radare2 update has been tested to break the
> build of our previous version of cutter, which
> updated to latest, now builds properly with the
> updated radare.
>
I tried building the updated cutter without the updated radare2 and it
failed to build so I applied the patches in the order you sent them.
Thanks! Patches pushed.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-01-20 9:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-18 18:00 [bug#45964] [PATCH 0/2] radare2 & cutter updates Vincent Legoll
2021-01-18 18:03 ` [bug#45964] [PATCH 1/2] gnu: radare2: Update to 5.0.0 Vincent Legoll
2021-01-18 18:03 ` [bug#45964] [PATCH 2/2] gnu: cutter: Update to 1.12.0 Vincent Legoll
2021-01-20 9:20 ` bug#45964: [PATCH 0/2] radare2 & cutter updates Efraim Flashner
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).