guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/10: gnu: rlwrap: Update to 0.43.


From: Tobias Geerinckx-Rice
Subject: 01/10: gnu: rlwrap: Update to 0.43.
Date: Wed, 17 Jan 2018 22:24:03 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit f1fac6b8e0a06bd96e54b96ab050ea6c91d08657
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Jan 18 01:10:43 2018 +0100

    gnu: rlwrap: Update to 0.43.
    
    * gnu/packages/readline.scm (rlwrap): Update to 0.43.
    [source, home-page]: Use new upstream URI.
---
 gnu/packages/readline.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/readline.scm b/gnu/packages/readline.scm
index f6ebbcc..44f4e74 100644
--- a/gnu/packages/readline.scm
+++ b/gnu/packages/readline.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 Jan Nieuwenhuizen <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -105,17 +106,19 @@ comfortable for anyone.")
 (define-public rlwrap
   (package
     (name "rlwrap")
-    (version "0.42")
+    (version "0.43")
     (source
       (origin
         (method url-fetch)
-        (uri (string-append "http://utopia.knoware.nl/~hlub/uck/rlwrap/rlwrap-";
-                            version ".tar.gz"))
+        (uri (string-append "https://github.com/hanslub42/rlwrap/releases/";
+                            "download/v" version "/"
+                            name "-" version ".tar.gz"))
         (sha256
          (base32
-          "0i3yz303wscrysyzpdq04h4nrl9ajz9dbwi80risdl5rkm3dhw2s"))))
+          "0bzb7ylk2770iv59v2d0gypb21y2xn87m299s9rqm6rdi2vx11lf"))))
     (build-system gnu-build-system)
-    (native-inputs `(("perl" ,perl)))
+    (native-inputs
+     `(("perl" ,perl)))
     (inputs
      `(("readline" ,readline)))
     (synopsis "Wrapper to allow the editing of keyboard commands")
@@ -125,5 +128,5 @@ readline library to allow the editing of keyboard input for 
any command.  You
 should consider rlwrap especially when you need user-defined completion (by way
 of completion word lists) and persistent history, or if you want to program
 'special effects' using the filter mechanism.")
-    (home-page "http://utopia.knoware.nl/~hlub/uck/rlwrap/";)
+    (home-page "https://github.com/hanslub42/rlwrap";)
     (license gpl2+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]