[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: rr: Update to 5.6.0.
From: |
guix-commits |
Subject: |
02/07: gnu: rr: Update to 5.6.0. |
Date: |
Mon, 29 Aug 2022 12:23:51 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit ed9558b17a720bef7a91a5afd3b49380717a73ea
Author: Michael Rohleder <mike@rohleder.de>
AuthorDate: Sun Aug 28 15:58:23 2022 +0200
gnu: rr: Update to 5.6.0.
* gnu/packages/debug.scm (rr): Update to 5.6.0.
[arguments]<#:configure-flags>: Add -rpath to zlib to satisfy
validate-runpath.
[inputs]: Add zlib.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
gnu/packages/debug.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 80685900eb..b3ddfbdee6 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -621,7 +621,7 @@ error reporting, better tracing, profiling, and a
debugger.")
(define-public rr
(package
(name "rr")
- (version "5.5.0")
+ (version "5.6.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -629,7 +629,7 @@ error reporting, better tracing, profiling, and a
debugger.")
(commit version)))
(sha256
(base32
- "079x891axkiy8qbvjar9vbaldlx7pm9p0i3nq6infdc66nc69635"))
+ "0sdpsd7bcbmx9gmp7lv71znzxz708wm8qxq5apbyc6hh80z4fzqz"))
(file-name (git-file-name name version))))
(build-system cmake-build-system)
(arguments
@@ -641,7 +641,9 @@ error reporting, better tracing, profiling, and a
debugger.")
;; Satisfy the ‘validate-runpath’ phase. This isn't a direct
;; consequence of clearing CMAKE_INSTALL_RPATH.
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
- (assoc-ref %build-inputs "capnproto") "/lib")
+ (assoc-ref %build-inputs "capnproto")
+ "/lib,-rpath=" (assoc-ref %build-inputs "zlib")
+ "/lib")
,@(if (and (not (%current-target-system))
(member (%current-system)
'("x86_64-linux" "aarch64-linux")))
@@ -666,7 +668,7 @@ error reporting, better tracing, profiling, and a
debugger.")
(native-inputs
(list pkg-config ninja which))
(inputs
- (list gdb capnproto python python-pexpect))
+ (list gdb capnproto python python-pexpect zlib))
(home-page "https://rr-project.org/")
(synopsis "Record and reply debugging framework")
(description
- branch master updated (6e83d294ce -> 9529384c92), guix-commits, 2022/08/29
- 02/07: gnu: rr: Update to 5.6.0.,
guix-commits <=
- 04/07: gnu: gnupg: Use mirror URL., guix-commits, 2022/08/29
- 05/07: gnu: snakemake-7: Fix cluster execution bug, guix-commits, 2022/08/29
- 01/07: gnu: Add python-django-cleanup., guix-commits, 2022/08/29
- 03/07: gnu: uncrustify: Update to 0.75.1., guix-commits, 2022/08/29
- 06/07: gnu: snakemake-6: Convert dependencies to propagated-inputs, guix-commits, 2022/08/29
- 07/07: gnu: snakemake-7: Convert dependencies to propagated-inputs, guix-commits, 2022/08/29