diff mbox series

[bug#59079,v2] gnu: rlwrap: Update to 0.46.1.

Message ID y76bkpkdvd2.wl-hako@ultrarare.space
State New
Headers show
Series [bug#59079,v2] gnu: rlwrap: Update to 0.46.1. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git-branch success View Git branch
cbaines/applying patch success
cbaines/issue success View issue

Commit Message

Hilton Chain Nov. 6, 2022, 2:13 p.m. UTC
* gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
---
v1 -> v2: Remove unneeded string-append.
😹 Didn't notice that, thank you!

 gnu/packages/readline.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--
2.38.0

Comments

\( Nov. 6, 2022, 2:15 p.m. UTC | #1
On Sun Nov 6, 2022 at 2:13 PM GMT, Hilton Chain wrote:
> * gnu/packages/readline.scm (rlwrap): Update to 0.46.1.

LGTM! :)

    -- (
Christopher Baines Nov. 7, 2022, 8:02 p.m. UTC | #2
Hilton Chain via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
> ---
> v1 -> v2: Remove unneeded string-append.
> 😹 Didn't notice that, thank you!
>
>  gnu/packages/readline.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Thanks both, pushed to master as
e080080e6bcc323f20652ef76e1a6a2cd6f87dd5.

Chris
diff mbox series

Patch

diff --git a/gnu/packages/readline.scm b/gnu/packages/readline.scm
index 5920f1c8e1..26d1e44810 100644
--- a/gnu/packages/readline.scm
+++ b/gnu/packages/readline.scm
@@ -143,16 +143,16 @@  (define-public readline-6.2
 (define-public rlwrap
   (package
     (name "rlwrap")
-    (version "0.45.2")
+    (version "0.46.1")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/hanslub42/rlwrap")
-             (commit (string-append "v" version))))
+             (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1irlcdvj1ddxkfzwa7l2djxgp5xbqch9vaajk2s32x1h5cxl1f5r"))))
+        (base32 "0shck0hb3jssk5l2pfylxgwrhlkwydj2ld6j7qk2ns2zviymg8n8"))))
     (build-system gnu-build-system)
     (native-inputs
      (list autoconf automake perl))