[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68714] [PATCH 5/5] gnu: arb: Deprecate package.
From: |
Andreas Enge |
Subject: |
[bug#68714] [PATCH 5/5] gnu: arb: Deprecate package. |
Date: |
Thu, 25 Jan 2024 14:58:06 +0100 |
* gnu/packages/algebra.scm (arb): Deprecate in favor of flint, of which
it is now a part.
Change-Id: I02ee2110e77c582b8daf70502f7092eba7c44547
---
gnu/packages/algebra.scm | 42 +---------------------------------------
1 file changed, 1 insertion(+), 41 deletions(-)
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index 5fd8d0f106..667a5f1a38 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -449,47 +449,7 @@ (define-public flint
'((release-monitoring-url . "http://flintlib.org/downloads.html")))))
(define-public arb
- (package
- (name "arb")
- (version "2.23.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/fredrik-johansson/arb")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1m9vskyf857gbm0cbh3z8c8m6cqkqa765wb9hqmsv7yzfmklzpvn"))))
- (build-system gnu-build-system)
- (propagated-inputs
- (list flint)) ; flint.h is included by arf.h
- (inputs
- (list gmp mpfr))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (flint (assoc-ref inputs "flint"))
- (gmp (assoc-ref inputs "gmp"))
- (mpfr (assoc-ref inputs "mpfr")))
- ;; Do not pass "--enable-fast-install", which makes the
- ;; homebrew configure process fail.
- (invoke "./configure"
- (string-append "--prefix=" out)
- (string-append "--with-flint=" flint)
- (string-append "--with-gmp=" gmp)
- (string-append "--with-mpfr=" mpfr))))))))
- (home-page "https://arblib.org")
- (synopsis "Arbitrary precision floating-point ball arithmetic")
- (description
- "Arb is a C library for arbitrary-precision floating-point ball
-arithmetic. It supports efficient high-precision computation with
-polynomials, power series, matrices and special functions over the
-real and complex numbers, with automatic, rigorous error control.")
- (license license:lgpl2.1+)))
+ (deprecated-package "arb" flint))
(define-public python-flint
(package
--
2.41.0
- [bug#68714] [PATCH 0/5] Update flint to 3.0.1, Andreas Enge, 2024/01/25
- [bug#68714] [PATCH 1/5] gnu: flint: Update to 3.0.1., Andreas Enge, 2024/01/25
- [bug#68714] [PATCH 4/5] gnu: python-flint: Update to 0.5.0 and build with flint@3., Andreas Enge, 2024/01/25
- [bug#68714] [PATCH 5/5] gnu: arb: Deprecate package.,
Andreas Enge <=
- [bug#68714] [PATCH 3/5] gnu: s7: Compile with flint@3., Andreas Enge, 2024/01/25
- [bug#68714] [PATCH 2/5] gnu: pynac: Remove package., Andreas Enge, 2024/01/25
- [bug#68714] [PATCH 0/5] Update flint to 3.0.1, Sharlatan Hellseher, 2024/01/25
- bug#68714: Done, Andreas Enge, 2024/01/26