commit:     ab98c256a0799d183172beff705dabbf663192c1
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 16:35:55 2023 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 19:40:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab98c256

sci-mathematics/pari: add 2.15.3, drop 2.15.2-r2

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sci-mathematics/pari/Manifest                      |  2 +-
 .../pari/files/pari-2.15.2-ellsea-r1.patch         | 34 ----------------------
 .../pari/files/pari-2.15.2-install-doctex.patch    | 25 ----------------
 .../{pari-2.15.2-r2.ebuild => pari-2.15.3.ebuild}  |  4 +--
 4 files changed, 2 insertions(+), 63 deletions(-)

diff --git a/sci-mathematics/pari/Manifest b/sci-mathematics/pari/Manifest
index 9e878940b366..787883758f30 100644
--- a/sci-mathematics/pari/Manifest
+++ b/sci-mathematics/pari/Manifest
@@ -1,2 +1,2 @@
 DIST pari-2.13.4.tar.gz 4772735 BLAKE2B 
5a3eebd380f1e47f38746b03ddde9a715ed74e7e8e4ed30ef8f2d62cf7289694b800fc8396557150ce9d79245c244fb56cecddac867c6057b438da4df68505e6
 SHA512 
0eb8c0100d76fb8f29fd29e6a49e9534b9a4d90e1869820dbfddd57fe444f0e83909947331823157a67be31f71a5d26fa1224f72ce3f9e5197db0194c417b9b9
-DIST pari-2.15.2.tar.gz 5176694 BLAKE2B 
b3aa021cb0b786dfde691b150d38c0ee9e9844ff5d2554d7a4f0cd85b27c8077696433b14c0b2128930b7db2191e7db99bdebc200e03607554cc4a9394ea42a4
 SHA512 
fa9e8713484ab5d659dcf7cf65de0fbaf28334969f443bfaffb8fc19c2305631435fc5635e090cbd8033758ea18200a62c47e8434067af9a86565832e96d489c
+DIST pari-2.15.3.tar.gz 5178288 BLAKE2B 
d9cc11526360e9fc7688e0a3195a85302d6bf95039051c9419aa18c5bf91eff837d64d9acabb0a51a6e15a3614a5cab4acbf0a502dba5417982514f27721d47d
 SHA512 
9e127850759bac0c0a9b32c6660a55018ec6c6781aaa14c42667f26655444f55c08e100fe186aec8ad1f574d883d76888b13fbafb65d1f4741e2018b78ff307b

diff --git a/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch 
b/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch
deleted file mode 100644
index b8af421c0e56..000000000000
--- a/sci-mathematics/pari/files/pari-2.15.2-ellsea-r1.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-A fix for upstream bug 2441 and gentoo bug 892035, with the changes to
-CHANGES and the test suite stripped out (they don't apply cleanly).
-
-From 6f556664bea5dae9d7101533be65f10b9d6332e2 Mon Sep 17 00:00:00 2001
-From: Bill Allombert <bill.allomb...@math.u-bordeaux.fr>
-Date: Fri, 20 Jan 2023 11:13:46 +0100
-Subject: [PATCH 1/1] ellcard(ellinit([1,1]*ffgen([41,16])))-> impossible
- inverse [#2441]
-
-find_isogenous_from_Atkin: check that the kernel divides the division 
polynomial
----
- CHANGES               | 1 +
- src/basemath/ellsea.c | 3 ++-
- src/test/32/ellff     | 3 ++-
- src/test/in/ellff     | 3 +++
- 4 files changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/src/basemath/ellsea.c b/src/basemath/ellsea.c
-index a6871fa6a7..05f148eadd 100644
---- a/src/basemath/ellsea.c
-+++ b/src/basemath/ellsea.c
-@@ -852,7 +852,8 @@ find_isogenous_from_Atkin(GEN a4, GEN a6, ulong ell, 
struct meqn *MEQN, GEN g, G
-       GEN a4t, a6t, h;
-       a4a6t(&a4t, &a6t, ell, E4t, E6t, T, p);
-       h = find_kernel(a4, a6, ell, a4t, a6t, pp1, T, p, pp, e);
--      if (h) return gerepilecopy(ltop, mkvec3(a4t, a6t, h));
-+      if (h && signe(Fq_elldivpolmod(a4, a6, ell, h, T, pp))==0)
-+        return gerepilecopy(ltop, mkvec3(a4t, a6t, h));
-     }
-   }
-   pari_err_BUG("find_isogenous_from_Atkin, kernel not found");
--- 
-2.30.2
-

diff --git a/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch 
b/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch
deleted file mode 100644
index d504326b7b43..000000000000
--- a/sci-mathematics/pari/files/pari-2.15.2-install-doctex.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 0888050e8f3fc8c07e42331651c970d80c8d6a90 Mon Sep 17 00:00:00 2001
-From: Bill Allombert <bill.allomb...@math.u-bordeaux.fr>
-Date: Wed, 25 Jan 2023 18:42:09 +0100
-Subject: [PATCH] TOP_Make.SH: add target install-docvi, install-doctex [#2444]
-
----
- config/TOP_Make.SH | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/config/TOP_Make.SH b/config/TOP_Make.SH
-index d2543c91eb..e60fd5f6ee 100644
---- a/config/TOP_Make.SH
-+++ b/config/TOP_Make.SH
-@@ -42,7 +42,7 @@ all::
-       @\$(MAKE) gp
-       @-cd doc && \$(MAKE) doc
- 
--gp bench test-kernel test-all install cleanall cleanobj cleantest nsis 
link-data install-bin install-doc install-docpdf install-nodata install-data 
install-lib-sta install-bin-sta dobench dyntest-all statest-all tune 
$top_test_extra $top_dotest_extra::
-+gp bench test-kernel test-all install cleanall cleanobj cleantest nsis 
link-data install-bin install-doc install-doctex install-docdvi install-docpdf 
install-nodata install-data install-lib-sta install-bin-sta dobench dyntest-all 
statest-all tune $top_test_extra $top_dotest_extra::
-       @dir=\`config/objdir\`; echo "Making \$@ in \$\$dir";\\
-        if test ! -d \$\$dir; then echo "Please run Configure first!"; exit 1; 
fi;\\
-       cd \$\$dir && \$(MAKE) \$@
--- 
-2.30.2
-

diff --git a/sci-mathematics/pari/pari-2.15.2-r2.ebuild 
b/sci-mathematics/pari/pari-2.15.3.ebuild
similarity index 97%
rename from sci-mathematics/pari/pari-2.15.2-r2.ebuild
rename to sci-mathematics/pari/pari-2.15.3.ebuild
index c25f507e52f3..123f174d15a3 100644
--- a/sci-mathematics/pari/pari-2.15.2-r2.ebuild
+++ b/sci-mathematics/pari/pari-2.15.3.ebuild
@@ -33,10 +33,8 @@ RDEPEND="${DEPEND}"
 
 PATCHES=(
        "${FILESDIR}/${PN}"-2.9.4-ppc.patch
-       "${FILESDIR}/${PN}"-2.11.2-no-automagic.patch
        "${FILESDIR}/${PN}"-2.9.4-fltk-detection.patch
-       "${FILESDIR}/${PN}"-2.15.2-ellsea-r1.patch
-       "${FILESDIR}/${PN}"-2.15.2-install-doctex.patch
+       "${FILESDIR}/${PN}"-2.11.2-no-automagic.patch
 )
 
 src_prepare() {

Reply via email to