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

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

bug#46890: closed ([PATCH 1/9] - added Croatoan, lisp ncurses wrapper.)


From: GNU bug Tracking System
Subject: bug#46890: closed ([PATCH 1/9] - added Croatoan, lisp ncurses wrapper.)
Date: Thu, 04 Mar 2021 10:19:01 +0000

Your message dated Thu, 04 Mar 2021 11:18:29 +0100
with message-id <87a6rj6x3e.fsf@yamatai>
and subject line Re: [bug#46890] [PATCH 1/9] - added Croatoan, lisp ncurses 
wrapper.
has caused the debbugs.gnu.org bug report #46890,
regarding [PATCH 1/9] - added Croatoan, lisp ncurses wrapper.
to be marked as done.

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


-- 
46890: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46890
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/9] - added Croatoan, lisp ncurses wrapper. Date: Wed, 3 Mar 2021 16:21:25 +0100
---
 gnu/packages/lisp-xyz.scm | 44 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 90ab8c5cd0..6ee15b0ffb 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -73,6 +73,7 @@
   #:use-module (gnu packages lisp)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages mp3)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages networking)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
@@ -14783,3 +14784,46 @@ protocol for Mastodon.")
 
 (define-public cl-tooter
   (sbcl-package->cl-source-package sbcl-tooter))
+
+(define-public sbcl-croatoan
+  (let ((commit "89ecd147cf1548f569f23353b3ab656cfb74de1f")
+        (revision "1"))
+    (package
+      (name "sbcl-croatoan")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/McParen/croatoan";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0pk4mym88531jx0f1zmm6gmvrmdjzj2zcl2cdywdsxvjygr53zyx"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:asd-systems '("croatoan")
+         #:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'fix-paths
+             (lambda* (#:key inputs #:allow-other-keys)
+               (substitute* "ncurses/ncurses.lisp"
+                 (("libncursesw" all)
+                  (string-append (assoc-ref inputs "ncurses")
+                                 "/lib/"
+                                 all))))))))
+      (inputs
+       `(("ncurses" ,ncurses)
+         ("sbcl-cffi" ,sbcl-cffi)
+         ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
+         ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)))
+      (synopsis "High-level Lisp CLOS bindings for the ncurses terminal 
library")
+      (description "High-level Lisp CLOS bindings for the ncurses terminal 
library.")
+      (home-page "https://github.com/McParen/croatoan";)
+      (license license:x11))))
+
+(define-public ecl-croatoan
+  (sbcl-package->ecl-package sbcl-croatoan))
+
+(define-public cl-croatoan
+  (sbcl-package->cl-source-package sbcl-croatoan))
-- 
2.30.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#46890] [PATCH 1/9] - added Croatoan, lisp ncurses wrapper. Date: Thu, 04 Mar 2021 11:18:29 +0100 User-agent: mu4e 1.4.15; emacs 27.1
Patch pushed as 8768df2ec03fc67e2acbc33b61fabc412fd75e0b with some
modifications.
Thanks.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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