From 2db43213e5c343995f4b9fb977726fe42ebdac67 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 27 Jan 2023 01:57:18 +0000 Subject: gentoo auto-resync : 27:01:2023 - 01:57:17 --- .../arb/files/arb-2.18.0-multilib-strict.patch | 20 ------ .../arb/files/arb-2.21.0-gamma_fmpq-testfix.patch | 73 ---------------------- .../arb/files/arb-2.21.0-qa-warning-fix.patch | 21 ------- 3 files changed, 114 deletions(-) delete mode 100644 sci-mathematics/arb/files/arb-2.18.0-multilib-strict.patch delete mode 100644 sci-mathematics/arb/files/arb-2.21.0-gamma_fmpq-testfix.patch delete mode 100644 sci-mathematics/arb/files/arb-2.21.0-qa-warning-fix.patch (limited to 'sci-mathematics/arb/files') diff --git a/sci-mathematics/arb/files/arb-2.18.0-multilib-strict.patch b/sci-mathematics/arb/files/arb-2.18.0-multilib-strict.patch deleted file mode 100644 index e45dec9f3742..000000000000 --- a/sci-mathematics/arb/files/arb-2.18.0-multilib-strict.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index ec806fe..d6136a8 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -136,10 +136,12 @@ if(NOT MSVC) - target_link_libraries(arb m) - endif() - -+include(GNUInstallDirs) -+ - install(TARGETS arb -- RUNTIME DESTINATION bin -- ARCHIVE DESTINATION lib -- LIBRARY DESTINATION lib -+ RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}" -+ ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}" -+ LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}" - ) - - foreach (FOLDER ${FOLDERS}) diff --git a/sci-mathematics/arb/files/arb-2.21.0-gamma_fmpq-testfix.patch b/sci-mathematics/arb/files/arb-2.21.0-gamma_fmpq-testfix.patch deleted file mode 100644 index 179ba8887f32..000000000000 --- a/sci-mathematics/arb/files/arb-2.21.0-gamma_fmpq-testfix.patch +++ /dev/null @@ -1,73 +0,0 @@ -From 450435a84a40acc1871cd84f1caf2ea47c11a18c Mon Sep 17 00:00:00 2001 -From: fredrik -Date: Tue, 28 Sep 2021 12:07:45 +0200 -Subject: [PATCH] fix (hopefully) spurious test failures for gamma_fmpq - ---- - arb_hypgeom/gamma_fmpq.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -diff --git a/arb_hypgeom/gamma_fmpq.c b/arb_hypgeom/gamma_fmpq.c -index 996a87e5..ee750d0d 100644 ---- a/arb_hypgeom/gamma_fmpq.c -+++ b/arb_hypgeom/gamma_fmpq.c -@@ -529,22 +529,22 @@ arb_hypgeom_gamma_fmpq_outward(arb_t y, const fmpq_t x, slong prec) - - if (q == 1 || q == 2 || q == 3 || q == 4 || q == 6) - { -- arb_hypgeom_gamma_small_frac(t, p, q, prec); -+ arb_hypgeom_gamma_small_frac(t, p, q, prec + 4 * (m != 0)); - } - else - { -- arb_hypgeom_gamma_fmpq_hyp(t, a, prec); -+ arb_hypgeom_gamma_fmpq_hyp(t, a, prec + 4 * (m != 0)); - } - - /* argument reduction */ - if (m >= 0) - { -- arb_rising_fmpq_ui(u, a, m, prec); -+ arb_rising_fmpq_ui(u, a, m, prec + 4); - arb_mul(y, t, u, prec); - } - else - { -- arb_rising_fmpq_ui(u, x, -m, prec); -+ arb_rising_fmpq_ui(u, x, -m, prec + 4); - arb_div(y, t, u, prec); - } - -@@ -602,7 +602,7 @@ arb_hypgeom_gamma_fmpq_taylor(arb_t y, const fmpq_t x, slong prec) - } - - arb_set_fmpq(t, a, prec + 4); -- success = arb_hypgeom_gamma_taylor(t, t, 0, prec); -+ success = arb_hypgeom_gamma_taylor(t, t, 0, prec + 4); - - if (success) - { -@@ -611,12 +611,12 @@ arb_hypgeom_gamma_fmpq_taylor(arb_t y, const fmpq_t x, slong prec) - - if (m >= 0) - { -- arb_rising_fmpq_ui(u, a, m, prec); -+ arb_rising_fmpq_ui(u, a, m, prec + 4); - arb_mul(y, t, u, prec); - } - else - { -- arb_rising_fmpq_ui(u, x, -m, prec); -+ arb_rising_fmpq_ui(u, x, -m, prec + 4); - arb_div(y, t, u, prec); - } - -@@ -684,7 +684,7 @@ arb_hypgeom_gamma_fmpq(arb_t y, const fmpq_t x, slong prec) - wp = (slong) fmpz_bits(fmpq_numref(x)) - (slong) fmpz_bits(fmpq_denref(x)); - wp = FLINT_MAX(wp, 0); - wp = FLINT_MIN(wp, 4 * prec); -- wp += prec; -+ wp += prec + 4; - - arb_set_fmpq(y, x, wp); - diff --git a/sci-mathematics/arb/files/arb-2.21.0-qa-warning-fix.patch b/sci-mathematics/arb/files/arb-2.21.0-qa-warning-fix.patch deleted file mode 100644 index dd5440f938de..000000000000 --- a/sci-mathematics/arb/files/arb-2.21.0-qa-warning-fix.patch +++ /dev/null @@ -1,21 +0,0 @@ -From d271652d3124c9e65a97df310a141c607a0b5ee5 Mon Sep 17 00:00:00 2001 -From: fredrik -Date: Wed, 29 Sep 2021 19:55:34 +0200 -Subject: [PATCH] add missing include - ---- - acb_poly/lgamma_series.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/acb_poly/lgamma_series.c b/acb_poly/lgamma_series.c -index 504b0cb4..d50ffb9f 100644 ---- a/acb_poly/lgamma_series.c -+++ b/acb_poly/lgamma_series.c -@@ -10,6 +10,7 @@ - */ - - #include "acb_poly.h" -+#include "acb_hypgeom.h" - - void - _acb_log_rising_correct_branch(acb_t t, -- cgit v1.2.3