From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 29 12:00:18 2021 Received: (at submit) by debbugs.gnu.org; 29 Mar 2021 16:00:18 +0000 Received: from localhost ([127.0.0.1]:49386 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lQuJO-0002l8-If for submit@debbugs.gnu.org; Mon, 29 Mar 2021 12:00:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:42890) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lQuJM-0002kw-8h for submit@debbugs.gnu.org; Mon, 29 Mar 2021 12:00:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38018) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lQuJK-0006xS-Oz for guix-patches@gnu.org; Mon, 29 Mar 2021 12:00:15 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:31519) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lQuJF-0007AO-KK for guix-patches@gnu.org; Mon, 29 Mar 2021 12:00:14 -0400 Received: from localhost.localdomain (194-96-13-79.adsl.highway.telekom.at [194.96.13.79]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4F8HN06fZzz3yWM; Mon, 29 Mar 2021 18:00:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1617033601; bh=jFLR1x9VBpq5mLJ6Qks5ZtBDmB34Th5h9XKV4PjUtS4=; h=From:To:Cc:Subject:Date; b=bZ4ZCklPSJtHEMb1nvKGXWAW1gTfUDUYHIlEhl35qy5h7jqtdf+IR4CAY+jJtUrwO PMawJNgerDqdtmgIgJNKmy0NpxdLHSPOoXBwRssktkZS5H2nV4jy3PwUTOS2K7x5Fw qchKqey6liefED9uRqi/gx6LyQp+57qLiQzD5z74= From: Leo Prikler To: guix-patches@gnu.org Subject: [PATCH] gnu: crypto++: Update to 8.5.0. Date: Mon, 29 Mar 2021 17:59:47 +0200 Message-Id: <20210329155946.19273-1-leo.prikler@student.tugraz.at> X-Mailer: git-send-email 2.31.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 Received-SPF: pass client-ip=129.27.2.202; envelope-from=leo.prikler@student.tugraz.at; helo=mailrelay.tugraz.at X-Spam_score_int: -42 X-Spam_score: -4.3 X-Spam_bar: ---- X-Spam_report: (-4.3 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: 47470@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: -2.3 (--) * gnu/packages/crypto.scm (crypto++): Update to 8.5.0. [origin]: Use git-fetch and git-reference. --- gnu/packages/crypto.scm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 94f9cbeebf..57d417de80 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -773,15 +773,18 @@ data on your platform, so the seed itself will be as random as possible. (define-public crypto++ (package (name "crypto++") - (version "8.4.0") + (version "8.5.0") (source (origin - (method url-fetch/zipbomb) - (uri (string-append "https://cryptopp.com/cryptopp" - (string-join (string-split version #\.) "") - ".zip")) + (method git-fetch) + (uri + (git-reference + (url "https://github.com/weidai11/cryptopp") + (commit + (string-append "CRYPTOPP_" + (string-replace-substring version "." "_"))))) (sha256 (base32 - "16kvfm11xv7j9a3yykzysjgw38a9b7lnc5n5x5h82g395k6ybxf0")))) + "0in7rlazq91vfi519g9wr7bh87hii47cimxv7fmj0f88vhjaidq3")))) (build-system gnu-build-system) (arguments `(#:make-flags -- 2.31.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 05 05:48:08 2021 Received: (at 47477) by debbugs.gnu.org; 5 Apr 2021 09:48:08 +0000 Received: from localhost ([127.0.0.1]:36959 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lTLq3-0004Pm-SP for submit@debbugs.gnu.org; Mon, 05 Apr 2021 05:48:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59782) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lTLq1-0004P5-OY; Mon, 05 Apr 2021 05:48:06 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55613) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lTLpv-0001Zs-3t; Mon, 05 Apr 2021 05:47:59 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=45710 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lTLpu-00034o-B2; Mon, 05 Apr 2021 05:47:58 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Leo Prikler Subject: Re: bug#47477: [PATCH] gnu: crypto++: Update to 8.5.0. References: <20210329155946.19273-1-leo.prikler@student.tugraz.at> Date: Mon, 05 Apr 2021 11:47:57 +0200 In-Reply-To: <20210329155946.19273-1-leo.prikler@student.tugraz.at> (Leo Prikler's message of "Mon, 29 Mar 2021 17:59:47 +0200") Message-ID: <87zgydukoi.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47477 Cc: 47477@debbugs.gnu.org, 47470@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 (-) Hi Leo, Leo Prikler skribis: > * gnu/packages/crypto.scm (crypto++): Update to 8.5.0. > [origin]: Use git-fetch and git-reference. If dependents still build fine, go for it! Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 05 10:18:21 2021 Received: (at 47477-done) by debbugs.gnu.org; 5 Apr 2021 14:18:21 +0000 Received: from localhost ([127.0.0.1]:38340 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lTQ3Z-0005lF-Cm for submit@debbugs.gnu.org; Mon, 05 Apr 2021 10:18:21 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:5509) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lTQ3X-0005l0-Az; Mon, 05 Apr 2021 10:18:20 -0400 Received: from nijino.local (194-96-13-79.adsl.highway.telekom.at [194.96.13.79]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4FDXnM5VyXz3ybj; Mon, 5 Apr 2021 16:18:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1617632295; bh=83FBpZxr/FGj6Uuf2HKNDro+H1rVZ/UhatTUrmxBwLQ=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=PIG25R++lfqynBrQAJM3cnyYgfDkGjaERzpSojsX822vOzxmssLm21AwLWRB5/Orq Jygto4Zkc1tJQppJJnZyRI4LOe+GUPJ47doTcjlBGQvIUjs9XUunxN66SSQDb7foAj f7F8YjoQfv1t53MhkDM3sQ2k4ioYqwS4FSnhYvNk= Message-ID: <89010935b05cd2bbea6aec1df78859db32b0e714.camel@student.tugraz.at> Subject: Re: bug#47477: [PATCH] gnu: crypto++: Update to 8.5.0. From: Leo Prikler To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Date: Mon, 05 Apr 2021 16:18:14 +0200 In-Reply-To: <87zgydukoi.fsf@gnu.org> References: <20210329155946.19273-1-leo.prikler@student.tugraz.at> <87zgydukoi.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 47477-done Cc: 47477-done@debbugs.gnu.org, 47470-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 (---) Am Montag, den 05.04.2021, 11:47 +0200 schrieb Ludovic Courtès: > Hi Leo, > > Leo Prikler skribis: > > > * gnu/packages/crypto.scm (crypto++): Update to 8.5.0. > > [origin]: Use git-fetch and git-reference. > > If dependents still build fine, go for it! > > Thanks, > Ludo’. Built everything locally and pushed. Hopefully the CI doesn't notice, that I only checked amd64 :) From unknown Sat Jun 21 05:17:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 04 May 2021 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