Skip to content

Commit 017ceba

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #15767: Upgrade PARI to 2.7.1
'''Upstream''': [http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.7.1.tar.gz] '''Updated''' (changes have always been made directly in the source tarball and the package will be removed anyway in #15808): [http://boxen .math.washington.edu/home/jdemeyer/spkg/genus2reduction-20140211.tar.bz2 ] URL: http://trac.sagemath.org/15767 Reported by: jdemeyer Ticket author(s): Jeroen Demeyer Reviewer(s): Peter Bruin
2 parents 79d9c2f + bf435f8 commit 017ceba

File tree

88 files changed

+3413
-3030
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+3413
-3030
lines changed
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=genus2reduction-VERSION.tar.bz2
2-
sha1=a29ae793b4c2d427ed5ffbecce4f77f5ba5c1e36
3-
md5=550356571d56cb887cc6a7c035e941e5
4-
cksum=649238856
2+
sha1=df358e78da17ce74cd5b63f379e7f7f91c21f08e
3+
md5=46bd298ef0699d7fb7763d08228a3ce1
4+
cksum=2690437212
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.p8
1+
20140211

build/pkgs/lcalc/SPKG.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ http://code.google.com/p/l-calc/
8282
to not redefine the double() cast, thats just fragile and will sooner or
8383
later again fail inside some system headers.
8484

85-
* pari-2.4.4.patch:
86-
Replace obsolete lgeti() by (long)cgeti().
85+
* pari-2.7.patch:
86+
Various changes to port to PARI 2.7.
8787

8888
* init_stack.patch:
8989
Replace obsolete allocatemoremem() by a direct call to the private

build/pkgs/lcalc/package-version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.23.p12
1+
1.23.p13

build/pkgs/lcalc/patches/pari-2.4.4.patch build/pkgs/lcalc/patches/pari-2.7.patch

+12
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,15 @@
1717

1818
//gaffsg(a1,(GEN) F[1]);
1919
//gaffsg(a2,(GEN) F[2]);
20+
diff -ru src/src/Lcommandline_elliptic.cc b/src/Lcommandline_elliptic.cc
21+
--- src/src/Lcommandline_elliptic.cc 2014-02-10 10:17:11.004419528 +0100
22+
+++ b/src/Lcommandline_elliptic.cc 2014-02-10 10:20:37.757715491 +0100
23+
@@ -139,7 +139,7 @@
24+
gaffect(strtoGEN(a4), (GEN) F[4]);
25+
gaffect(strtoGEN(a6), (GEN) F[5]);
26+
27+
- E = initell(F,BIGDEFAULTPREC);
28+
+ E = ellinit(F, NULL, BIGDEFAULTPREC);
29+
30+
C=globalreduction(E);
31+

build/pkgs/pari/SPKG.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ GPL version 2+
2828
* http://pari.math.u-bordeaux.fr/
2929

3030
== Dependencies ==
31-
* MPIR (in place of GMP)
31+
* Perl
32+
* MPIR or GMP
3233
* Readline
3334
* GNU patch (shipped with Sage)
3435

build/pkgs/pari/checksums.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tarball=pari-VERSION.tar.bz2
2-
sha1=3f0838940fcf1cb7748979fe16e4b5cab0d19080
3-
md5=4c54710f7e2d4de7b8781edb9d604c60
4-
cksum=2949888924
1+
tarball=pari-VERSION.tar.gz
2+
sha1=7edec0dfefc5d0c47a7f1c2fb1016cfe313c1652
3+
md5=cdf11f569140343449bda477bea19ddb
4+
cksum=1676608517

build/pkgs/pari/package-version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.5b.p1
1+
2.7.1.p0
+11-11
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
diff -ru src/src/language/init.c src.patched/src/language/init.c
2-
--- a/src/language/init.c 2012-02-11 10:57:38.000000000 +0100
3-
+++ b/src/language/init.c 2012-03-07 10:24:37.000000000 +0100
4-
@@ -593,14 +593,16 @@
1+
diff -ru src/src/language/init.c b/src/language/init.c
2+
--- src/src/language/init.c 2014-02-01 16:29:48.955825926 +0100
3+
+++ b/src/language/init.c 2014-02-01 16:31:24.612818588 +0100
4+
@@ -612,14 +612,16 @@
55
pari_init_functions(void)
66
{
7-
stack_init(&s_MODULES, sizeof(*MODULES),(void**)&MODULES);
8-
- stack_pushp(&s_MODULES,functions_basic);
9-
stack_init(&s_OLDMODULES, sizeof(*OLDMODULES),(void**)&OLDMODULES);
10-
- stack_pushp(&s_OLDMODULES,oldfonctions);
7+
pari_stack_init(&s_MODULES, sizeof(*MODULES),(void**)&MODULES);
8+
- pari_stack_pushp(&s_MODULES,functions_basic);
9+
pari_stack_init(&s_OLDMODULES, sizeof(*OLDMODULES),(void**)&OLDMODULES);
10+
- pari_stack_pushp(&s_OLDMODULES,oldfonctions);
1111
functions_hash = (entree**) pari_calloc(sizeof(entree*)*functions_tblsz);
1212
pari_fill_hashtable(functions_hash,
1313
new_fun_set? functions_basic: oldfonctions);
1414
defaults_hash = (entree**) pari_calloc(sizeof(entree*)*functions_tblsz);
1515
pari_add_defaults_module(functions_default);
1616
+ /* Move this down to work around GCC bug
1717
+ * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49330 */
18-
+ stack_pushp(&s_MODULES,functions_basic);
19-
+ stack_pushp(&s_OLDMODULES,oldfonctions);
18+
+ pari_stack_pushp(&s_MODULES,functions_basic);
19+
+ pari_stack_pushp(&s_OLDMODULES,oldfonctions);
2020
}
21-
21+
2222
void

build/pkgs/pari/patches/KERNELCFLAGS.patch

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
diff -ru src/config/get_cc b/config/get_cc
2-
--- src/config/get_cc 2012-09-25 23:10:46.000000000 +0200
3-
+++ b/config/get_cc 2013-01-07 16:02:46.607514084 +0100
4-
@@ -122,7 +122,11 @@
5-
case "$__gnuc__" in
6-
2.95.[3-9]*|[3-9].*) OPTFLAGS="$OPTFLAGS -fno-strict-aliasing";;
7-
esac
2+
--- src/config/get_cc 2014-02-01 21:41:54.534348273 +0100
3+
+++ b/config/get_cc 2014-02-01 21:42:50.850930971 +0100
4+
@@ -94,7 +94,11 @@
5+
OPTFLAGS="$OPTFLAGS -fno-strict-aliasing"
6+
fi
7+
rm -f $exe $exe$exe_suff
88
- KERNELCFLAGS=-funroll-loops
99
+ if [ "$SAGE_DEBUG" = yes ]; then
1010
+ KERNELCFLAGS=-O1

