Skip to content

Commit 6066257

Browse files
committed
Another replacement
1 parent 761d95d commit 6066257

File tree

96 files changed

+131
-131
lines changed

Some content is hidden

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

96 files changed

+131
-131
lines changed

.devcontainer/portability-updateContent.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# The script assumes that it is run from SAGE_ROOT.
66
#
77
# If "config.log" or "logs" are symlinks (for example, created by 'tox -e local-...',
8-
# or after https://trac.sagemath.org/ticket/33262), they might point outside of
8+
# or after https://github.com/sagemath/sage/issues/33262), they might point outside of
99
# the dev container, so remove them. Likewise for upstream.
1010
for f in config.log logs upstream; do
1111
if [ -L $f ]; then
1212
rm -f $f
1313
fi
1414
done
15-
# If possible (ensured after https://trac.sagemath.org/ticket/33262), keep the
15+
# If possible (ensured after https://github.com/sagemath/sage/issues/33262), keep the
1616
# logs in the container.
1717
if [ ! -d logs ]; then
1818
ln -s /sage/logs logs

.github/workflows/ci-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
matrix:
3939
stage: ["1", "2", "2-optional-0-o", "2-optional-p-z", "2-experimental-0-o", "2-experimental-p-z"]
4040
# python3_xcode is only accepted if enough packages are available from the system
41-
# --> to test "minimal", we would need https://trac.sagemath.org/ticket/30949
41+
# --> to test "minimal", we would need https://github.com/sagemath/sage/issues/30949
4242
tox_env: [homebrew-macos-usrlocal-minimal, homebrew-macos-usrlocal-standard, homebrew-macos-usrlocal-maximal, homebrew-macos-usrlocal-python3_xcode-standard, conda-forge-macos-minimal, conda-forge-macos-standard, conda-forge-macos-maximal]
4343
xcode_version_factor: [default]
4444
os: [ macos-11, macos-12 ]

.github/workflows/ci-wsl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
windows:
1414
runs-on: windows-latest
1515
name: Ubuntu 20.04
16-
# Following https://trac.sagemath.org/ticket/25206#comment:63
16+
# Following https://github.com/sagemath/sage/issues/25206#comment:63
1717
steps:
1818
- name: Configure git
1919
run: git config --global core.symlinks true

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ SAGE_ROOT_LOGS = logs
3131

3232
# The --stop flag below is just a random flag to induce graceful
3333
# breakage with non-GNU versions of make.
34-
# See https://trac.sagemath.org/ticket/24617
34+
# See https://github.com/sagemath/sage/issues/24617
3535

3636
# Defer unknown targets to build/make/Makefile
3737
%::
@@ -259,8 +259,8 @@ TEST_FILES = --all
259259
TEST_FLAGS =
260260

261261
# When the documentation is installed, "optional" also includes all tests marked 'sagemath_doc_html',
262-
# see https://trac.sagemath.org/ticket/25345, https://trac.sagemath.org/ticket/26110, and
263-
# https://trac.sagemath.org/ticket/32759
262+
# see https://github.com/sagemath/sage/issues/25345, https://github.com/sagemath/sage/issues/26110, and
263+
# https://github.com/sagemath/sage/issues/32759
264264
TEST_OPTIONAL = sage,optional
265265

266266
# Keep track of the top-level *test* Makefile target for logging.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ in the Installation Guide.
329329
manager.
330330

