* [bug#46050] [PATCH 1/3] gnu: sbcl-cmd: Remove dead code. @ 2021-01-23 10:16 Matthew Kraai 2021-01-23 10:19 ` [bug#46050] [PATCH 2/3] gnu: cl-cmd: Use sbcl-package->cl-source-package Matthew Kraai 2021-01-23 13:28 ` bug#46050: [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Guillaume Le Vaillant 0 siblings, 2 replies; 4+ messages in thread From: Matthew Kraai @ 2021-01-23 10:16 UTC (permalink / raw) To: 46050; +Cc: Matthew Kraai * gnu/packages/lisp-xyz.scm (sbcl-cmd): Remove dead code. --- gnu/packages/lisp-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 57d40dad07..7f5dfaddbc 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2020, 2021 Adam Kandur <rndd@tuta.io> ;;; Copyright © 2020, 2021 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2021 Aurora <rind38@disroot.org> +;;; Copyright © 2021 Matthew Kraai <kraai@ftbfs.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -13224,9 +13225,8 @@ standard library.") (modify-phases %standard-phases (add-after 'unpack 'fix-paths (lambda* (#:key inputs #:allow-other-keys) - (let ((source (assoc-ref inputs "source")) - (bin (string-append (assoc-ref inputs "coreutils") "/bin"))) - (substitute* (string-append "cmd.lisp") + (let ((bin (string-append (assoc-ref inputs "coreutils") "/bin"))) + (substitute* "cmd.lisp" (("\"env\"") (format #f "\"~a/env\"" bin)) (("\"pwd\"") (format #f "\"~a/pwd\"" bin))))))))) (home-page "https://github.com/ruricolist/cmd") -- 2.30.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#46050] [PATCH 2/3] gnu: cl-cmd: Use sbcl-package->cl-source-package. 2021-01-23 10:16 [bug#46050] [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Matthew Kraai @ 2021-01-23 10:19 ` Matthew Kraai 2021-01-23 10:19 ` [bug#46050] [PATCH 3/3] gnu: cl-ppath: " Matthew Kraai 2021-01-23 13:28 ` bug#46050: [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Guillaume Le Vaillant 1 sibling, 1 reply; 4+ messages in thread From: Matthew Kraai @ 2021-01-23 10:19 UTC (permalink / raw) To: 46050; +Cc: Matthew Kraai * gnu/packages/lisp-xyz.scm (cl-cmd): Use sbcl-package->cl-source-package. --- gnu/packages/lisp-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 7f5dfaddbc..d2e08883db 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -13241,7 +13241,7 @@ be usable from multi-threaded programs.") (sbcl-package->ecl-package sbcl-cmd)) (define-public cl-cmd - (sbcl-package->ecl-package sbcl-cmd)) + (sbcl-package->cl-source-package sbcl-cmd)) (define-public sbcl-ppath (let ((commit "eb1a8173b4d1d691ea9a7699412123462f58c3ce")) -- 2.30.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#46050] [PATCH 3/3] gnu: cl-ppath: Use sbcl-package->cl-source-package. 2021-01-23 10:19 ` [bug#46050] [PATCH 2/3] gnu: cl-cmd: Use sbcl-package->cl-source-package Matthew Kraai @ 2021-01-23 10:19 ` Matthew Kraai 0 siblings, 0 replies; 4+ messages in thread From: Matthew Kraai @ 2021-01-23 10:19 UTC (permalink / raw) To: 46050; +Cc: Matthew Kraai * gnu/packages/lisp-xyz.scm (cl-ppath): Use sbcl-package->cl-source-package. --- gnu/packages/lisp-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index d2e08883db..88e946efae 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -13284,4 +13284,4 @@ corresponding OS system functions are called.") (sbcl-package->ecl-package sbcl-ppath)) (define-public cl-ppath - (sbcl-package->ecl-package sbcl-ppath)) + (sbcl-package->cl-source-package sbcl-ppath)) -- 2.30.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#46050: [PATCH 1/3] gnu: sbcl-cmd: Remove dead code. 2021-01-23 10:16 [bug#46050] [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Matthew Kraai 2021-01-23 10:19 ` [bug#46050] [PATCH 2/3] gnu: cl-cmd: Use sbcl-package->cl-source-package Matthew Kraai @ 2021-01-23 13:28 ` Guillaume Le Vaillant 1 sibling, 0 replies; 4+ messages in thread From: Guillaume Le Vaillant @ 2021-01-23 13:28 UTC (permalink / raw) To: Matthew Kraai; +Cc: 46050-done [-- Attachment #1: Type: text/plain, Size: 83 bytes --] Patches pushed as 60528f9ba729f7a22180d3a93d18bbdb3cfb2783 and following. Thanks. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 247 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-01-23 13:30 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-01-23 10:16 [bug#46050] [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Matthew Kraai 2021-01-23 10:19 ` [bug#46050] [PATCH 2/3] gnu: cl-cmd: Use sbcl-package->cl-source-package Matthew Kraai 2021-01-23 10:19 ` [bug#46050] [PATCH 3/3] gnu: cl-ppath: " Matthew Kraai 2021-01-23 13:28 ` bug#46050: [PATCH 1/3] gnu: sbcl-cmd: Remove dead code Guillaume Le Vaillant
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).