GNU bug report logs -
#59079
[PATCH] gnu: rlwrap: Update to 0.46.1.
Previous Next
Reported by: Hilton Chain <hako <at> ultrarare.space>
Date: Sun, 6 Nov 2022 13:58:02 UTC
Severity: normal
Tags: patch
Done: Christopher Baines <mail <at> cbaines.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 59079 in the body.
You can then email your comments to 59079 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#59079
; Package
guix-patches
.
(Sun, 06 Nov 2022 13:58:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Hilton Chain <hako <at> ultrarare.space>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 06 Nov 2022 13:58:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
---
gnu/packages/readline.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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 (string-append version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1irlcdvj1ddxkfzwa7l2djxgp5xbqch9vaajk2s32x1h5cxl1f5r"))))
+ (base32 "0shck0hb3jssk5l2pfylxgwrhlkwydj2ld6j7qk2ns2zviymg8n8"))))
(build-system gnu-build-system)
(native-inputs
(list autoconf automake perl))
--
2.38.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59079
; Package
guix-patches
.
(Sun, 06 Nov 2022 14:05:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 59079 <at> debbugs.gnu.org (full text, mbox):
Heya,
On Sun Nov 6, 2022 at 1:56 PM GMT, Hilton Chain via Guix-patches via wrote:
> * gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
> --- a/gnu/packages/readline.scm
> +++ b/gnu/packages/readline.scm
> @@ -143,16 +143,16 @@ (define-public readline-6.2
> (source
> (origin
> (method git-fetch)
> (uri (git-reference
> (url "https://github.com/hanslub42/rlwrap")
> - (commit (string-append "v" version))))
> + (commit (string-append version))))
``(string-append version)'' is just equivalent to ``version''.
-- (
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59079
; Package
guix-patches
.
(Sun, 06 Nov 2022 14:14:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 59079 <at> debbugs.gnu.org (full text, mbox):
* 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(-)
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))
--
2.38.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59079
; Package
guix-patches
.
(Sun, 06 Nov 2022 14:16:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 59079 <at> debbugs.gnu.org (full text, mbox):
On Sun Nov 6, 2022 at 2:13 PM GMT, Hilton Chain wrote:
> * gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
LGTM! :)
-- (
Reply sent
to
Christopher Baines <mail <at> cbaines.net>
:
You have taken responsibility.
(Mon, 07 Nov 2022 20:03:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Hilton Chain <hako <at> ultrarare.space>
:
bug acknowledged by developer.
(Mon, 07 Nov 2022 20:03:03 GMT)
Full text and
rfc822 format available.
Message #19 received at 59079-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hilton Chain via Guix-patches via <guix-patches <at> 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
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59079
; Package
guix-patches
.
(Mon, 07 Nov 2022 20:03:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 06 Dec 2022 12:24:11 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 194 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.