From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 12 14:25:27 2022 Received: (at submit) by debbugs.gnu.org; 12 Feb 2022 19:25:27 +0000 Received: from localhost ([127.0.0.1]:35685 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nIy1O-0001iy-Rz for submit@debbugs.gnu.org; Sat, 12 Feb 2022 14:25:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:37524) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nIy1M-0001io-UF for submit@debbugs.gnu.org; Sat, 12 Feb 2022 14:25:25 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59030) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nIy1H-0000B6-Is for guix-patches@gnu.org; Sat, 12 Feb 2022 14:25:21 -0500 Received: from mout02.posteo.de ([185.67.36.66]:58537) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nIy1F-00010j-MT for guix-patches@gnu.org; Sat, 12 Feb 2022 14:25:19 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 6E513240101 for ; Sat, 12 Feb 2022 20:25:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1644693916; bh=4lAGDJS7wQE6mytR4e3yc5gX3wwHauVtjT22yZI2nVc=; h=From:To:Subject:Date:From; b=EkOMKF+vKrlaLV8UcYS5YjnwIWo4MjoNUc9O0Z5KxmtCo5Lxn7L15bnZv3yDn7HOS ZI35KOTi5VJUn6bETfmpLDCCKLHJIr0Jb9W36qxGDys5Nt5meqoaGPoIPLJbpQ47rS dWpselYWDKmZPPU3WZo4kltdubQtJp0bo8rzUpPDeVcqTNkA6sfFJ5jqqEX+HICWvb KPJqM3VU8kOgDsQpMX1HL7fQy/ixx1fIfGr4xnCkaJTTjbkN96PqQ7+mln/vzqEm6v ACuTFpWUV8Ktk7znlV7txACGkKdwBaQ0T4cR+ZEuQa+ijITkyXfYKFHyqhWw1yNU9e u0d+p0YfO4IyQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Jx0n74ZmRz6tmJ for ; Sat, 12 Feb 2022 20:25:15 +0100 (CET) From: Aleksandr Vityazev To: guix-patches@gnu.org Subject: [PATCH] gnu: alfis: Fix build. In-Reply-To: References: Message-Id: Date: Sat, 12 Feb 2022 19:25:14 +0000 MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=185.67.36.66; envelope-from=avityazev@posteo.org; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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_DNSWL_MED=-2.3, 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 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/rust-apps: (alfis): [arguments]<#:phases>: Relax the rust-zeroize requirements for rust-chacha20poly1305 and rust-chacha20 in the 'relax-requirements' phase. --- gnu/packages/rust-apps.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index a97fcc7968..725677b3d9 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -126,6 +126,12 @@ (define-public alfis (modify-phases %standard-phases (add-after 'configure 'relax-requirements (lambda _ + (substitute* + "guix-vendor/rust-chacha20-0.8.1.tar.gz/Cargo.toml" + (("version = \">=1, <1.5\"") "version = \"^1\"")) + (substitute* + "guix-vendor/rust-chacha20poly1305-0.9.0.tar.gz/Cargo.toml" + (("version = \">=1, <1.5\"") "version = \"^1\"")) (substitute* "guix-vendor/rust-x25519-dalek-1.2.0.tar.gz/Cargo.toml" (("version = \"=1.3\"") "version = \"^1.3\""))))) -- 2.34.0 -- Aleksandr Vityazev From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 14 04:56:15 2022 Received: (at 53963-done) by debbugs.gnu.org; 14 Feb 2022 09:56:15 +0000 Received: from localhost ([127.0.0.1]:39815 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJY5f-00075k-Lp for submit@debbugs.gnu.org; Mon, 14 Feb 2022 04:56:15 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:37839) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJY5e-00075X-99 for 53963-done@debbugs.gnu.org; Mon, 14 Feb 2022 04:56:14 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 840F620003; Mon, 14 Feb 2022 09:56:07 +0000 (UTC) From: Nicolas Goaziou To: Aleksandr Vityazev Subject: Re: [bug#53963] [PATCH] gnu: alfis: Fix build. References: Date: Mon, 14 Feb 2022 10:56:04 +0100 In-Reply-To: (Aleksandr Vityazev's message of "Sat, 12 Feb 2022 19:25:14 +0000") Message-ID: <87r185srez.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 53963-done Cc: 53963-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: -1.7 (-) Hello, Aleksandr Vityazev writes: > * gnu/packages/rust-apps: (alfis): [arguments]<#:phases>: > Relax the rust-zeroize requirements for rust-chacha20poly1305 > and rust-chacha20 in the 'relax-requirements' phase. Applied. Thank you. Regards, -- Nicolas Goaziou From unknown Sat Aug 16 15:58:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 14 Mar 2022 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator