GNU bug report logs - #57738
[PATCH] gnu: Add cl-morse.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Sun, 11 Sep 2022 18:34:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57738 in the body.
You can then email your comments to 57738 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57738; Package guix-patches. (Sun, 11 Sep 2022 18:34:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 11 Sep 2022 18:34:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add cl-morse.
Date: Sun, 11 Sep 2022 13:33:36 -0500
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#57738; Package guix-patches. (Sun, 11 Sep 2022 20:14:02 GMT) Full text and rfc822 format available.

Message #8 received at 57738 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: "jgart" <jgart <at> dismail.de>, <57738 <at> debbugs.gnu.org>
Subject: Re: [bug#57738] [PATCH] gnu: Add cl-morse.
Date: Sun, 11 Sep 2022 21:13:22 +0100
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'.

    -- (




Information forwarded to guix-patches <at> gnu.org:
bug#57738; Package guix-patches. (Sun, 11 Sep 2022 20:20:01 GMT) Full text and rfc822 format available.

Message #11 received at 57738 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57738 <at> debbugs.gnu.org
Cc: "\(" <paren <at> disroot.org>, jgart <jgart <at> dismail.de>
Subject: [PATCH v2] gnu: Add cl-morse.
Date: Sun, 11 Sep 2022 15:18:20 -0500
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#57738; Package guix-patches. (Sun, 11 Sep 2022 20:22:02 GMT) Full text and rfc822 format available.

Message #14 received at 57738 <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: "jgart" <jgart <at> dismail.de>, <57738 <at> debbugs.gnu.org>
Subject: Re: [PATCH v2] gnu: Add cl-morse.
Date: Sun, 11 Sep 2022 21:21:41 +0100
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.")

    -- (




Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Thu, 15 Sep 2022 08:40:02 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Thu, 15 Sep 2022 08:40:02 GMT) Full text and rfc822 format available.

Message #19 received at 57738-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: jgart <jgart <at> dismail.de>
Cc: "\(" <paren <at> disroot.org>, 57738-done <at> debbugs.gnu.org
Subject: Re: [bug#57738] [PATCH v2] gnu: Add cl-morse.
Date: Thu, 15 Sep 2022 08:38:54 +0000
[Message part 1 (text/plain, inline)]
Patch pushed as e5fa6df1bcc8365b6dcb1fe3f4a117b16588da03.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 13 Oct 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 195 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.