* [bug#59079] [PATCH] gnu: rlwrap: Update to 0.46.1.
@ 2022-11-06 13:56 Hilton Chain via Guix-patches via
2022-11-06 14:04 ` ( via Guix-patches via
0 siblings, 1 reply; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-11-06 13:56 UTC (permalink / raw)
To: 59079
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#59079] [PATCH] gnu: rlwrap: Update to 0.46.1.
2022-11-06 13:56 [bug#59079] [PATCH] gnu: rlwrap: Update to 0.46.1 Hilton Chain via Guix-patches via
@ 2022-11-06 14:04 ` ( via Guix-patches via
2022-11-06 14:13 ` [bug#59079] [PATCH v2] " Hilton Chain via Guix-patches via
0 siblings, 1 reply; 5+ messages in thread
From: ( via Guix-patches via @ 2022-11-06 14:04 UTC (permalink / raw)
To: Hilton Chain, 59079
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''.
-- (
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59079] [PATCH v2] gnu: rlwrap: Update to 0.46.1.
2022-11-06 14:04 ` ( via Guix-patches via
@ 2022-11-06 14:13 ` Hilton Chain via Guix-patches via
2022-11-06 14:15 ` ( via Guix-patches via
2022-11-07 20:02 ` bug#59079: " Christopher Baines
0 siblings, 2 replies; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-11-06 14:13 UTC (permalink / raw)
To: (; +Cc: 59079
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#59079] [PATCH v2] gnu: rlwrap: Update to 0.46.1.
2022-11-06 14:13 ` [bug#59079] [PATCH v2] " Hilton Chain via Guix-patches via
@ 2022-11-06 14:15 ` ( via Guix-patches via
2022-11-07 20:02 ` bug#59079: " Christopher Baines
1 sibling, 0 replies; 5+ messages in thread
From: ( via Guix-patches via @ 2022-11-06 14:15 UTC (permalink / raw)
To: Hilton Chain; +Cc: 59079
On Sun Nov 6, 2022 at 2:13 PM GMT, Hilton Chain wrote:
> * gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
LGTM! :)
-- (
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#59079: [PATCH v2] gnu: rlwrap: Update to 0.46.1.
2022-11-06 14:13 ` [bug#59079] [PATCH v2] " Hilton Chain via Guix-patches via
2022-11-06 14:15 ` ( via Guix-patches via
@ 2022-11-07 20:02 ` Christopher Baines
1 sibling, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2022-11-07 20:02 UTC (permalink / raw)
To: Hilton Chain; +Cc: (, guix-patches, 59079-done
[-- Attachment #1: Type: text/plain, Size: 403 bytes --]
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
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-11-07 20:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-06 13:56 [bug#59079] [PATCH] gnu: rlwrap: Update to 0.46.1 Hilton Chain via Guix-patches via
2022-11-06 14:04 ` ( via Guix-patches via
2022-11-06 14:13 ` [bug#59079] [PATCH v2] " Hilton Chain via Guix-patches via
2022-11-06 14:15 ` ( via Guix-patches via
2022-11-07 20:02 ` bug#59079: " Christopher Baines
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).