From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 11 22:08:35 2022 Received: (at submit) by debbugs.gnu.org; 12 Apr 2022 02:08:35 +0000 Received: from localhost ([127.0.0.1]:46631 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ne5xL-0004fy-FJ for submit@debbugs.gnu.org; Mon, 11 Apr 2022 22:08:35 -0400 Received: from lists.gnu.org ([209.51.188.17]:47082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ne5xK-0004fp-1u for submit@debbugs.gnu.org; Mon, 11 Apr 2022 22:08:34 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55874) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ne5xJ-0002T3-To for guix-patches@gnu.org; Mon, 11 Apr 2022 22:08:33 -0400 Received: from mail-40136.proton.ch ([185.70.40.136]:27012) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ne5xG-0001Go-Bj for guix-patches@gnu.org; Mon, 11 Apr 2022 22:08:33 -0400 Date: Tue, 12 Apr 2022 02:08:18 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1649729307; bh=74u/XGgmr90BPPQLBJOTULGECLJAyxvs7gi/W0L88tU=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID; b=SA0vPyrKGi4beRM8NqFDezoYNC+PrCWzxNna29qVYKzsPiZB/Ks1rreDd9biLQBcs VxAA/cGugw7RzuBeIve9YhYbd5wMNdVmrAE3xUeyiB65l5831yygvPTrYARfhlj6St ysqmJlUTbhPZXdT75AiastvG7h0SZ+W9+6E5WOHtYYTgIPnuPAWxCucf8QwvLn2e67 Ut+yO4KtaE6C2N7X+9XPIyYwV7sbZ2g0RyaOJzBkE/hHKD+n20FXKYpjdbPhNBT1cz ovio4uC9sybsz97Rtmv+jHn5sw/PIlJekUOq2iKb7QvqUVEqgWuGhzoKTVx0ClMS+G aOokQFzOtgxkQ== To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: sbcl-py4cl: Fix path to py4cl.py. Message-ID: <20220412020807.35559-1-paul@apatience.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.136; envelope-from=paul@apatience.com; helo=mail-40136.proton.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: "Paul A. Patience" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: "Paul A. Patience" Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/lisp-xyz.scm (sbcl-py4cl)[arguments]: Fix the path which replaces py4cl/config:*base-directory*. --- Hello, This patch fixes the problem with sbcl-py4cl, but I suspect that the cl-py4= cl and ecl-py4cl packages were and remain broken, as the paths are different; = for example, cl-py4cl's py4cl.py is located in /STORE-PATH/share/common-lisp/source/cl-py4cl/py4cl.py. Unfortunately, I'm not sure how to address that in the package definition. 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 358bba4e89..b356c96f84 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -5192,7 +5192,7 @@ (define-public sbcl-py4cl (string-append "\"" (assoc-ref outputs "out") - "/share/common-lisp/sbcl-source/py4cl/" + "/share/common-lisp/sbcl/py4cl/" "\"")))))))) (synopsis "Call python from Common Lisp") (description -- 2.35.1