* [bug#69871] [PATCH] gnu: flint: Update to 3.1.0.
@ 2024-03-18 14:47 Andreas Enge
2024-03-19 14:31 ` [bug#69871] [PATCH v2] gnu: flint: Update to 3.1.2 Andreas Enge
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Andreas Enge @ 2024-03-18 14:47 UTC (permalink / raw)
To: 69871; +Cc: Andreas Enge, Andreas Enge, Eric Bavier, Sharlatan Hellseher
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#69871] [PATCH v2] gnu: flint: Update to 3.1.2.
2024-03-18 14:47 [bug#69871] [PATCH] gnu: flint: Update to 3.1.0 Andreas Enge
@ 2024-03-19 14:31 ` Andreas Enge
2024-03-19 15:02 ` [bug#69871] [PATCH v3 1/2] " Andreas Enge
2024-11-22 18:27 ` bug#69871: Close Andreas Enge
2 siblings, 0 replies; 5+ messages in thread
From: Andreas Enge @ 2024-03-19 14:31 UTC (permalink / raw)
To: 69871; +Cc: Andreas Enge, Andreas Enge, Eric Bavier, Sharlatan Hellseher
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#69871] [PATCH v3 1/2] gnu: flint: Update to 3.1.2.
2024-03-18 14:47 [bug#69871] [PATCH] gnu: flint: Update to 3.1.0 Andreas Enge
2024-03-19 14:31 ` [bug#69871] [PATCH v2] gnu: flint: Update to 3.1.2 Andreas Enge
@ 2024-03-19 15:02 ` Andreas Enge
2024-03-19 15:02 ` [bug#69871] [PATCH v3 2/2] gnu: ntl: Correct license Andreas Enge
2024-11-22 18:27 ` bug#69871: Close Andreas Enge
2 siblings, 1 reply; 5+ messages in thread
From: Andreas Enge @ 2024-03-19 15:02 UTC (permalink / raw)
To: 69871; +Cc: Andreas Enge, Andreas Enge, Eric Bavier, Sharlatan Hellseher
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#69871] [PATCH v3 2/2] gnu: ntl: Correct license.
2024-03-19 15:02 ` [bug#69871] [PATCH v3 1/2] " Andreas Enge
@ 2024-03-19 15:02 ` Andreas Enge
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Enge @ 2024-03-19 15:02 UTC (permalink / raw)
To: 69871; +Cc: Andreas Enge, Andreas Enge, Eric Bavier, Sharlatan Hellseher
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#69871: Close
2024-03-18 14:47 [bug#69871] [PATCH] gnu: flint: Update to 3.1.0 Andreas Enge
2024-03-19 14:31 ` [bug#69871] [PATCH v2] gnu: flint: Update to 3.1.2 Andreas Enge
2024-03-19 15:02 ` [bug#69871] [PATCH v3 1/2] " Andreas Enge
@ 2024-11-22 18:27 ` Andreas Enge
2 siblings, 0 replies; 5+ messages in thread
From: Andreas Enge @ 2024-11-22 18:27 UTC (permalink / raw)
To: 69871-done
This has long been applied by yours truely!
Andreas
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-22 18:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-18 14:47 [bug#69871] [PATCH] gnu: flint: Update to 3.1.0 Andreas Enge
2024-03-19 14:31 ` [bug#69871] [PATCH v2] gnu: flint: Update to 3.1.2 Andreas Enge
2024-03-19 15:02 ` [bug#69871] [PATCH v3 1/2] " Andreas Enge
2024-03-19 15:02 ` [bug#69871] [PATCH v3 2/2] gnu: ntl: Correct license Andreas Enge
2024-11-22 18:27 ` bug#69871: Close Andreas Enge
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.