From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 18 12:15:45 2024 Received: (at submit) by debbugs.gnu.org; 18 Mar 2024 16:15:45 +0000 Received: from localhost ([127.0.0.1]:60520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmFeK-0003l6-85 for submit@debbugs.gnu.org; Mon, 18 Mar 2024 12:15:44 -0400 Received: from lists.gnu.org ([209.51.188.17]:44036) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmFeH-0003jd-5Z for submit@debbugs.gnu.org; Mon, 18 Mar 2024 12:15:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmEHA-00018Q-79 for guix-patches@gnu.org; Mon, 18 Mar 2024 10:47:44 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmEH5-0005oL-UV for guix-patches@gnu.org; Mon, 18 Mar 2024 10:47:43 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 7750910D8; Mon, 18 Mar 2024 15:47:36 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4xmnzXLnnEmM; Mon, 18 Mar 2024 15:47:35 +0100 (CET) Received: from localhost.localdomain (unknown [147.210.246.189]) by hera.aquilenet.fr (Postfix) with ESMTPSA id ABFA7D1; Mon, 18 Mar 2024 15:47:35 +0100 (CET) From: Andreas Enge To: guix-patches@gnu.org Subject: [PATCH] gnu: flint: Update to 3.1.0. Date: Mon, 18 Mar 2024 15:47:19 +0100 Message-ID: <0f4ffd1d8aa64cd1f6e08eaeb45c5f9a76583988.1710773239.git.andreas@enge.fr> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Andreas Enge , Eric Bavier , Sharlatan Hellseher Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.233.100.1; envelope-from=andreas@enge.fr; helo=hera.aquilenet.fr X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-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: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Andreas Enge 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 (---) * gnu/packages/algebra.scm (flint): Update to 3.1.0. [arguments]: Add a configure flag. Add a phase. [license]: Change to lgpl3+. Change-Id: I57d6dc7e1ce90399d9e4c01b35e62793bfc07bee --- gnu/packages/algebra.scm | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 3fb9362b91..13cd523d6a 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -446,20 +446,32 @@ (define-public giac (define-public flint (package (name "flint") - (version "3.0.1") + (version "3.1.0") (source (origin (method url-fetch) (uri (string-append "https://flintlib.org/flint-" version ".tar.gz")) (sha256 - (base32 "1d4lawfvmjd4n7rp4z9xkwwjjbrjhkmxnxw1xf0ki1isa001lcbv")))) + (base32 "0h9k792w4lidlv3czpmjk5hi8fqf3b0vp7av28sc6f3pp18pw42b")))) (build-system gnu-build-system) (inputs (list ntl)) (propagated-inputs (list gmp mpfr)) ; header files from both are included by flint/arith.h (arguments - `(#:parallel-tests? #f)) ; seems to be necessary on arm + ;; Parallel tests failed in the past on ARM, this may need to be + ;; tested again. + `(#:parallel-tests? #f ;; seems to be necessary on arm, + ;;but maybe not any more... + ;; Prevent build machine specifics from ending up in the binary. + #:configure-flags '("--disable-assembly") + ;; Replace absolute path. + #:phases + (modify-phases %standard-phases + (add-before 'build 'patch-makefile + (lambda _ + (substitute* "Makefile" + (("/sbin/ldconfig") "ldconfig"))))))) (synopsis "Fast library for number theory") (description "FLINT is a C library for number theory. It supports arithmetic @@ -472,7 +484,7 @@ (define-public flint GCDs, factoring, solving linear systems, and evaluating special functions. In addition, FLINT provides various low-level routines for fast arithmetic.") - (license license:lgpl2.1+) + (license license:lgpl3+) (home-page "https://flintlib.org/") (properties '((release-monitoring-url . "http://flintlib.org/downloads.html"))))) @@ -996,7 +1008,8 @@ (define-public eigen (guix build utils) (guix build cmake-build-system)) - #:phases (modify-phases %standard-phases + #:phases + (modify-phases %standard-phases (add-after 'unpack 'disable-some-tests ;; Not all platforms are well supported by the test suite. (lambda _ base-commit: c8556379c3f2d3d095a178858915720f2eebc012 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 19 10:33:41 2024 Received: (at 69871) by debbugs.gnu.org; 19 Mar 2024 14:33:42 +0000 Received: from localhost ([127.0.0.1]:51049 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmaX6-0005iT-Lo for submit@debbugs.gnu.org; Tue, 19 Mar 2024 10:33:41 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:32824) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmaX3-0005hh-SN for 69871@debbugs.gnu.org; Tue, 19 Mar 2024 10:33:38 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id B457633B; Tue, 19 Mar 2024 15:32:22 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WXeddR3f6-dK; Tue, 19 Mar 2024 15:32:22 +0100 (CET) Received: from localhost.localdomain (unknown [147.210.246.189]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 02E025B; Tue, 19 Mar 2024 15:32:21 +0100 (CET) From: Andreas Enge To: 69871@debbugs.gnu.org Subject: [PATCH v2] gnu: flint: Update to 3.1.2. Date: Tue, 19 Mar 2024 15:31:45 +0100 Message-ID: <37f33c5f293233a97a29c38c3535f92b679407b8.1710858705.git.andreas@enge.fr> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Andreas Enge , Eric Bavier , Sharlatan Hellseher Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 69871 Cc: Andreas Enge 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.0 (-) * gnu/packages/algebra.scm (flint): Update to 3.1.2. [arguments]: Add a configure flag. [license]: Change to lgpl3+. Change-Id: I57d6dc7e1ce90399d9e4c01b35e62793bfc07bee --- gnu/packages/algebra.scm | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 3fb9362b91..c8601e7f78 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -446,20 +446,24 @@ (define-public giac (define-public flint (package (name "flint") - (version "3.0.1") + (version "3.1.2") (source (origin (method url-fetch) (uri (string-append "https://flintlib.org/flint-" version ".tar.gz")) (sha256 - (base32 "1d4lawfvmjd4n7rp4z9xkwwjjbrjhkmxnxw1xf0ki1isa001lcbv")))) + (base32 "0017bjncpx4kdx67qcnm3nahz3gyyi2w3ggkrx586r3llcqs9czx")))) (build-system gnu-build-system) (inputs (list ntl)) (propagated-inputs - (list gmp mpfr)) ; header files from both are included by flint/arith.h + (list gmp mpfr)) ; header files included by flint.h or mpfr_mat.h (arguments - `(#:parallel-tests? #f)) ; seems to be necessary on arm + ;; Parallel tests failed in the past on ARM, this may need to be + ;; tested again. + `(#:parallel-tests? #f + ;; Prevent build machine specifics from ending up in the binary. + #:configure-flags '("--disable-assembly"))) (synopsis "Fast library for number theory") (description "FLINT is a C library for number theory. It supports arithmetic @@ -472,7 +476,7 @@ (define-public flint GCDs, factoring, solving linear systems, and evaluating special functions. In addition, FLINT provides various low-level routines for fast arithmetic.") - (license license:lgpl2.1+) + (license license:lgpl3+) (home-page "https://flintlib.org/") (properties '((release-monitoring-url . "http://flintlib.org/downloads.html"))))) @@ -996,7 +1000,8 @@ (define-public eigen (guix build utils) (guix build cmake-build-system)) - #:phases (modify-phases %standard-phases + #:phases + (modify-phases %standard-phases (add-after 'unpack 'disable-some-tests ;; Not all platforms are well supported by the test suite. (lambda _ base-commit: 83c5e7169d3bfa23a51225a8d809a435c1f2dd6b -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 19 11:03:44 2024 Received: (at 69871) by debbugs.gnu.org; 19 Mar 2024 15:03:44 +0000 Received: from localhost ([127.0.0.1]:51085 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmb0B-0007uk-PI for submit@debbugs.gnu.org; Tue, 19 Mar 2024 11:03:44 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:50970) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmb08-0007tv-NT for 69871@debbugs.gnu.org; Tue, 19 Mar 2024 11:03:41 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id A0EFC785; Tue, 19 Mar 2024 16:02:55 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id C4BrKrEd3glm; Tue, 19 Mar 2024 16:02:54 +0100 (CET) Received: from localhost.localdomain (unknown [147.210.246.189]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 53710672; Tue, 19 Mar 2024 16:02:54 +0100 (CET) From: Andreas Enge To: 69871@debbugs.gnu.org Subject: [PATCH v3 2/2] gnu: ntl: Correct license. Date: Tue, 19 Mar 2024 16:02:05 +0100 Message-ID: <387366f538695b222983f0e46c744c25e4955e23.1710860525.git.andreas@enge.fr> X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-Debbugs-Cc: Andreas Enge , Eric Bavier , Sharlatan Hellseher Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 69871 Cc: Andreas Enge 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.0 (-) * gnu/packages/algebra.scm (ntl)[license]: Set to lgpl2.1+. [source]: Remove trailing #t in snippet. Change-Id: Ibfcb520aa7fe71087adf2352b4051185a0d6f11e --- gnu/packages/algebra.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index c8601e7f78..d997bb9c70 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -528,8 +528,7 @@ (define-public ntl (modules '((guix build utils))) (snippet '(begin - (delete-file-recursively "src/libtool-origin") - #t)))) + (delete-file-recursively "src/libtool-origin"))))) (build-system gnu-build-system) (native-inputs (list libtool perl)) ; for configuration @@ -557,7 +556,8 @@ (define-public ntl "NTL is a C++ library providing data structures and algorithms for manipulating signed, arbitrary length integers, and for vectors, matrices, and polynomials over the integers and over finite fields.") - (license license:gpl2+) + (license license:lgpl2.1+) ; Linking with gf2x makes the distributed + ; binary de facto gpl3+. (home-page "https://shoup.net/ntl/"))) (define-public singular -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 19 11:04:05 2024 Received: (at 69871) by debbugs.gnu.org; 19 Mar 2024 15:04:05 +0000 Received: from localhost ([127.0.0.1]:51094 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmb0X-0007xK-5v for submit@debbugs.gnu.org; Tue, 19 Mar 2024 11:04:05 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:55938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmb0U-0007wB-Ko for 69871@debbugs.gnu.org; Tue, 19 Mar 2024 11:04:03 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 45A3DA0; Tue, 19 Mar 2024 16:02:48 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nLZ_DhQ6Cn5d; Tue, 19 Mar 2024 16:02:47 +0100 (CET) Received: from localhost.localdomain (unknown [147.210.246.189]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 119F4672; Tue, 19 Mar 2024 16:02:46 +0100 (CET) From: Andreas Enge To: 69871@debbugs.gnu.org Subject: [PATCH v3 1/2] gnu: flint: Update to 3.1.2. Date: Tue, 19 Mar 2024 16:02:04 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Andreas Enge , Eric Bavier , Sharlatan Hellseher Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 69871 Cc: Andreas Enge 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.0 (-) * gnu/packages/algebra.scm (flint): Update to 3.1.2. [arguments]: Add a configure flag. [license]: Change to lgpl3+. Change-Id: I57d6dc7e1ce90399d9e4c01b35e62793bfc07bee --- gnu/packages/algebra.scm | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 3fb9362b91..c8601e7f78 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -446,20 +446,24 @@ (define-public giac (define-public flint (package (name "flint") - (version "3.0.1") + (version "3.1.2") (source (origin (method url-fetch) (uri (string-append "https://flintlib.org/flint-" version ".tar.gz")) (sha256 - (base32 "1d4lawfvmjd4n7rp4z9xkwwjjbrjhkmxnxw1xf0ki1isa001lcbv")))) + (base32 "0017bjncpx4kdx67qcnm3nahz3gyyi2w3ggkrx586r3llcqs9czx")))) (build-system gnu-build-system) (inputs (list ntl)) (propagated-inputs - (list gmp mpfr)) ; header files from both are included by flint/arith.h + (list gmp mpfr)) ; header files included by flint.h or mpfr_mat.h (arguments - `(#:parallel-tests? #f)) ; seems to be necessary on arm + ;; Parallel tests failed in the past on ARM, this may need to be + ;; tested again. + `(#:parallel-tests? #f + ;; Prevent build machine specifics from ending up in the binary. + #:configure-flags '("--disable-assembly"))) (synopsis "Fast library for number theory") (description "FLINT is a C library for number theory. It supports arithmetic @@ -472,7 +476,7 @@ (define-public flint GCDs, factoring, solving linear systems, and evaluating special functions. In addition, FLINT provides various low-level routines for fast arithmetic.") - (license license:lgpl2.1+) + (license license:lgpl3+) (home-page "https://flintlib.org/") (properties '((release-monitoring-url . "http://flintlib.org/downloads.html"))))) @@ -996,7 +1000,8 @@ (define-public eigen (guix build utils) (guix build cmake-build-system)) - #:phases (modify-phases %standard-phases + #:phases + (modify-phases %standard-phases (add-after 'unpack 'disable-some-tests ;; Not all platforms are well supported by the test suite. (lambda _ base-commit: ee11b22fcc7d8b42847e9d940ce5be3bc0d4f880 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 22 13:27:21 2024 Received: (at 69871-done) by debbugs.gnu.org; 22 Nov 2024 18:27:21 +0000 Received: from localhost ([127.0.0.1]:55445 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tEYNF-0000bA-49 for submit@debbugs.gnu.org; Fri, 22 Nov 2024 13:27:21 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:39318) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tEYNC-0000aj-SZ for 69871-done@debbugs.gnu.org; Fri, 22 Nov 2024 13:27:19 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id A950EBD4; Fri, 22 Nov 2024 19:27:11 +0100 (CET) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id 4wIZmNDy-sq4; Fri, 22 Nov 2024 19:27:11 +0100 (CET) Received: from jurong (unknown [IPv6:2001:861:c4:f2f0::c64]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 9BCA323B; Fri, 22 Nov 2024 19:27:10 +0100 (CET) Date: Fri, 22 Nov 2024 19:27:09 +0100 From: Andreas Enge To: 69871-done@debbugs.gnu.org Subject: Close Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spamd-Result: default: False [8.31 / 15.00]; SPAM_FLAG(5.00)[]; NEURAL_SPAM(2.91)[0.971]; MID_RHS_NOT_FQDN(0.50)[]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; RCVD_TLS_ALL(0.00)[] X-Spam-Level: ******** X-Rspamd-Action: add header X-Rspamd-Server: hera X-Rspamd-Queue-Id: A950EBD4 X-Spamd-Bar: ++++++++ X-Spam: Yes X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 69871-done 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.0 (-) This has long been applied by yours truely! Andreas From unknown Thu Aug 14 21:54:14 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 21 Dec 2024 12:24:10 +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