331331
For a large [list of Sage
332-
packages](https://trac.sagemath.org/ticket/27330), Sage is able to
332+
packages](https://github.com/sagemath/sage/issues/27330), Sage is able to
333333
detect whether an installed system package is suitable for use with
334334
Sage; in that case, Sage will not build another copy from source.
335335

build/bin/sage-bootstrap-python

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SAGE_ORIG_PATH=${NEW_PATH%%':'}
3030
# Also, Trac #20023 removed the vendored argparse library from sage_bootstrap,
3131
# so we test that python is new enough (>= 2.7) to run it.
3232
#
33-
# See https://trac.sagemath.org/ticket/29090
33+
# See https://github.com/sagemath/sage/issues/29090
3434

3535
# Trac #29890: Our first choice is "python", not "python3". This is to avoid
3636
# a defect of sage_bootstrap on macOS regarding SSL URLs.

build/bin/sage-dist-helpers

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ sdh_configure() {
166166
echo "Configuring $PKG_NAME"
167167
# Run all configure scripts with bash to work around bugs with
168168
# non-portable scripts.
169-
# See https://trac.sagemath.org/ticket/24491
169+
# See https://github.com/sagemath/sage/issues/24491
170170
if [ -z "$CONFIG_SHELL" ]; then
171171
export CONFIG_SHELL=`command -v bash`
172172
fi
@@ -290,7 +290,7 @@ sdh_pip_install() {
290290

291291
sdh_pip_editable_install() {
292292
echo "Installing $PKG_NAME (editable mode)"
293-
# Until https://trac.sagemath.org/ticket/34209 switches us to PEP 660 editable wheels
293+
# Until https://github.com/sagemath/sage/issues/34209 switches us to PEP 660 editable wheels
294294
export SETUPTOOLS_ENABLE_FEATURES=legacy-editable
295295
python3 -m pip install --verbose --no-deps --no-index --no-build-isolation --isolated --editable "$@" || \
296296
sdh_die "Error installing $PKG_NAME"

build/bin/sage-flock

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# This is originally motivated by pip, but has since been generalized. We
1212
# should avoid running pip while uninstalling a package because that is prone
1313
# to race conditions. This script can be used to run pip under a lock. For
14-
# details, see https://trac.sagemath.org/ticket/21672
14+
# details, see https://github.com/sagemath/sage/issues/21672
1515

1616
try:
1717
import sage_bootstrap

build/bin/sage-site

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ if [ "$1" = '-i' ]; then
184184
for PKG in $PACKAGES; do
185185
echo
186186
# Check that $PKG is actually a Makefile target
187-
# See https://trac.sagemath.org/ticket/25078
187+
# See https://github.com/sagemath/sage/issues/25078
188188
if ! echo "$ALL_TARGETS" | grep "^${PKG}$" >/dev/null; then
189189
echo >&2 "Error: package '$PKG' not found"
190190
echo >&2 "Note: if it is an old-style package, installing these is no longer supported"

build/bin/sage-spkg

+1-1
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ echo "Copying package files from temporary location $SAGE_DESTDIR to $SAGE_INST_
686686
if [ -d "$SAGE_DESTDIR" ]; then
687687
# Some `find` implementations will put superfluous slashes in the
688688
# output if we give them a directory name with a slash; so make sure
689-
# any trailing slash is removed; https://trac.sagemath.org/ticket/26013
689+
# any trailing slash is removed; https://github.com/sagemath/sage/issues/26013
690690
PREFIX="${SAGE_DESTDIR_LOCAL%/}"
691691

692692
rm -f "$PREFIX"/lib/*.la

build/bin/sage-spkg-info

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ else
116116
echo "However, these system packages will not be used for building Sage"
117117
if [ -f "$PKG_SCRIPTS"/install-requires.txt ]; then
118118
echo "because using Python site-packages is not supported by the Sage distribution;"
119-
echo "see https://trac.sagemath.org/ticket/29023"
119+
echo "see https://github.com/sagemath/sage/issues/29023"
120120
else
121121
echo "because spkg-configure.m4 has not been written for this package;"
122-
echo "see https://trac.sagemath.org/ticket/27330"
122+
echo "see https://github.com/sagemath/sage/issues/27330"
123123
fi
124124
fi
125125
fi

build/bin/sage-venv

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if options.upgrade and options.clear:
3838
raise ValueError('you cannot supply --upgrade and --clear together.')
3939

4040
if sys.platform == 'cygwin':
41-
# default for Cygwin; see https://trac.sagemath.org/ticket/30149
41+
# default for Cygwin; see https://github.com/sagemath/sage/issues/30149
4242
use_symlinks = False
4343
else:
4444
# default for posix

build/make/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ DUMMY_PACKAGES = @SAGE_DUMMY_PACKAGES@
7878

7979
# Set to the path to Sage's GCC (if GCC is installed) to force rebuilds
8080
# of packages if GCC changed.
81-
# See m4/sage_spkg_collect.m4 and https://trac.sagemath.org/ticket/24703
81+
# See m4/sage_spkg_collect.m4 and https://github.com/sagemath/sage/issues/24703
8282
GCC_DEP = @SAGE_GCC_DEP@
8383

8484
# Versions of all the packages, in the format

build/pkgs/_prereq/distros/cygwin.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
binutils
1313
make
1414
m4
15-
# a system python is needed for downloading the sage packages, https://trac.sagemath.org/ticket/29090
15+
# a system python is needed for downloading the sage packages, https://github.com/sagemath/sage/issues/29090
1616
python39-urllib3 python39
1717
perl
1818
perl-ExtUtils-MakeMaker
1919
tar
2020
gcc-core
2121
gcc-g++
22-
# Needed according to embray at https://trac.sagemath.org/ticket/26964:
22+
# Needed according to embray at https://github.com/sagemath/sage/issues/26964:
2323
# The need for which comes [...] from MPIR's configure script
2424
findutils
2525
which

build/pkgs/_prereq/distros/fedora.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
binutils
1616
make
1717
m4
18-
# a system python is needed for downloading the sage packages, https://trac.sagemath.org/ticket/29090
18+
# a system python is needed for downloading the sage packages, https://github.com/sagemath/sage/issues/29090
1919
python3
2020
perl
2121
perl-ExtUtils-MakeMaker
@@ -26,11 +26,11 @@ gcc
2626
# configure: error: in `/sage':
2727
# configure: error: C++ preprocessor "/lib/cpp" fails sanity check
2828
gcc-c++
29-
# Needed according to embray at https://trac.sagemath.org/ticket/26964:
29+
# Needed according to embray at https://github.com/sagemath/sage/issues/26964:
3030
# The need for which comes [...] from MPIR's configure script
3131
findutils
3232
which
33-
# Needed for pcre configure, see https://trac.sagemath.org/ticket/29129:
33+
# Needed for pcre configure, see https://github.com/sagemath/sage/issues/29129:
3434
diffutils
3535
# Needed for openssl 3.0
3636
perl-IPC-Cmd

build/pkgs/cddlib/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ SAGE_SPKG_CONFIGURE([cddlib], [
1616
AC_CHECK_PROGS(SCDD, [scdd_gmp scdd])
1717
AS_IF([test x$SCDD = x], [sage_spkg_install_cddlib=yes])
1818
19-
dnl https://trac.sagemath.org/ticket/30319
19+
dnl https://github.com/sagemath/sage/issues/30319
2020
AS_IF([test -n "$CDDEXEC"], [
2121
AC_MSG_CHECKING([whether $CDDEXEC --redcheck works correctly for real input])
2222
cat > conftest.ine <<EOF

build/pkgs/cmake/spkg-check.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Do not run a test suite: see https://trac.sagemath.org/ticket/30093.
1+
# Do not run a test suite: see https://github.com/sagemath/sage/issues/30093.
22
#
33
# - The test suite takes a long time and can fail in minor ways.
44
# - If some major aspect of cmake fails, it only affects the build
55
# process of Sage, not the mathematical correctness of its results.
66
# - If some minor aspect of cmake fails, it won't affect anything about Sage.
77

8-
echo "We skip the test suite for cmake: see https://trac.sagemath.org/ticket/30093."
8+
echo "We skip the test suite for cmake: see https://github.com/sagemath/sage/issues/30093."

build/pkgs/curl/spkg-check.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Do not run a test suite: see https://trac.sagemath.org/ticket/30093.
1+
# Do not run a test suite: see https://github.com/sagemath/sage/issues/30093.
22
#
33
# - The test suite takes a long time and can fail in minor ways.
44
# - If some major aspect of curl fails, it only affects the build
55
# process of Sage, not the mathematical correctness of its results.
66
# - If some minor aspect of curl fails, it won't affect anything about Sage.
77

8-
echo "We skip the test suite for curl: see https://trac.sagemath.org/ticket/30093."
8+
echo "We skip the test suite for curl: see https://github.com/sagemath/sage/issues/30093."

build/pkgs/ecl/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cd src
22

33
if [ "$UNAME" = "CYGWIN" ]; then
44
# Some of ECL's sources rely on GNU-isms that are allowed by default on
5-
# most glibcs, but not in newlib; https://trac.sagemath.org/ticket/25057
5+
# most glibcs, but not in newlib; https://github.com/sagemath/sage/issues/25057
66
CFLAGS="$CFLAGS -D_GNU_SOURCE"
77
CXXFLAGS="$CXXFLAGS -D_GNU_SOURCE"
88
fi

build/pkgs/elliptic_curves/spkg-install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def install_ellcurves():
6060
ellcurves_root = os.path.join(SAGE_SHARE, 'ellcurves')
6161

6262
# Remove previous installs (possibly with bad permissions, see
63-
# https://trac.sagemath.org/ticket/21641)
63+
# https://github.com/sagemath/sage/issues/21641)
6464
import shutil
6565
try:
6666
shutil.rmtree(ellcurves_root)

build/pkgs/fflas_ffpack/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "$SAGE_FAT_BINARY" = yes ]; then
2424
fi
2525

2626
# Need to use 'bash' for configure, see
27-
# https://trac.sagemath.org/ticket/23451
27+
# https://github.com/sagemath/sage/issues/23451
2828
if [ -z "$CONFIG_SHELL" ]; then
2929
export CONFIG_SHELL=`command -v bash`
3030
fi

build/pkgs/gap/spkg-install.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ sdh_install pkg/GAPDoc-* pkg/primgrp-* pkg/SmallGrp-* pkg/transgrp "$GAP_ROOT"/p
5353
# typically "expected" to be loaded: These are the default packages that are
5454
# autoloaded at GAP startup (via the PackagesToLoad UserPreference) with an
5555
# out-of-the-box GAP installation; see
56-
# https://trac.sagemath.org/ticket/22626#comment:393 for discussion on this
56+
# https://github.com/sagemath/sage/issues/22626#comment:393 for discussion on this
5757
#
5858
# Also include atlasrep which is a dependency of tomlib
5959
sdh_install \
@@ -96,7 +96,7 @@ done
9696
# be going away. This breaks the build toolchain for some compiled GAP
9797
# packages. We need to replace these paths with the final GAP_ROOT path. The
9898
# below will work so long as neither of these paths contain '|', and if they do
99-
# then god help you. https://trac.sagemath.org/ticket/27218
99+
# then god help you. https://github.com/sagemath/sage/issues/27218
100100
sed -i -e "s|$GAP_BUILD_ROOT|$GAP_ROOT|g" \
101101
"$SAGE_DESTDIR$SAGE_BIN/gac" "$DESTDIR_GAP_ROOT/sysinfo.gap" \
102102
"$DESTDIR_GAP_ROOT/bin/gap.sh" "$DESTDIR_GAP_ROOT/doc/make_doc" || \

build/pkgs/gc/spkg-install.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ cd src
33
GC_CONFIGURE="--enable-large-config"
44

55
if [ "$UNAME" = "CYGWIN" ]; then
6-
# See https://trac.sagemath.org/ticket/22694
6+
# See https://github.com/sagemath/sage/issues/22694
77
GC_CONFIGURE="$GC_CONFIGURE --enable-threads=posix --enable-handle-fork --enable-shared --disable-static"
8-
# Force use of mmap on Cygwin https://trac.sagemath.org/ticket/23973
8+
# Force use of mmap on Cygwin https://github.com/sagemath/sage/issues/23973
99
export CFLAGS="$CFLAGS -DUSE_MMAP -DUSE_MUNMAP"
1010
fi
1111

build/pkgs/gcc/dependencies

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ NOTE: all dependencies of GCC must be order-only dependencies
55
(appearing after the | symbol). This is to prevent rebuilds of GCC
66
even if the dependencies are updated. There is logic in the top-level
77
configure file to ensure that GCC is rebuilt anyway if required. See
8-
https://trac.sagemath.org/ticket/24907
8+
https://github.com/sagemath/sage/issues/24907
99
------------------------------------------------------------------------

build/pkgs/gcc/spkg-configure.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
7878
SAGE_MUST_INSTALL_GCC([gcc is already installed in SAGE_LOCAL])
7979
8080
# Check whether it actually works...
81-
# See https://trac.sagemath.org/ticket/24599
81+
# See https://github.com/sagemath/sage/issues/24599
8282
SAGE_CHECK_BROKEN_GCC()
8383
if test x$SAGE_BROKEN_GCC = xyes; then
8484
# Prentend that GCC is not installed.
@@ -167,7 +167,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
167167
],
168168
[1[[3-9]].*], [
169169
# Install our own GCC if the system-provided one is newer than 12.x.
170-
# See https://trac.sagemath.org/ticket/29456
170+
# See https://github.com/sagemath/sage/issues/29456
171171
SAGE_SHOULD_INSTALL_GCC([$CXX is g++ version $GXX_VERSION, which is too recent for this version of Sage])
172172
])
173173
fi

build/pkgs/gdb/distros/conda.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Disabled for now because of https://trac.sagemath.org/ticket/30845#comment:269
1+
# Disabled for now because of https://github.com/sagemath/sage/issues/30845#comment:269
22
# gdb

build/pkgs/gfan/patches/fix-int64-for-32bit-archs.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ On 32-bit architectures, longs are only 32 bits. The resulting overflow was
33
causing an infinite loop in the 0602ResultantFanProjection test.
44

55
References:
6-
https://trac.sagemath.org/ticket/32088
6+
https://github.com/sagemath/sage/issues/32088
77
https://salsa.debian.org/math-team/gfan/-/commit/acaaa70
88
https://github.com/void-linux/void-packages/pull/34182
99

build/pkgs/gfan/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd src
88
find src -type f -print0 | xargs -0 sed -i.bak "s/log2/logger2/g"
99

1010
# To let testsuite/0009RenderStairCase pass on 32bit machines
11-
# See https://trac.sagemath.org/ticket/32088
11+
# See https://github.com/sagemath/sage/issues/32088
1212
case "$($CC -dumpmachine)" in
1313
i[3456]86*)
1414
CXXFLAGS+=" -ffloat-store"

build/pkgs/gfortran/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ SAGE_SPKG_CONFIGURE([gfortran], [
8888
],
8989
[1[[3-9]].*], [
9090
# Install our own gfortran if the system-provided one is newer than 12.x.
91-
# See https://trac.sagemath.org/ticket/29456, https://trac.sagemath.org/ticket/31838
91+
# See https://github.com/sagemath/sage/issues/29456, https://github.com/sagemath/sage/issues/31838
9292
SAGE_MUST_INSTALL_GFORTRAN([$FC is version $GFORTRAN_VERSION, which is too recent for this version of Sage])
9393
])
9494
])

build/pkgs/giac/patches/cygwin-icas.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Disable threaded eval function on Cygwin since it's currently
22
buggy, and not strictly needed in the first place since we don't
3-
build giac with FLTK support; see https://trac.sagemath.org/ticket/27385
3+
build giac with FLTK support; see https://github.com/sagemath/sage/issues/27385
44
--- a/src/icas.cc 2018-12-22 17:08:24.000000000 +0100
55
+++ b/src/icas.cc 2019-03-06 14:38:19.814030200 +0100
66
@@ -160,7 +160,7 @@

build/pkgs/giac/patches/isnan-conflict.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Just always use std::isnan and std::isinf so there is no risk of
22
conflicting with the libc math.h equivalents thereof.
33

4-
See https://trac.sagemath.org/ticket/27263
4+
See https://github.com/sagemath/sage/issues/27263
55
--- a/src/global.cc 2019-02-12 15:49:03.082594000 +0000
66
+++ b/src/global.cc 2019-02-12 15:49:43.438594000 +0000
77
@@ -4139,11 +4139,7 @@

build/pkgs/giac/patches/pari_2_11.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Change test output for PARI 2.11
22

3-
See https://trac.sagemath.org/ticket/25567
3+
See https://github.com/sagemath/sage/issues/25567
44
and https://xcas.univ-grenoble-alpes.fr/forum/viewtopic.php?f=4&t=2102
55

66
diff -ru a/check/TP11-sol.cas.out1 b/check/TP11-sol.cas.out1

build/pkgs/glpk/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sdh_configure --with-gmp --disable-static
2626
sdh_make
2727

2828
# Remove old libraries to make sure we can downgrade it if needed.
29-
# See https://trac.sagemath.org/ticket/23596#comment:4 and later.
29+
# See https://github.com/sagemath/sage/issues/23596#comment:4 and later.
3030
rm -f "$SAGE_LOCAL"/lib/libglpk.*
3131

3232
sdh_make_install

build/pkgs/glucose/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sdh_make
88
sdh_install glucose ${SAGE_LOCAL}/bin/
99
cd ..
1010

11-
# Possible license issue, see warning below and discussion on https://trac.sagemath.org/ticket/26361
11+
# Possible license issue, see warning below and discussion on https://github.com/sagemath/sage/issues/26361
1212
cd parallel
1313
sdh_make
1414
sdh_install glucose-syrup ${SAGE_LOCAL}/bin/
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
jupyterlab ~= 3.3
2-
# See https://trac.sagemath.org/ticket/33607
2+
# See https://github.com/sagemath/sage/issues/33607
33
jupyterlab-server < 2.11

build/pkgs/libgd/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ "$UNAME" = "CYGWIN" ]; then
66
# Compiling with vpx support creates a broken library in some cases
77
# because the vpx package itself is broken on some older Cygwin versions;
88
# we don't need this feature so safer to just disable
9-
# https://trac.sagemath.org/ticket/27970
9+
# https://github.com/sagemath/sage/issues/27970
1010
LIBGD_CONFIGURE="--without-vpx $LIBGD_CONFIGURE"
1111
fi
1212
if [ -n "$SAGE_FREETYPE_PREFIX" ]; then

build/pkgs/linbox/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ LINBOX_CONFIGURE="--without-fplll $LINBOX_CONFIGURE"
2626
# We disable openmp because of build failures, see
2727
# https://github.com/sagemath/sage/issues/17635#comment:67
2828
# We disable ocl because of build failures, see
29-
# https://trac.sagemath.org/ticket/32076
29+
# https://github.com/sagemath/sage/issues/32076
3030
sdh_configure --with-default="$SAGE_LOCAL" \
3131
--disable-static --disable-openmp --without-ocl \
3232
$LINBOX_CONFIGURE

0 commit comments

Comments
 (0)