Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pari: update to 2.15.3.
@ 2023-03-15 12:37 tornaria
  2023-03-15 20:21 ` [PR PATCH] [Merged]: " paper42
  0 siblings, 1 reply; 2+ messages in thread
From: tornaria @ 2023-03-15 12:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1344 bytes --]

There is a new pull request by tornaria against master on the void-packages repository

https://github.com/tornaria/void-packages pari
https://github.com/void-linux/void-packages/pull/42782

pari: update to 2.15.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

Tested with sagemath -- I also use pari/gp daily for my research. This release is just a few bugfixes.

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/42782.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pari-42782.patch --]
[-- Type: text/x-diff, Size: 2308 bytes --]

From 1b380f83276ab53648a87ce546779990d4d8aa4f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 15 Mar 2023 07:27:02 -0300
Subject: [PATCH] pari: update to 2.15.3.

---
 srcpkgs/pari/patches/bug-2441.patch | 17 -----------------
 srcpkgs/pari/template               |  4 ++--
 2 files changed, 2 insertions(+), 19 deletions(-)
 delete mode 100644 srcpkgs/pari/patches/bug-2441.patch

diff --git a/srcpkgs/pari/patches/bug-2441.patch b/srcpkgs/pari/patches/bug-2441.patch
deleted file mode 100644
index aaaeef394a83..000000000000
--- a/srcpkgs/pari/patches/bug-2441.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Source: https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?att=1;bug=2441;filename=patch;msg=25
-See: https://pari.math.u-bordeaux.fr/cgi-bin/bugreport.cgi?bug=2441
-
-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");
diff --git a/srcpkgs/pari/template b/srcpkgs/pari/template
index d07a939156cb..503bf6189587 100644
--- a/srcpkgs/pari/template
+++ b/srcpkgs/pari/template
@@ -1,6 +1,6 @@
 # Template file for 'pari'
 pkgname=pari
-version=2.15.2
+version=2.15.3
 revision=1
 build_style=configure
 build_helper=qemu
@@ -19,7 +19,7 @@ license="GPL-2.0-or-later"
 homepage="https://pari.math.u-bordeaux.fr"
 changelog="https://pari.math.u-bordeaux.fr/cgi-bin/gitweb.cgi?p=pari.git;a=blob_plain;f=CHANGES;hb=refs/heads/pari-${version%.*}"
 distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-${version}.tar.gz"
-checksum=b04628111ee22876519a4b1cdafb32febaa34eafa24f9e81f58f8d057fbee0dd
+checksum=adf5a58638cdafd72a8b48bc9f444972b23329c8d545a1d3ed1bbeb1b6569268
 
 build_options="x11 pthreads"
 build_options_default="x11 pthreads"

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: pari: update to 2.15.3.
  2023-03-15 12:37 [PR PATCH] pari: update to 2.15.3 tornaria
@ 2023-03-15 20:21 ` paper42
  0 siblings, 0 replies; 2+ messages in thread
From: paper42 @ 2023-03-15 20:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1194 bytes --]

There's a merged pull request on the void-packages repository

pari: update to 2.15.3.
https://github.com/void-linux/void-packages/pull/42782

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

Tested with sagemath -- I also use pari/gp daily for my research. This release is just a few bugfixes.

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-15 20:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-15 12:37 [PR PATCH] pari: update to 2.15.3 tornaria
2023-03-15 20:21 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).