From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49918) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0VcC-00070V-5Z for guix-patches@gnu.org; Sat, 08 Feb 2020 14:18:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0VcA-0007ak-Uh for guix-patches@gnu.org; Sat, 08 Feb 2020 14:18:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j0VcA-0007aW-I5 for guix-patches@gnu.org; Sat, 08 Feb 2020 14:18:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j0VcA-0004XM-EV for guix-patches@gnu.org; Sat, 08 Feb 2020 14:18:02 -0500 Subject: [bug#39514] [PATCH] update radare2 and cutter versions Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41917) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0SQM-0005XY-Qd for guix-patches@gnu.org; Sat, 08 Feb 2020 10:53:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0SQL-0006XP-Df for guix-patches@gnu.org; Sat, 08 Feb 2020 10:53:38 -0500 Received: from cock.li ([2a06:1700:0:b::c0cc]:35594) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j0SQK-0006RA-S7 for guix-patches@gnu.org; Sat, 08 Feb 2020 10:53:37 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 08 Feb 2020 16:53:30 +0100 From: pinoaffe@airmail.cc Message-ID: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39514@debbugs.gnu.org update radare2 and cutter, they need to be updated at the same time since old cutter doesn't build with new radare2 and new cutter doesn't build with old radare2 --- gnu/packages/engineering.scm | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 4db8109249..f76c2800e4 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1270,14 +1270,16 @@ bindings for Python, Java, OCaml and more.") (define-public radare2 (package (name "radare2") - (version "3.5.1") + (version "4.2.1") (source (origin - (method url-fetch) - (uri (string-append "https://radare.mikelloc.com/get/" version "/" - "radare2-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/radareorg/radare2") + (commit version))) (sha256 (base32 - "174x5545fw2nyf000gd46hi7rx2bn3bw5bsnvizn9yi99pn7m4mw")) + "14b9433cgc2nabhz836zfgvgh2dwailcmvy05krsa0inmzbvx9fg")) + (file-name (string-append name "-" version "-checkout")) (modules '((guix build utils))) (snippet '(begin @@ -1290,7 +1292,7 @@ bindings for Python, Java, OCaml and more.") #t)))) (build-system gnu-build-system) (arguments - '(#:tests? #f ; tests require git and network access + '(#:tests? #f ; tests require git and network access #:phases (modify-phases %standard-phases (add-before 'configure 'mklibdir @@ -1312,7 +1314,7 @@ bindings for Python, Java, OCaml and more.") (home-page "https://radare.org/") (synopsis "Portable reversing framework") (description - "Radare project started as a forensics tool, a scriptable commandline + "Radare project started as a forensics tool, a scriptable commandline hexadecimal editor able to open disk files, but later support for analyzing binaries, disassembling code, debugging programs, attaching to remote gdb servers, ...") @@ -2089,7 +2091,7 @@ simulation.") (define-public cutter (package (name "cutter") - (version "1.8.3") + (version "1.10.1") (source (origin (method git-fetch) @@ -2099,7 +2101,7 @@ simulation.") (file-name (git-file-name name version)) (sha256 (base32 - "03f3cdckh51anx9gd1b0ndb2fg7061hqngvygf32ky29mm2m2lyv")))) + "1gvsrcskcdd1hxrjpkpc657anmfs25f174vxk4wzvn385rnmrxd3")))) (build-system gnu-build-system) (arguments `(#:phases -- 2.25.0