Gonzalo Tornaría

Results 138 comments of Gonzalo Tornaría

> This builds and checks fine on aarch64. At the post-install hook stage, I noticed a bunch of `warning: renamed X.cpython-312-aarch64-linux-gnu.so to X.so`, e.g. `X = algebra_elements`. Not sure if...

@knusbaum: this PR includes update of ecl (with rebuild of maxima + sagemath) @dkwo: you might want to try building maxima on aarch64, either here or in #49571

Updated gap from 4.13.0 to 4.13.1, no other change in this PR.

This is included in #49571. Since sagemath 10.4 is to be released very soon, we can close this one in favor of that one.

Note also that the `DEFAULT_PATH_VALUE` is set to ``` "/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:." ``` I wonder if we should remove the trailing `.` there and/or reorder to match our `/etc/profile`. This default path...

The following would "fix" the default `PATH` in bash (to exclude `.`): ```diff --- a/srcpkgs/bash/template +++ b/srcpkgs/bash/template @@ -24,7 +24,11 @@ alternatives=" sh:sh:/usr/bin/bash sh:sh.1:/usr/share/man/man1/bash.1" -CFLAGS="-DSSH_SOURCE_BASHRC -DNON_INTERACTIVE_LOGIN_SHELLS -DSYS_BASHRC='\"/etc/bash/bashrc\"'" +CFLAGS="\ + -DSSH_SOURCE_BASHRC...

I'm not sure about a reasonable alternative. The closest one is: - set `PermitUserEnvironment BASH_ENV` in `sshd_config` (needs root) - set `BASH_ENV=~/.bashrc` in `~/.ssh/environment` However, this will end up running...

Thanks @saraedum. According to the title, the purpose of this PR is to "Add # sage_setup: distribution directives to all files, remove remaining # coding: utf-8 " I would like...

Do we really need to have different functions for different systems? It seems this kind of case by case handling might lead to issues later. May I suggest something like...

> > It seems this kind of case by case handling might lead to issues later. > > What "issues" could that possibly be? I don't know, someone wants to...