Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build/pkgs/flint 3.1.3 #37203

Merged
merged 30 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d879f03
add sha256
faisalfakhro Apr 2, 2024
b45ada6
sha256/sha1 checksum priority
faisalfakhro Apr 3, 2024
bde1df4
update checksums.ini files with sha256
faisalfakhro Apr 5, 2024
d890bd9
remove md5, cksum
faisalfakhro Apr 5, 2024
65f1f01
build/pkgs/symengine_py/checksums.ini: Fix upstream_url
mkoeppe Apr 7, 2024
685b4dc
sage_bootstrap.tarball: After checking sha256, also check sha1 for co…
mkoeppe Apr 19, 2024
d75ca34
sage -package fix-checksum: If sha256 is not available, create it
mkoeppe Apr 19, 2024
626539b
Update checksums.ini for updated packages
mkoeppe Apr 19, 2024
a3ccd8d
update packages checksums.ini
faisalfakhro Apr 25, 2024
091aa47
Merge branch 'develop' into update_hashes
faisalfakhro Apr 27, 2024
03bfd92
Merge branch 'pip-24' into update_hashes
mkoeppe Apr 28, 2024
0fe263a
Merge branch 'gambit_remove' into update_hashes
mkoeppe Apr 28, 2024
4044324
sage -package fix-checksum :all:
mkoeppe Apr 28, 2024
f2f63e9
Merge remote-tracking branch 'upstream/develop' into update_hashes
mkoeppe May 2, 2024
d831891
build/pkgs/{editables,fricas}: Add sha256
mkoeppe May 2, 2024
7587edf
Merge branch 'singular-4.3.2p16' into update_hashes
mkoeppe May 5, 2024
840eea0
Merge branch 'update-libgc-8_2_6' into update_hashes
mkoeppe May 5, 2024
72b755a
build/pkgs/{gc,singular}: Add sha256
mkoeppe May 5, 2024
d955e50
Merge branch 'culler/develop' into update_hashes
mkoeppe May 5, 2024
8b0768a
build/pkgs/python3: Add sha256
mkoeppe May 5, 2024
1578923
Merge remote-tracking branch 'upstream/develop' into update_hashes
mkoeppe May 12, 2024
eb08315
sage -package fix-checksum :all:
mkoeppe May 12, 2024
62dc5bc
build/pkgs/flint: Update to 3.1.0
mkoeppe Feb 25, 2024
1cda1df
build/pkgs/flint/patches/0001-Makefile.in-fix-handling-of-DESTDIR.pat…
mkoeppe Feb 25, 2024
4b253b5
build/pkgs/flint: Update to 3.1.2
mkoeppe Apr 10, 2024
fc47aea
build/pkgs/flint: Update to 3.1.3
mkoeppe May 2, 2024
18e1d4f
build/pkgs/gmp/spkg-configure.m4: Check the actual GMP version, to ma…
mkoeppe Jan 31, 2024
090a5af
build/pkgs/gmp/spkg-configure.m4: Cosmetic fixes
mkoeppe May 20, 2024
bff628a
Merge branch 'update_hashes' into gmp_require_6_2_1
mkoeppe May 20, 2024
e2d2df4
sage -package fix-checksum flint
mkoeppe May 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/pkgs/flint/checksums.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tarball=flint-VERSION.tar.gz
sha1=65be9297c06edd7e24f20874b7bd6130cee56723
md5=5189f67b0ec12e4a54d6782851642b81
cksum=172350473
sha1=35af6e2de8765a841952438f3c915d0505b983b6
md5=f449b4902c51b03e902b2b8bc6ef1307
cksum=1303232242
kwankyu marked this conversation as resolved.
Show resolved Hide resolved
upstream_url=https://github.com/flintlib/flint/releases/download/vVERSION/flint-VERSION.tar.gz
2 changes: 1 addition & 1 deletion build/pkgs/flint/package-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.1
3.1.3

This file was deleted.

20 changes: 20 additions & 0 deletions build/pkgs/gmp/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ SAGE_SPKG_CONFIGURE([gmp], [
sage_spkg_install_gmp=no
AC_CHECK_HEADER(gmp.h, [], [sage_spkg_install_gmp=yes])
AC_CHECK_HEADER(gmpxx.h, [], [sage_spkg_install_gmp=yes])
# Check that GMP >= 6.2.1; this test is copied from FLINT.
kwankyu marked this conversation as resolved.
Show resolved Hide resolved
AC_MSG_CHECKING([if version of GMP is greater than 6.2.1])
AC_COMPILE_IFELSE([
AC_LANG_PROGRAM(
[[#include <gmp.h>
]],
[[#if (__GNU_MP_VERSION < 6) \
|| (__GNU_MP_VERSION == 6 && __GNU_MP_VERSION_MINOR < 2) \
|| (__GNU_MP_VERSION == 6 && __GNU_MP_VERSION_MINOR == 2 && __GNU_MP_VERSION_PATCHLEVEL < 1)
# error GMP version 6.2.1 or later is required
#endif
]]
)], [dnl
AC_MSG_RESULT([yes])
], [dnl
AC_MSG_RESULT([no])
sage_spkg_install_gmp=yes
])
dnl The test above uses the headers only. To protect against header/library
dnl mismatches, we now check for a function.
dnl mpn_gcd_11 appeared in GMP 6.2.1
dnl It is undocumented but is used by Flint when built with default
dnl flags.
Expand Down
Loading