From unknown Mon Aug 18 04:43:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55995] [PATCH] gnu: Add cl-policy-cond. Resent-From: "Paul A. Patience" Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 15 Jun 2022 12:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 55995 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55995@debbugs.gnu.org Cc: "Paul A. Patience" X-Debbugs-Original-To: guix-patches@gnu.org Reply-To: "Paul A. Patience" Received: via spool by submit@debbugs.gnu.org id=B.165529501328352 (code B ref -1); Wed, 15 Jun 2022 12:11:01 +0000 Received: (at submit) by debbugs.gnu.org; 15 Jun 2022 12:10:13 +0000 Received: from localhost ([127.0.0.1]:36718 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1Rqf-0007ND-Bi for submit@debbugs.gnu.org; Wed, 15 Jun 2022 08:10:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:50774) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1Rqb-0007Ms-3r for submit@debbugs.gnu.org; Wed, 15 Jun 2022 08:10:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49232) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o1Rqa-0000wS-Un for guix-patches@gnu.org; Wed, 15 Jun 2022 08:10:08 -0400 Received: from mail-4323.proton.ch ([185.70.43.23]:32256) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o1RqV-00070z-Gx for guix-patches@gnu.org; Wed, 15 Jun 2022 08:10:06 -0400 Date: Wed, 15 Jun 2022 12:09:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1655294997; x=1655554197; bh=6nMMX4LkWTRtoGEUGWfzUQ041aUlj4h6qrqR2oaTsyY=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=UqzDVs4ziqgT0LMbcoP3+ZujQMbA1SZtoyU4dALvwsi4c7U4Cy2VokEAs8ZemKr8L Wt2nFOImgCVHCrm620YupQwcMq4N50DRiA2BUR7U4YdbXTIQ0fgKW6/CQOAmDzQHqY yZoxSGD46PcSVT2w91IkP8fo01K5bkj7Nr1hlBPXk307ButprSrFcb40c9ewrxiDCy Shc+TlpizTZBxz8c/iz5Am0HpF5AnwcM5fvuiRF7pizjbKfo/QnbiNKO14b2QY1SV1 CXN/DAwl5EQBRm5nXqCUdNmTSH52i4+t4QMT/8a3sV75NfEWRTtmuFUrM/wcc2Grrr XoVYNMGHjJQaw== From: "Paul A. Patience" Message-ID: <20220615120945.349682-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.23; envelope-from=paul@apatience.com; helo=mail-4323.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_H2=-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-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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/lisp-xyz.scm (sbcl-policy-cond, cl-policy-cond, ecl-policy-cond): New variables. --- gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index c3b14135a3..a0b5c0c8c7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -15463,6 +15463,36 @@ (define-public ecl-computable-reals (define-public cl-computable-reals (sbcl-package->cl-source-package sbcl-computable-reals)) +(define-public sbcl-policy-cond + (let ((commit "eedb625520175bfdf44d385ff3b21039b7f75706") + (revision "0")) + (package + (name "sbcl-policy-cond") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stylewarning/policy-cond") + (commit commit))) + (file-name (git-file-name "cl-policy-cond" version)) + (sha256 + (base32 "0xj2a6lcg7i7g4038sc4f641din6m8vdiha8c5afz9fik80bshxk"))= )) + (build-system asdf-build-system/sbcl) + (home-page "https://github.com/stylewarning/policy-cond") + (synopsis "Insert code based on compiler policy") + (description "POLICY-COND provides tools to insert and execute code +based on a compiler's OPTIMIZE policy. It also contains a contract-like no= tion +of expectations, which allow dynamic checking or inclusion of various thin= gs +that should happen depending on compiler policy.") + (license license:bsd-3)))) + +(define-public cl-policy-cond + (sbcl-package->cl-source-package sbcl-policy-cond)) + +(define-public ecl-policy-cond + (sbcl-package->ecl-package sbcl-policy-cond)) + (define-public sbcl-html-template (package (name "sbcl-html-template") -- 2.36.1 From unknown Mon Aug 18 04:43:19 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: "Paul A. Patience" Subject: bug#55995: closed (Re: [bug#55995] [PATCH] gnu: Add cl-policy-cond.) Message-ID: References: <874k0k932u.fsf@kitej> <20220615120945.349682-1-paul@apatience.com> X-Gnu-PR-Message: they-closed 55995 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 55995@debbugs.gnu.org Date: Thu, 16 Jun 2022 13:00:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1655384402-15401-1" This is a multi-part message in MIME format... ------------=_1655384402-15401-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #55995: [PATCH] gnu: Add cl-policy-cond. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 55995@debbugs.gnu.org. --=20 55995: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D55995 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1655384402-15401-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 55995-done) by debbugs.gnu.org; 16 Jun 2022 12:59:36 +0000 Received: from localhost ([127.0.0.1]:41034 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1p5z-0003zR-QM for submit@debbugs.gnu.org; Thu, 16 Jun 2022 08:59:35 -0400 Received: from mout02.posteo.de ([185.67.36.66]:39815) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1p5u-0003yJ-Sb for 55995-done@debbugs.gnu.org; Thu, 16 Jun 2022 08:59:34 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id AD70F240109 for <55995-done@debbugs.gnu.org>; Thu, 16 Jun 2022 14:59:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1655384364; bh=Q9XIFQ+6/1SpxSaOxp55gMP8sCW9/sJFikI+ucZl8ok=; h=From:To:Cc:Subject:Date:From; b=m0DmyPcVILKBoqoafBUVSEz54p+KMgNiGXEVnXP9TEU+s0nZTsmbp4J5/MYtRouiH n21RYssSolcJHoIC793q7vi3X74A9ESxKg938+xmQGVgr9EoIROp/wim4x53EkL19z mg97b2cdfyelXhssxmYFSoaDb4bD6KgfdzVeAMAndyXCFgnMWrmeveDZkybMULWAtS Ew86eN9Z+Y9VjJOIr+zc1zpwe/OZiMNzV9jac3TAi7C8h42KYUzInu0+ur2teR6lkY IrX2w/bMmdeKmxfdUCV8+j5Absp6rO7U+oli6it3Z0RCDS55gDJB0LrlNhsRIgNdhG UN4DFRSSX/s1w== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4LP2Lg41MVz6tmq; Thu, 16 Jun 2022 14:59:23 +0200 (CEST) References: <20220615120945.349682-1-paul@apatience.com> From: Guillaume Le Vaillant To: "Paul A. Patience" Subject: Re: [bug#55995] [PATCH] gnu: Add cl-policy-cond. Date: Thu, 16 Jun 2022 12:58:25 +0000 In-reply-to: <20220615120945.349682-1-paul@apatience.com> Message-ID: <874k0k932u.fsf@kitej> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 55995-done Cc: 55995-done@debbugs.gnu.org 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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Patch pushed as 59ec9e3f3eb60a53cde5b6b90094927e11e62d8a. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCYqspKQ8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j9F2gD/bAMALIZHW7OTSuHOcKRJzrtq3RemlfzLe6h5 XRo+GXgA/0RgpUBre8Q6spAmN4GAO5xtLpLk6NDd+HxzHSTCYiCN =ecVz -----END PGP SIGNATURE----- --=-=-=-- ------------=_1655384402-15401-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Jun 2022 12:10:13 +0000 Received: from localhost ([127.0.0.1]:36718 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1Rqf-0007ND-Bi for submit@debbugs.gnu.org; Wed, 15 Jun 2022 08:10:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:50774) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o1Rqb-0007Ms-3r for submit@debbugs.gnu.org; Wed, 15 Jun 2022 08:10:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49232) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o1Rqa-0000wS-Un for guix-patches@gnu.org; Wed, 15 Jun 2022 08:10:08 -0400 Received: from mail-4323.proton.ch ([185.70.43.23]:32256) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o1RqV-00070z-Gx for guix-patches@gnu.org; Wed, 15 Jun 2022 08:10:06 -0400 Date: Wed, 15 Jun 2022 12:09:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1655294997; x=1655554197; bh=6nMMX4LkWTRtoGEUGWfzUQ041aUlj4h6qrqR2oaTsyY=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=UqzDVs4ziqgT0LMbcoP3+ZujQMbA1SZtoyU4dALvwsi4c7U4Cy2VokEAs8ZemKr8L Wt2nFOImgCVHCrm620YupQwcMq4N50DRiA2BUR7U4YdbXTIQ0fgKW6/CQOAmDzQHqY yZoxSGD46PcSVT2w91IkP8fo01K5bkj7Nr1hlBPXk307ButprSrFcb40c9ewrxiDCy Shc+TlpizTZBxz8c/iz5Am0HpF5AnwcM5fvuiRF7pizjbKfo/QnbiNKO14b2QY1SV1 CXN/DAwl5EQBRm5nXqCUdNmTSH52i4+t4QMT/8a3sV75NfEWRTtmuFUrM/wcc2Grrr XoVYNMGHjJQaw== To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: Add cl-policy-cond. Message-ID: <20220615120945.349682-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.23; envelope-from=paul@apatience.com; helo=mail-4323.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_H2=-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-policy-cond, cl-policy-cond, ecl-policy-cond): New variables. --- gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index c3b14135a3..a0b5c0c8c7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -15463,6 +15463,36 @@ (define-public ecl-computable-reals (define-public cl-computable-reals (sbcl-package->cl-source-package sbcl-computable-reals)) +(define-public sbcl-policy-cond + (let ((commit "eedb625520175bfdf44d385ff3b21039b7f75706") + (revision "0")) + (package + (name "sbcl-policy-cond") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stylewarning/policy-cond") + (commit commit))) + (file-name (git-file-name "cl-policy-cond" version)) + (sha256 + (base32 "0xj2a6lcg7i7g4038sc4f641din6m8vdiha8c5afz9fik80bshxk"))= )) + (build-system asdf-build-system/sbcl) + (home-page "https://github.com/stylewarning/policy-cond") + (synopsis "Insert code based on compiler policy") + (description "POLICY-COND provides tools to insert and execute code +based on a compiler's OPTIMIZE policy. It also contains a contract-like no= tion +of expectations, which allow dynamic checking or inclusion of various thin= gs +that should happen depending on compiler policy.") + (license license:bsd-3)))) + +(define-public cl-policy-cond + (sbcl-package->cl-source-package sbcl-policy-cond)) + +(define-public ecl-policy-cond + (sbcl-package->ecl-package sbcl-policy-cond)) + (define-public sbcl-html-template (package (name "sbcl-html-template") -- 2.36.1 ------------=_1655384402-15401-1--