GNU bug report logs - #59685
[PATCH] gnu: Add guile-jtd.

Previous Next

Package: guix-patches;

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

Date: Tue, 29 Nov 2022 17:35:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 59685 in the body.
You can then email your comments to 59685 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#59685; Package guix-patches. (Tue, 29 Nov 2022 17:35:01 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. (Tue, 29 Nov 2022 17:35:01 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 guile-jtd.
Date: Tue, 29 Nov 2022 11:34:10 -0600
* gnu/packages/guile-xyz.scm (guile-jtd): New variable.
---
 gnu/packages/guile-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index b1620618eb..1a5fb4c319 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -45,6 +45,7 @@
 ;;; Copyright © 2022 Taiju HIGASHI <higashi <at> taiju.info>
 ;;; Copyright © 2022 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2022 Evgeny Pisemsky <evgeny <at> pisemsky.com>
+;;; Copyright © 2022 jgart <jgart <at> dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3546,6 +3547,29 @@ (define-public guile-jpeg
 perform geometrical transforms on JPEG images.")
       (license license:gpl3+))))
 
+(define-public guile-jtd
+  (package
+    (name "guile-jtd")
+    (version "220323")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mwette/guile-jtd")
+             (commit (string-append "v" version "a"))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1l8fyqhvksarvpbr903i3ss3432jzvyvhgcqa15j922ngqh4ds6f"))))
+    (build-system guile-build-system)
+    (native-inputs
+     (list guile-3.0))
+    (home-page "https://github.com/mwette/guile-jtd")
+    (synopsis "Python's pdb.set_trace() but for Guile")
+    (description
+"The (jtd) module for Guile provides a procedure @code{jump-to-debugger}
+for escaping to the Guile REPL for the purpose of debugging code.")
+    (license license:lgpl2.1+)))
+
 (define-public guile-png
   (package
     (name "guile-png")
-- 
2.38.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Thu, 08 Dec 2022 21:46:02 GMT) Full text and rfc822 format available.

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

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: jgart <jgart <at> dismail.de>
Cc: 59685-done <at> debbugs.gnu.org
Subject: Re: bug#59685: [PATCH] gnu: Add guile-jtd.
Date: Thu, 08 Dec 2022 22:44:53 +0100
[Message part 1 (text/plain, inline)]
Hi,

jgart <jgart <at> dismail.de> skribis:

> * gnu/packages/guile-xyz.scm (guile-jtd): New variable.

Applied with the changes below, thanks!

Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 9ce895e977..9fc6344491 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3569,24 +3569,24 @@ (define-public guile-jpeg
 (define-public guile-jtd
   (package
     (name "guile-jtd")
-    (version "220323")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/mwette/guile-jtd")
-             (commit (string-append "v" version "a"))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1l8fyqhvksarvpbr903i3ss3432jzvyvhgcqa15j922ngqh4ds6f"))))
+    (version "220323a")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mwette/guile-jtd")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1l8fyqhvksarvpbr903i3ss3432jzvyvhgcqa15j922ngqh4ds6f"))))
     (build-system guile-build-system)
-    (native-inputs
-     (list guile-3.0))
+    (native-inputs (list guile-3.0))
     (home-page "https://github.com/mwette/guile-jtd")
-    (synopsis "Python's pdb.set_trace() but for Guile")
+    (synopsis "Python's @code{pdb.set_trace()} but for Guile")
     (description
-"The (jtd) module for Guile provides a procedure @code{jump-to-debugger}
-for escaping to the Guile REPL for the purpose of debugging code.")
+     "The @code{(jtd)} module for Guile provides a procedure
+@code{jump-to-debugger} for escaping to the Guile REPL for the purpose of
+debugging code.")
     (license license:lgpl2.1+)))
 
 (define-public guile-png

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 06 Jan 2023 12:24:10 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 216 days ago.

Previous Next


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