2018-04-24 21:53:36 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2019-02-26 11:45:54 +00:00
|
|
|
, runtimeShell
|
2018-04-24 21:53:36 +00:00
|
|
|
}:
|
2018-11-12 22:28:29 +00:00
|
|
|
|
|
|
|
# This file is responsible for fetching the sage source and adding necessary patches.
|
|
|
|
# It does not actually build anything, it just copies the patched sources to $out.
|
|
|
|
# This is done because multiple derivations rely on these sources and they should
|
|
|
|
# all get the same sources with the same patches applied.
|
|
|
|
|
2018-04-24 21:53:36 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-30 09:10:10 +00:00
|
|
|
version = "8.9";
|
2019-01-27 10:28:39 +00:00
|
|
|
pname = "sage-src";
|
2018-04-24 21:53:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sagemath";
|
|
|
|
repo = "sage";
|
|
|
|
rev = version;
|
2019-09-30 09:10:10 +00:00
|
|
|
sha256 = "1bwga58x3s8z42w5h51c232f91ndsc1861dlb1glhax3pn0rhn3a";
|
2018-04-24 21:53:36 +00:00
|
|
|
};
|
|
|
|
|
2018-11-12 22:28:29 +00:00
|
|
|
# Patches needed because of particularities of nix or the way this is packaged.
|
|
|
|
# The goal is to upstream all of them and get rid of this list.
|
2018-04-24 21:53:36 +00:00
|
|
|
nixPatches = [
|
|
|
|
# https://trac.sagemath.org/ticket/25358
|
|
|
|
(fetchpatch {
|
|
|
|
name = "safe-directory-test-without-patch.patch";
|
|
|
|
url = "https://git.sagemath.org/sage.git/patch?id2=8bdc326ba57d1bb9664f63cf165a9e9920cc1afc&id=dc673c17555efca611f68398d5013b66e9825463";
|
|
|
|
sha256 = "1hhannz7xzprijakn2w2d0rhd5zv2zikik9p51i87bas3nc658f7";
|
|
|
|
})
|
|
|
|
|
2018-07-08 20:51:24 +00:00
|
|
|
# Unfortunately inclusion in upstream sage was rejected. Instead the bug was
|
|
|
|
# fixed in python, but of course not backported to 2.7. So we'll probably
|
|
|
|
# have to keep this around until 2.7 is deprecated.
|
2018-04-24 21:53:36 +00:00
|
|
|
# https://trac.sagemath.org/ticket/25316
|
2018-07-08 20:51:24 +00:00
|
|
|
# https://github.com/python/cpython/pull/7476
|
2018-04-24 21:53:36 +00:00
|
|
|
./patches/python-5755-hotpatch.patch
|
2018-10-21 12:16:06 +00:00
|
|
|
|
2018-10-21 15:55:53 +00:00
|
|
|
# Make sure py2/py3 tests are only run when their expected context (all "sage"
|
|
|
|
# tests) are also run. That is necessary to test dochtml individually. See
|
|
|
|
# https://trac.sagemath.org/ticket/26110 for an upstream discussion.
|
|
|
|
./patches/Only-test-py2-py3-optional-tests-when-all-of-sage-is.patch
|
2019-01-18 22:02:03 +00:00
|
|
|
|
|
|
|
# Fixes a potential race condition which can lead to transient doctest failures.
|
|
|
|
./patches/fix-ecl-race.patch
|
2019-03-10 21:42:54 +00:00
|
|
|
|
2019-01-27 10:28:39 +00:00
|
|
|
# Not necessary since library location is set explicitly
|
|
|
|
# https://trac.sagemath.org/ticket/27660#ticket
|
|
|
|
./patches/do-not-test-find-library.patch
|
|
|
|
|
2019-04-18 20:54:25 +00:00
|
|
|
# Parallelize docubuild using subprocesses, fixing an isolation issue. See
|
|
|
|
# https://groups.google.com/forum/#!topic/sage-packaging/YGOm8tkADrE
|
|
|
|
./patches/sphinx-docbuild-subprocesses.patch
|
2020-03-09 12:02:29 +00:00
|
|
|
|
|
|
|
# Fix doctest failures with docutils 0.15:
|
|
|
|
# https://nix-cache.s3.amazonaws.com/log/dzmzrb2zvardsmpy7idg7djkizmkzdhs-sage-tests-8.9.drv
|
|
|
|
# https://trac.sagemath.org/ticket/28856#comment:19
|
|
|
|
./patches/docutils-0.15.patch
|
2018-04-24 21:53:36 +00:00
|
|
|
];
|
|
|
|
|
2019-03-17 14:36:01 +00:00
|
|
|
# Since sage unfortunately does not release bugfix releases, packagers must
|
|
|
|
# fix those bugs themselves. This is for critical bugfixes, where "critical"
|
|
|
|
# == "causes (transient) doctest failures / somebody complained".
|
2019-08-02 16:00:41 +00:00
|
|
|
bugfixPatches = [
|
|
|
|
# To help debug the transient error in
|
|
|
|
# https://trac.sagemath.org/ticket/23087 when it next occurs.
|
|
|
|
./patches/configurationpy-error-verbose.patch
|
|
|
|
];
|
2019-03-17 14:36:01 +00:00
|
|
|
|
2018-11-12 22:28:29 +00:00
|
|
|
# Patches needed because of package updates. We could just pin the versions of
|
|
|
|
# dependencies, but that would lead to rebuilds, confusion and the burdons of
|
|
|
|
# maintaining multiple versions of dependencies. Instead we try to make sage
|
|
|
|
# compatible with never dependency versions when possible. All these changes
|
|
|
|
# should come from or be proposed to upstream. This list will probably never
|
|
|
|
# be empty since dependencies update all the time.
|
2018-10-22 20:32:23 +00:00
|
|
|
packageUpgradePatches = let
|
2018-11-12 22:28:29 +00:00
|
|
|
# Fetch a diff between `base` and `rev` on sage's git server.
|
|
|
|
# Used to fetch trac tickets by setting the `base` to the last release and the
|
|
|
|
# `rev` to the last commit of the ticket.
|
2019-01-16 23:28:37 +00:00
|
|
|
fetchSageDiff = { base, rev, name ? "sage-diff-${base}-${rev}.patch", ...}@args: (
|
2018-10-22 20:32:23 +00:00
|
|
|
fetchpatch ({
|
2019-01-16 23:28:37 +00:00
|
|
|
inherit name;
|
2019-02-14 20:48:03 +00:00
|
|
|
url = "https://git.sagemath.org/sage.git/patch?id2=${base}&id=${rev}";
|
2018-10-22 20:32:23 +00:00
|
|
|
# We don't care about sage's own build system (which builds all its dependencies).
|
|
|
|
# Exclude build system changes to avoid conflicts.
|
2019-02-14 20:48:03 +00:00
|
|
|
excludes = [ "build/*" ];
|
2018-10-28 12:28:22 +00:00
|
|
|
} // builtins.removeAttrs args [ "rev" "base" ])
|
2018-10-22 20:32:23 +00:00
|
|
|
);
|
|
|
|
in [
|
2018-04-24 21:53:36 +00:00
|
|
|
# New glpk version has new warnings, filter those out until upstream sage has found a solution
|
2018-11-27 17:26:16 +00:00
|
|
|
# Should be fixed with glpk > 4.65.
|
2018-04-24 21:53:36 +00:00
|
|
|
# https://trac.sagemath.org/ticket/24824
|
2018-11-12 21:58:51 +00:00
|
|
|
./patches/pari-stackwarn.patch # not actually necessary since the pari upgrade, but necessary for the glpk patch to apply
|
2018-04-24 21:53:36 +00:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://salsa.debian.org/science-team/sagemath/raw/58bbba93a807ca2933ca317501d093a1bb4b84db/debian/patches/dt-version-glpk-4.65-ignore-warnings.patch";
|
|
|
|
sha256 = "0b9293v73wb4x13wv5zwyjgclc01zn16msccfzzi6znswklgvddp";
|
|
|
|
stripLen = 1;
|
|
|
|
})
|
|
|
|
|
2019-08-09 13:03:40 +00:00
|
|
|
# After updating smypow to (https://trac.sagemath.org/ticket/3360) we can
|
|
|
|
# now set the cache dir to be withing the .sage directory. This is not
|
|
|
|
# strictly necessary, but keeps us from littering in the user's HOME.
|
|
|
|
./patches/sympow-cache.patch
|
2019-09-26 12:57:05 +00:00
|
|
|
|
|
|
|
# https://trac.sagemath.org/ticket/28472
|
|
|
|
(fetchpatch {
|
|
|
|
name = "eclib-20190909.patch";
|
|
|
|
url = "https://git.sagemath.org/sage.git/patch?id=d27dc479a5772d59e4bc85d805b6ffd595284f1d";
|
|
|
|
sha256 = "1nf1s9y7n30lhlbdnam7sghgaq9nasmv96415gl5jlcf7a3hlxk3";
|
|
|
|
})
|
2019-10-30 21:24:04 +00:00
|
|
|
|
|
|
|
# ignore a deprecation warning for usage of `cmp` in the attrs library in the doctests
|
|
|
|
./patches/ignore-cmp-deprecation.patch
|
2019-11-04 20:48:38 +00:00
|
|
|
|
|
|
|
# Werkzeug has deprecated ImmutableDict, but it is still used in legacy
|
|
|
|
# sagenb. That's no big issue since sagenb will be removed soon anyways.
|
|
|
|
./patches/ignore-werkzeug-immutable-dict-deprecation.patch
|
2019-11-05 23:38:28 +00:00
|
|
|
|
|
|
|
# threejs r109 (#28560)
|
|
|
|
(fetchpatch {
|
|
|
|
name = "threejs-r109.patch";
|
|
|
|
url = "https://git.sagemath.org/sage.git/patch?id=fcc11d6effa39f375bc5f4ea5831fb7a2f2767da";
|
|
|
|
sha256 = "0hnmc8ld3bblks0hcjvjjaydkgwdr1cs3dbl2ys4gfq964pjgqwc";
|
|
|
|
})
|
2019-12-26 10:46:42 +00:00
|
|
|
|
|
|
|
# https://trac.sagemath.org/ticket/28911
|
|
|
|
(fetchpatch {
|
|
|
|
name = "sympy-1.5.patch";
|
|
|
|
url = "https://git.sagemath.org/sage.git/patch/?h=c6d0308db15efd611211d26cfcbefbd180fc0831";
|
|
|
|
sha256 = "0nwai2jr22h49km4hx3kwafs3mzsc5kwsv7mqwjf6ibwfx2bbgyq";
|
|
|
|
})
|
2020-03-11 11:02:14 +00:00
|
|
|
|
|
|
|
# https://trac.sagemath.org/ticket/29313 (patch from ArchLinux)
|
|
|
|
(fetchpatch {
|
|
|
|
name = "pari-2.11.3.patch";
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/sagemath-pari-2.11.3.patch?h=sagemath-git&id=02e1d58bd1cd70935d69a4990469d18be6bd2c43";
|
|
|
|
sha256 = "0z07444zvijyw96d11q7j81pvg7ysd6ycf1bbbjr6za9y74hv7d2";
|
|
|
|
})
|
2018-04-24 21:53:36 +00:00
|
|
|
];
|
|
|
|
|
2019-03-17 14:36:01 +00:00
|
|
|
patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches;
|
2018-04-24 21:53:36 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# make sure shebangs etc are fixed, but sage-python23 still works
|
|
|
|
find . -type f -exec sed \
|
|
|
|
-e 's/sage-python23/python/g' \
|
|
|
|
-i {} \;
|
|
|
|
|
2019-02-26 11:45:54 +00:00
|
|
|
echo '#!${runtimeShell}
|
2018-04-24 21:53:36 +00:00
|
|
|
python "$@"' > build/bin/sage-python23
|
|
|
|
|
2019-01-27 10:28:39 +00:00
|
|
|
# Make sure sage can at least be imported without setting any environment
|
|
|
|
# variables. It won't be close to feature complete though.
|
|
|
|
sed -i \
|
|
|
|
"s|var('SAGE_LOCAL',.*|var('SAGE_LOCAL', '$out/src')|" \
|
|
|
|
src/sage/env.py
|
|
|
|
|
2018-04-24 21:53:36 +00:00
|
|
|
# Do not use sage-env-config (generated by ./configure).
|
|
|
|
# Instead variables are set manually.
|
|
|
|
echo '# do nothing' > src/bin/sage-env-config
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = "# do nothing";
|
|
|
|
|
|
|
|
buildPhase = "# do nothing";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
cp -r . "$out"
|
|
|
|
'';
|
|
|
|
}
|