[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: ed: Update to 1.18.
From: |
guix-commits |
Subject: |
02/03: gnu: ed: Update to 1.18. |
Date: |
Wed, 23 Mar 2022 05:45:51 -0400 (EDT) |
efraim pushed a commit to branch core-updates
in repository guix.
commit b77ec228af23ed267cd94efc0fd673b741c0d6da
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Mar 23 11:18:46 2022 +0200
gnu: ed: Update to 1.18.
* gnu/packages/ed.scm (ed): Update to 1.18.
[arguments]: Remove trailing #t.
---
gnu/packages/ed.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/ed.scm b/gnu/packages/ed.scm
index a42ba40102..dc77c37ed6 100644
--- a/gnu/packages/ed.scm
+++ b/gnu/packages/ed.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2019, 2022 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,14 +28,14 @@
(define-public ed
(package
(name "ed")
- (version "1.17")
+ (version "1.18")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/ed/ed-"
version ".tar.lz"))
(sha256
(base32
- "0m2yrkfjjraakxr98nsiakqrn351h99n706x9asgmdi57j43kpki"))))
+ "0krb8rsb0cd8mgz0c5pqgnjbbrj7zjl7mf9099r8gi80k2nyza5c"))))
(build-system gnu-build-system)
(native-inputs (list lzip))
(arguments
@@ -45,8 +45,7 @@
(add-before 'patch-source-shebangs 'patch-test-suite
(lambda _
(substitute* "testsuite/check.sh"
- (("/bin/sh") (which "sh")))
- #t)))))
+ (("/bin/sh") (which "sh"))))))))
(home-page "https://www.gnu.org/software/ed/")
(synopsis "Line-oriented text editor")
(description