From patchwork Mon Aug 7 16:45:38 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 7068 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4RKMdW6TXyz3wtJ for ; Mon, 7 Aug 2023 16:45:51 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RKMdV1DmGzs5; Mon, 7 Aug 2023 16:45:50 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4RKMdT6cdKz305R; Mon, 7 Aug 2023 16:45:49 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4RKMdT0S7Gz2xKB for ; Mon, 7 Aug 2023 16:45:49 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4RKMdS0q1yzcX; Mon, 7 Aug 2023 16:45:48 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1691426748; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=TDwvmD5CE+GRVSDjxTy1tqrKSZodBtr90mV7wJ6VN48=; b=L5bC0aUU+H/GwlF1zTH9H5CBetlXESYnow9KHjQab6QMZfdDU4UdiQ/bVpi5573zjklQJx 92WfN8+zW5wlBkDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1691426748; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=TDwvmD5CE+GRVSDjxTy1tqrKSZodBtr90mV7wJ6VN48=; b=oBMM8DRFKH4rr3wWhHVbMIzozOMHcQJcyfko+OsbSHbCCNycme5nHnNq5byT6SYRUez8WF uiqX9mFSZnr3/9vvyPcVOiJ0zATySDDAbfD+WyTKIHA184T0JmgYbYas14wl5a0etAQ7s6 4KTeLvFf0CAGRhKsX9kJdeABQI4pP7LCQz35TKfhZmODYf5XNo7rupnLHGHAuMbbbaxA/v OJQXFuhXT4MaA6iYYIAr03oJSrgjRM8I/0PDnNESTV7Khx3ueI9YSu4qCIEV4XFcPyAg2o 6ezfVMkUUDx2/upD2AaFcVy+tilzGUoli/XLVHN7Iyr//4P5eSdmx/RwvKhB9A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] gmp: Update to version 6.3.0 Date: Mon, 7 Aug 2023 18:45:38 +0200 Message-ID: <20230807164542.3448886-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update fromn version 6.2.1 to 6.3.0 - Update of rootfile - Changelog Changes between GMP version 6.2.* and 6.3.*. BUGS FIXED * A possible overflow of type int is avoided for mpz_cmp on huge operands. * A possible error condition when a malformed file is read with mpz_inp_raw is now correctly handled. FEATURES * New public function mpz_prevprime, companion of the existing mpz_nextprime. * New documented pointer types mpz_ptr, mpz_srcptr, and similar for other GMP types. Refer to the manual for full list and suggested usage. These types have been present in gmp.h at least since GMP-4.0, but previously not advertised to users. * Support for 64-bit Arm under Macos. * Support for the loongarch64 CPU family. * Support for building with LTO, link-time optimisations. SPEEDUPS * New special code for base = 2 in mpz_powm reduces the average time for the functions that test primality. * Speedup for the function mpz_nextprime on large operands. * Speedup for multiplications (some sizes only) thanks to new internal functions to compute small negacyclic products. * Special assembly code for IBM z13 and later "mainframe" CPUs, resulting in a huge speedup. * Improved assembly for several 64-bit x86 CPUs, Risc-V, 64-bit Arm. Signed-off-by: Adolf Belka --- config/rootfiles/common/gmp | 4 ++-- lfs/gmp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/rootfiles/common/gmp b/config/rootfiles/common/gmp index 64d39effb..41c31d1b4 100644 --- a/config/rootfiles/common/gmp +++ b/config/rootfiles/common/gmp @@ -4,12 +4,12 @@ #usr/lib/libgmp.la #usr/lib/libgmp.so usr/lib/libgmp.so.10 -usr/lib/libgmp.so.10.4.1 +usr/lib/libgmp.so.10.5.0 #usr/lib/libgmpxx.a #usr/lib/libgmpxx.la #usr/lib/libgmpxx.so usr/lib/libgmpxx.so.4 -usr/lib/libgmpxx.so.4.6.1 +usr/lib/libgmpxx.so.4.7.0 #usr/lib/pkgconfig/gmp.pc #usr/lib/pkgconfig/gmpxx.pc #usr/share/info/gmp.info diff --git a/lfs/gmp b/lfs/gmp index 70a4d666c..555e9eeb5 100644 --- a/lfs/gmp +++ b/lfs/gmp @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2020 IPFire Team # +# Copyright (C) 2007-2023 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 6.2.1 +VER = 6.3.0 THISAPP = gmp-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = c0d85f175392a50cfa01bc6b0a312b235946ad8b4f6f84f6dabd33d7a6f2cc75c9b0e1e33057be07750bfa0145b7c4cf3b6188a5be6ca9d7271ec2276c84ebcb +$(DL_FILE)_BLAKE2 = a865129e2b3f634ec5bad7f97ed89532e43f5662ac47a7d8ab7f0df8c9f8d0886bd984651422e2573c2163bca69c0547c248147ec90880accbd53db97dc0ddee install : $(TARGET)