all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57738] [PATCH] gnu: Add cl-morse.
@ 2022-09-11 18:33 jgart via Guix-patches via
  2022-09-11 20:13 ` ( via Guix-patches via
  2022-09-11 20:18 ` [bug#57738] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 2 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-09-11 18:33 UTC (permalink / raw)
  To: 57738; +Cc: jgart

* gnu/packages/lisp-xyz.scm (cl-morse, ecl-cl-morse, sbcl-cl-morse):
New variables.
---
 gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d7e04dba17..f8a4bb4b53 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23935,6 +23935,36 @@ (define-public cl-draw-cons-tree
 (define-public ecl-draw-cons-tree
   (sbcl-package->ecl-package sbcl-draw-cons-tree))
 
+(define-public sbcl-cl-morse
+  (package
+   (name "sbcl-cl-morse")
+   (version "1.0.0")
+   (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/em7/cl-morse")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01sh34nhbsx2dsrb2r1vkd4j8lzm9gjd5jfi8a4cs4m3djjwhh5i"))))
+   (build-system asdf-build-system/sbcl)
+   (native-inputs
+     (list sbcl-fiveam))
+   (inputs
+     (list sbcl-cl-ppcre))
+   (synopsis "Morse code translation library written in Common Lisp")
+   (description
+"@code{cl-morse} is a morse code translation library written in Common Lisp.")
+   (home-page "https://github.com/em7/cl-morse")
+   (license license:bsd-3)))
+
+(define-public cl-morse
+  (sbcl-package->cl-source-package sbcl-cl-morse))
+
+(define-public ecl-cl-morse
+  (sbcl-package->ecl-package sbcl-cl-morse))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#57738] [PATCH] gnu: Add cl-morse.
  2022-09-11 18:33 [bug#57738] [PATCH] gnu: Add cl-morse jgart via Guix-patches via
@ 2022-09-11 20:13 ` ( via Guix-patches via
  2022-09-11 20:18 ` [bug#57738] [PATCH v2] " jgart via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: ( via Guix-patches via @ 2022-09-11 20:13 UTC (permalink / raw)
  To: jgart, 57738

Hey,

On Sun Sep 11, 2022 at 7:33 PM BST, jgart via Guix-patches via wrote:
> +   (native-inputs
> +     (list sbcl-fiveam))

Change to:

> +   (native-inputs (list sbcl-fiveam))

> +   (inputs
> +     (list sbcl-cl-ppcre))

Change to:

> +   (inputs (list sbcl-cl-ppcre))

and move it before `native-inputs'.

> +   (synopsis "Morse code translation library written in Common Lisp")

`written in' -> `for', maybe? To shorten the `synopsis'.

> +   (description
> +"@code{cl-morse} is a morse code translation library written in Common Lisp.")

Change to:

> +   (description
> +    "@code{cl-morse} is a Morse code translation library written
> + in Common Lisp.")

> +   (home-page "https://github.com/em7/cl-morse")

Move this before `synopsis'.

    -- (




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#57738] [PATCH v2] gnu: Add cl-morse.
  2022-09-11 18:33 [bug#57738] [PATCH] gnu: Add cl-morse jgart via Guix-patches via
  2022-09-11 20:13 ` ( via Guix-patches via
@ 2022-09-11 20:18 ` jgart via Guix-patches via
  2022-09-11 20:21   ` ( via Guix-patches via
  1 sibling, 1 reply; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-09-11 20:18 UTC (permalink / raw)
  To: 57738; +Cc: (, jgart

* gnu/packages/lisp-xyz.scm (cl-morse, ecl-cl-morse, sbcl-cl-morse):
New variables.

v2, thnx
---
 gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d7e04dba17..051dc4c577 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23935,6 +23935,34 @@ (define-public cl-draw-cons-tree
 (define-public ecl-draw-cons-tree
   (sbcl-package->ecl-package sbcl-draw-cons-tree))
 
+(define-public sbcl-cl-morse
+  (package
+   (name "sbcl-cl-morse")
+   (version "1.0.0")
+   (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/em7/cl-morse")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01sh34nhbsx2dsrb2r1vkd4j8lzm9gjd5jfi8a4cs4m3djjwhh5i"))))
+   (build-system asdf-build-system/sbcl)
+   (inputs (list sbcl-cl-ppcre))
+   (native-inputs (list sbcl-fiveam))
+   (home-page "https://github.com/em7/cl-morse")
+   (synopsis "Morse code translation library written for Common Lisp")
+   (description
+"@code{cl-morse} is a Morse code translation library written in Common Lisp.")
+   (license license:bsd-3)))
+
+(define-public cl-morse
+  (sbcl-package->cl-source-package sbcl-cl-morse))
+
+(define-public ecl-cl-morse
+  (sbcl-package->ecl-package sbcl-cl-morse))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#57738] [PATCH v2] gnu: Add cl-morse.
  2022-09-11 20:18 ` [bug#57738] [PATCH v2] " jgart via Guix-patches via
@ 2022-09-11 20:21   ` ( via Guix-patches via
  2022-09-15  8:38     ` bug#57738: " Guillaume Le Vaillant
  0 siblings, 1 reply; 5+ messages in thread
From: ( via Guix-patches via @ 2022-09-11 20:21 UTC (permalink / raw)
  To: jgart, 57738

On Sun Sep 11, 2022 at 9:18 PM BST, jgart wrote:
> +   (description
> +"@code{cl-morse} is a Morse code translation library written in Common Lisp.")

Indentation is off:

> +   (description
> +    "@code{cl-morse} is a Morse code translation library written in
> +Common Lisp.")

    -- (




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#57738: [PATCH v2] gnu: Add cl-morse.
  2022-09-11 20:21   ` ( via Guix-patches via
@ 2022-09-15  8:38     ` Guillaume Le Vaillant
  0 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2022-09-15  8:38 UTC (permalink / raw)
  To: jgart; +Cc: (, 57738-done

[-- Attachment #1: Type: text/plain, Size: 66 bytes --]

Patch pushed as e5fa6df1bcc8365b6dcb1fe3f4a117b16588da03.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-09-15  8:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-11 18:33 [bug#57738] [PATCH] gnu: Add cl-morse jgart via Guix-patches via
2022-09-11 20:13 ` ( via Guix-patches via
2022-09-11 20:18 ` [bug#57738] [PATCH v2] " jgart via Guix-patches via
2022-09-11 20:21   ` ( via Guix-patches via
2022-09-15  8:38     ` bug#57738: " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.