build/pkgs/pari/patches/README.txt

+2-33
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,17 @@ Current patches to PARI in Sage:
44

55
Patches to configuration files:
66
* get_ld.patch (Carl Witty): Disable -rpath.
7-
* get_tests.patch (John Cremona): Disable testing of ellglobalred in
8-
"make test-all" in spkg-check, since it requires the elldata database
9-
which we do not include since it is about 18MB.
107
* get_config_options.patch (Leif Leonhardy): Catch invalid arguments to
118
"--graphic" (and treat such as an error) since otherwise strange
129
compilation errors might occur (cf. #9722, too).
13-
* get_fltk.patch (Leif Leonhardy): Explicitly link against libstdc++
14-
when using FLTK (for plotting) to support Fedora 13, and do an extra
15-
check for the FLTK include dir (cf. #9722).
16-
* get_X11.patch (Leif Leonhardy): Also search */lib64/* for X11
17-
libraries (since on some systems this is really a separate directory,
18-
i.e. neither a symbolic link to */lib/* nor the target of a symbolic
19-
link */lib/*; cf. #9722, too).
10+
* get_fltk.patch (Leif Leonhardy): do an extra check for the FLTK
11+
include dir (cf. #9722).
2012
* get_dlcflags.patch (Jeroen Demeyer): Add -fno-common to DLCFLAGS on
2113
Darwin. Submitted upstream, but upstream only applied it for PowerPC.
2214
Since this doesn't break anything and only improves performance, add
2315
the flag unconditionally.
24-
* install_doc_no_make.patch (Jeroen Demeyer): Do not *build* the
25-
documentation when doing install-doc or install-docpdf. We must not
26-
build the documentation because that requires tex. On the other hand,
27-
to have ? and ?? work within gp, we must install the .tex files (but
28-
not .dvi files). So simply not doing install-doc doesn't work.
2916
* perl_path.patch (Jeroen Demeyer): change first line of all perl
3017
scripts to "#!/usr/bin/env perl" (#10559).
31-
* cygwin_dll_a.patch (Jean-Pierre Flori): copy libpari.dll.a on Cygwin
32-
(see #13333).
3318
* KERNELCFLAGS.patch (Jeroen Demeyer): when SAGE_DEBUG=yes, compile
3419
kernel files with -O1 instead of -funroll-loops; -O0 gives a
3520
segmentation fault on some OS X systems when doing
@@ -45,22 +30,6 @@ C files:
4530
gcc-4.6.3. Discussed with upstream:
4631
- http://pari.math.u-bordeaux.fr/archives/pari-dev-1203/msg00001.html
4732
- http://pari.math.u-bordeaux.fr/archives/pari-dev-1202/msg00006.html
48-
* trac_13902_determinant.patch (Jeroen Demeyer): patch backported from
49-
upstream git repository based on commits
50-
- 28ea998bc661f5bbde18b6d6b0f50111a10ae16c
51-
- 249432f7088bfa114ed5cd3a5d64ef51ee968e35
52-
* polred.patch (Jeroen Demeyer): Fix polred(), add polredbest()
53-
backported from upstream commits
54-
- 2d00a24fbb1ffe8eba35b9a04763e36eef8a5f7b
55-
- a3596c56f9439144a0dbed4c47bd6ff9485e3fc8
56-
- 1a00ca416de4daebccaab2be1a4b8a061a9f2fde
57-
- ad550d9bbfee8113087407c3262bffc27a020c98
58-
* q_eint1.patch (Jeroen Demeyer): Fix precision of eint1(), backported
59-
from upstream commits
60-
- b894e0171112493bb4945a6a0e4af039b54a1d1f
61-
- 54eb37055167dbd8d4856b1bd698cf7018db561b
62-
and completely backport new algorithm for mpveceint1(). The prefix
63-
q_ in the patch filename is to ensure it comes after polred.patch.
6433
* det_garbage.patch (Jeroen Demeyer, #15654): When computing a
6534
determinant(), only collect garbage once per outer loop iteration.
6635
Better increase PARI stack size instead of collecting garbage too

build/pkgs/pari/patches/cygwin_dll_a.patch

-25
This file was deleted.

build/pkgs/pari/patches/det_garbage.patch

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,49 @@
1-
Binary files src/Olinux-x86_64/alglin1.o and b/Olinux-x86_64/alglin1.o differ
2-
Only in src/Olinux-x86_64: libpari-gmp.so.2.5.5
31
diff -ru src/src/basemath/alglin1.c b/src/basemath/alglin1.c
4-
--- src/src/basemath/alglin1.c 2014-01-09 15:43:35.847263581 +0100
5-
+++ b/src/basemath/alglin1.c 2014-01-09 15:55:47.903649326 +0100
6-
@@ -2412,6 +2412,7 @@
2+
--- src/src/basemath/alglin1.c 2014-01-29 18:00:27.000000000 +0100
3+
+++ b/src/basemath/alglin1.c 2014-02-09 01:54:37.676725196 +0100
4+
@@ -247,6 +247,7 @@
75
a = RgM_shallowcopy(a);
86
for (i=1; i<nbco; i++)
97
{
108
+ int garbage = 0; /* Only gerepile() once per loop iteration */
119
for(k=i; k<=nbco; k++)
1210
{
13-
gcoeff(a,k,i) = modii(gcoeff(a,k,i), p);
14-
@@ -2435,7 +2436,7 @@
11+
gcoeff(a,k,i) = ff->red(E,gcoeff(a,k,i));
12+
@@ -271,7 +272,7 @@
1513
for (j=i+1; j<=nbco; j++)
1614
{
17-
gcoeff(a,j,k) = Fp_sub(gcoeff(a,j,k), Fp_mul(m,gcoeff(a,j,i),p),p);
15+
gcoeff(a,j,k) = ff->add(E, gcoeff(a,j,k), ff->mul(E,m,gcoeff(a,j,i)));
1816
- if (low_stack(lim, stack_lim(av,1)))
1917
+ if (low_stack(lim, stack_lim(av,1)) && (garbage++ == 0))
2018
{
2119
if(DEBUGMEM>1) pari_warn(warnmem,"det. col = %ld",i);
22-
gerepileall(av,2, &a,&x);
23-
@@ -2994,6 +2995,7 @@
20+
gerepileall(av,4, &a,&x,&q,&m);
21+
@@ -3721,6 +3722,7 @@
2422
a = RgM_shallowcopy(a);
2523
for (i=1; i<nbco; i++)
2624
{
2725
+ int garbage = 0; /* Only gerepile() once per loop iteration */
2826
k = pivot(a, data, i, NULL);
2927
if (k > nbco) return gerepilecopy(av, gcoeff(a,i,i));
3028
if (k != i)
31-
@@ -3013,7 +3015,7 @@
29+
@@ -3740,7 +3742,7 @@
3230
for (j=i+1; j<=nbco; j++)
3331
{
3432
gcoeff(a,j,k) = gsub(gcoeff(a,j,k), gmul(m,gcoeff(a,j,i)));
35-
- if (low_stack(lim, stack_lim(av,1)))
36-
+ if (low_stack(lim, stack_lim(av,1)) && (garbage++ == 0))
33+
- if (low_stack(lim, stack_lim(av,3)))
34+
+ if (low_stack(lim, stack_lim(av,3)) && (garbage++ == 0))
3735
{
3836
if(DEBUGMEM>1) pari_warn(warnmem,"det. col = %ld",i);
3937
gerepileall(av,2, &a,&x);
40-
@@ -3063,6 +3065,7 @@
38+
@@ -3791,6 +3793,7 @@
4139
{
4240
GEN ci, ck, m;
4341
int diveuc = (gequal1(pprec)==0);
4442
+ int garbage = 0; /* Only gerepile() once per loop iteration */
4543

4644
p = gcoeff(a,i,i);
4745
if (gequal0(p))
48-
@@ -3099,7 +3102,7 @@
46+
@@ -3827,7 +3830,7 @@
4947
GEN p1 = gsub(gmul(p,gel(ck,j)), gmul(m,gel(ci,j)));
5048
if (diveuc) p1 = mydiv(p1,pprec);
5149
gel(ck,j) = gerepileupto(av2, p1);

build/pkgs/pari/patches/get_X11.patch

-52
This file was deleted.

build/pkgs/pari/patches/get_config_options.patch

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
+ -graphic|--graphic)
99
+ shift; which_graphic_lib="$1"
1010
+ case "$which_graphic_lib" in
11-
+ auto|none|X11|qt|Qt|fltk|win32) ;;
11+
+ auto|none|X11|qt|Qt|fltk|ps|win32) ;;
1212
+ *) echo "*** Unrecognized graphic lib \"$which_graphic_lib.\"" >&2
1313
+ error=true;;
1414
+ esac;;
1515
--graphic=*|--graphi=*|--graph=*|--grap=*|--gra=*|--gr=*|--g=*)
1616
- which_graphic_lib=`echo "$1" | sed -e 's/[-a-z]*=//'`;;
1717
+ which_graphic_lib=`echo "$1" | sed -e 's/[-a-z]*=//'`
1818
+ case "$which_graphic_lib" in
19-
+ auto|none|X11|qt|Qt|fltk|win32) ;;
19+
+ auto|none|X11|qt|Qt|fltk|ps|win32) ;;
2020
+ *) echo "*** Unrecognized graphic lib \"$which_graphic_lib.\"" >&2
2121
+ error=true;;
2222
+ esac;;
2323

2424
--without-readline|--with-readline=no) without_readline=yes ;;
2525
--with-readline) with_readline=yes ;;
26-
@@ -126,7 +137,7 @@
26+
@@ -139,7 +139,7 @@
2727
Build Options:
2828
--host=<arch-osname> target achitecture
2929
--kernel=<kern> kernel used
30-
- --graphic=<gr> graphic library used (none X11 Qt fltk win32)
31-
+ --graphic=<gr> graphic library used (none X11 qt Qt fltk win32 auto)
32-
--time=<fun> timing function to use (getrusage times ftime)
30+
- --graphic=<gr> graphic library used (none, X11, Qt, fltk, ps, win32)
31+
+ --graphic=<gr> graphic library used (none, X11, Qt, fltk, ps, win32, auto)
32+
--time=<fun> timing function to use (getrusage, clock_gettime,
33+
times, ftime)
3334
--builddir=<dir> directory where the object files will be created
34-
--tune tune the binary for compiling host (slow)
+8-19
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,19 @@
1-
--- a/config/get_fltk 2010-11-04 14:51:50.910510930 +0100
2-
+++ b/config/get_fltk 2010-11-04 14:59:12.158786073 +0100
3-
@@ -10,18 +10,24 @@
4-
fi
5-
;;
6-
*) if test ! -d "$with_fltk"; then
7-
- echo "### FLTK directory '$with_fltk' not found"
8-
+ echo "### Specified FLTK directory '$with_fltk' not found"
9-
else
10-
FLTKDIR=$with_fltk
1+
diff -ru src/config/get_fltk b/config/get_fltk
2+
--- src/config/get_fltk 2014-02-01 16:36:02.492702307 +0100
3+
+++ b/config/get_fltk 2014-02-01 16:43:22.183289684 +0100
4+
@@ -16,8 +16,15 @@
115
fi;;
126
esac
137
if test -n "$FLTKDIR"; then
14-
- echo "Using FLTK library, FLTKDIR = $FLTKDIR"
158
+ if test -d "$FLTKDIR/include/FL"; then
16-
+ echo "Using FLTK library, FLTKDIR = \"$FLTKDIR\""
9+
echo "Using FLTK library, FLTKDIR = $FLTKDIR"
10+
FLTK_LIBS="`fltk-config --ldflags` -lstdc++"
1711
+ else
1812
+ echo "### Found the FLTK library, but not the necessary headers."
1913
+ echo "### Building without FLTK support."
2014
+ FLTKDIR=""
15+
+ FLTK_LIBS=""
2116
+ fi
2217
else
2318
echo "### FLTK not found. Building without FLTK support"
24-
fi
25-
case "$osname" in
26-
cygwin) FLTK_LIBS="-lgdi32 -lole32 -luuid -lwsock32 -lsupc++" ;;
27-
darwin) FLTK_LIBS="-framework Carbon -lsupc++" ;;
28-
- *) FLTK_LIBS="$X11_LIBS" ;;
29-
+ *) FLTK_LIBS="$X11_LIBS -lstdc++" ;;
30-
esac
19+
FLTK_LIBS=

0 commit comments

Comments
 (0)