emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#57659: closed ([PATCH] gnu: Add blesh.)


From: GNU bug Tracking System
Subject: bug#57659: closed ([PATCH] gnu: Add blesh.)
Date: Wed, 14 Sep 2022 08:44:02 +0000

Your message dated Wed, 14 Sep 2022 09:40:49 +0100
with message-id <87edwe8hyn.fsf@cbaines.net>
and subject line Re: [PATCH v3] gnu: Add blesh.
has caused the debbugs.gnu.org bug report #57659,
regarding [PATCH] gnu: Add blesh.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57659: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57659
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add blesh. Date: Wed, 7 Sep 2022 22:11:06 -0400
* gnu/packages/bash.scm (blesh): New variable.
---
 gnu/packages/bash.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm
index 72758560cd..2460c7cc00 100644
--- a/gnu/packages/bash.scm
+++ b/gnu/packages/bash.scm
@@ -44,6 +44,7 @@ (define-module (gnu packages bash)
   #:use-module (guix gexp)
   #:use-module (guix monads)
   #:use-module (guix store)
+  #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
   #:autoload   (guix gnupg) (gnupg-verify*)
@@ -456,3 +457,25 @@ (define-public bash-ctypes
 function interface (FFI) directly in your shell.  In other words, it allows
 you to call routines in shared libraries from within Bash.")
     (license license:expat)))
+
+(define-public blesh
+  (package
+    (name "blesh")
+    (version "0.3.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/akinomyoga/ble.sh/releases/download/v";
+                          version "/ble-" version ".tar.xz"))
+       (sha256
+        (base32
+         "0fpkacw0r5zhby1wpsirlzq4w1yq1fmhivik47l891c2pn1n7rm7"))))
+    (build-system copy-build-system)
+    (inputs (list bash))
+    (arguments
+      (list
+       #:install-plan #~'(("." "share/blesh"))))
+    (home-page "https://github.com/akinomyoga/ble.sh/";)
+    (synopsis "A line editor written in pure Bash")
+    (description "Bash Line Editor (ble.sh) is a command line editor written 
in pure Bash which replaces the default GNU Readline. It adds syntax 
highlighting, auto suggestions, vim modes, and more to Bash interactive 
sessions.")
+    (license license:bsd-3)))

base-commit: b45a44eaad890f31d9418dbb8cb14e3ee1d83c19
-- 
2.37.2




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH v3] gnu: Add blesh. Date: Wed, 14 Sep 2022 09:40:49 +0100 User-agent: mu4e 1.6.11; emacs 28.1
kiasoc5 <kiasoc5@disroot.org> writes:

> Tests pass now.
>
> * gnu/packages/bash.scm (blesh): New variable.
> ---
>  gnu/packages/bash.scm | 45 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 45 insertions(+)

Thanks. I've tweaked the name of one of the phaess (use-LANG-for-tests
rather than use-LC_ALL-for-tests) as that seemed more correct. I also
removed some inputs that were redundant (coreutils is provided by the
gnu-build-system, so is an implicit input), and git-minimal didn't seem
to be required.

I pushed to master as 592ca01d8d25849d077035d54d969d90ed5c2609.

Thanks,

Chris

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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