* [bug#59685] [PATCH] gnu: Add guile-jtd.
@ 2022-11-29 17:34 jgart via Guix-patches via
2022-12-08 21:44 ` bug#59685: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: jgart via Guix-patches via @ 2022-11-29 17:34 UTC (permalink / raw)
To: 59685; +Cc: jgart
* 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@taiju.info>
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
+;;; Copyright © 2022 jgart <jgart@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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#59685: [PATCH] gnu: Add guile-jtd.
2022-11-29 17:34 [bug#59685] [PATCH] gnu: Add guile-jtd jgart via Guix-patches via
@ 2022-12-08 21:44 ` Ludovic Courtès
0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-12-08 21:44 UTC (permalink / raw)
To: jgart; +Cc: 59685-done
[-- Attachment #1: Type: text/plain, Size: 160 bytes --]
Hi,
jgart <jgart@dismail.de> skribis:
> * gnu/packages/guile-xyz.scm (guile-jtd): New variable.
Applied with the changes below, thanks!
Ludo’.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1740 bytes --]
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-08 21:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-29 17:34 [bug#59685] [PATCH] gnu: Add guile-jtd jgart via Guix-patches via
2022-12-08 21:44 ` bug#59685: " Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).