<pre style='margin:0'>
Perry E. Metzger (pmetzger) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/78345b94c5b56e0a0a6a3f7e5029c875a0581b59">https://github.com/macports/macports-ports/commit/78345b94c5b56e0a0a6a3f7e5029c875a0581b59</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new 78345b94c5b common_lisp PG: avoid CLisp issue on case sensetive FS
</span>78345b94c5b is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 78345b94c5b56e0a0a6a3f7e5029c875a0581b59
</span>Author: Kirill A. Korinsky <kirill@korins.ky>
AuthorDate: Wed Aug 23 18:24:26 2023 +0200
<span style='display:block; white-space:pre;color:#404040;'> common_lisp PG: avoid CLisp issue on case sensetive FS
</span>---
_resources/port1.0/group/common_lisp-1.0.tcl | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/common_lisp-1.0.tcl b/_resources/port1.0/group/common_lisp-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 1ec4694748e..fde8a5efb9f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/common_lisp-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/common_lisp-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -265,7 +265,10 @@ proc common_lisp::run {lisp eval_arg op name build_system_path} {
</span>
set loadcmd ${lisp}
<span style='display:block; white-space:pre;background:#ffe0e0;'>- append loadcmd " ${eval_arg} '(require :asdf)'"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # CLisp has a bug which leads to loading upper case system name when it defines via :
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # to avoid that the system name should be double quoted.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # See: https://gitlab.com/gnu-clisp/clisp/-/issues/46
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ append loadcmd " ${eval_arg} '(require \"asdf\")'"
</span> append loadcmd " ${eval_arg} '(setf asdf:*central-registry* (list* (quote *default-pathname-defaults*) ${lisp-build-system-path} ${lisp-system-path} asdf:*central-registry*))'"
append loadcmd " ${eval_arg} '(asdf:operate (quote asdf:${op}) (quote ${name}))'"
</pre><pre style='margin:0'>
</pre>