Skip to content

Commit da1d2c0

Browse files
author
Matthias Koeppe
committed
git grep -l 'Trac #' | xargs sed -i.bak 's/Trac #/Issue #/g'
1 parent fb9291c commit da1d2c0

Some content is hidden

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

46 files changed

+77
-77
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ micro_release:
201201

202202
# Leaves everything that is needed to make the next "make" fast but removes
203203
# all the cheap build artifacts that can be quickly regenerated.
204-
# Trac #30960: We no longer uninstall sagelib.
204+
# Issue #30960: We no longer uninstall sagelib.
205205
fast-rebuild-clean: misc-clean
206206
rm -rf upstream/
207207
rm -rf build/pkgs/sagelib/src/build/temp.*

build/bin/sage-bootstrap-python

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ SAGE_ORIG_PATH=${NEW_PATH%%':'}
2727
# So it needs to find a python that has the urllib module.
2828
# For example, on Debian buster, the python3-minimal package does NOT provide it.
2929
#
30-
# Also, Trac #20023 removed the vendored argparse library from sage_bootstrap,
30+
# Also, Issue #20023 removed the vendored argparse library from sage_bootstrap,
3131
# so we test that python is new enough (>= 2.7) to run it.
3232
#
3333
# See https://github.com/sagemath/sage/issues/29090
3434

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

38-
# Trac #30177: Also check for hashlib.sha1 to guard against broken python2
38+
# Issue #30177: Also check for hashlib.sha1 to guard against broken python2
3939
# from old homebrew installations. Also check whether the current directory
4040
# is accessible by this python; this is to guard on WSL against Pythons
4141
# installed somewhere else in Windows.
4242

43-
# Trac #29285: Do not accept pythons that manipulate PATH, such as
43+
# Issue #29285: Do not accept pythons that manipulate PATH, such as
4444
# the shims provided by pyenv.
4545

46-
# Trac #30008: Make it work even if the environment tries to sabotage UTF-8
46+
# Issue #30008: Make it work even if the environment tries to sabotage UTF-8
4747
# operation in Python 3.0.x-3.6.x by setting LC_ALL=C or similar.
4848

4949
if [ "$LC_ALL" = "C" -o "$LANG" = "C" -o "$LC_CTYPE" = "C" ]; then
@@ -54,7 +54,7 @@ if [ "$LC_ALL" = "C" -o "$LANG" = "C" -o "$LC_CTYPE" = "C" ]; then
5454
fi
5555

5656
PYTHONS="python python3 python3.12 python3.11 python3.10 python3.9 python3.8 python3.7 python2.7 python3.6 python2"
57-
# Trac #32405: Prefer a Python that provides ssl with SNI, which allows developers
57+
# Issue #32405: Prefer a Python that provides ssl with SNI, which allows developers
5858
# to download from upstream URLs (configure --enable-download-from-upstream-url),
5959
# in particular from PyPI, which requires SNI.
6060
for PY in $PYTHONS; do

build/bin/sage-build-env

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ if [ "x$SAGE_BUILD_ENV_SOURCED" = "x" ]; then
177177
fi
178178
fi
179179

180-
# Trac #31335: Avoid include paths leaking in from homebrew python3's distutils.cfg
180+
# Issue #31335: Avoid include paths leaking in from homebrew python3's distutils.cfg
181181
# by using setuptools' own copy of distutils instead of relying on stdlib distutils
182-
# Trac #32944: Only do this on homebrew.
182+
# Issue #32944: Only do this on homebrew.
183183
if [ -n "$HOMEBREW" ]; then
184184
export SETUPTOOLS_USE_DISTUTILS=local
185185
fi

build/bin/sage-dist-helpers

+4-4
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ sdh_make_install() {
211211
}
212212

213213
sdh_setup_bdist_wheel() {
214-
# Trac #32046: Most uses of this function can be replaced by sdh_pip_install
214+
# Issue #32046: Most uses of this function can be replaced by sdh_pip_install
215215
mkdir -p dist
216216
rm -f dist/*.whl
217217
BDIST_DIR="$(mktemp -d)"
@@ -364,14 +364,14 @@ sdh_store_and_pip_install_wheel() {
364364
echo "sdh_actually_pip_install_wheel $distname $pip_options -r \"\$SAGE_SPKG_SCRIPTS/\$PKG_BASE/spkg-requirements.txt\"" >> "$script_dir"/spkg-pipinst
365365
else
366366
if [ -n "$SAGE_DESTDIR" ]; then
367-
# Trac #29585: Do the SAGE_DESTDIR staging of the wheel installation
367+
# Issue #29585: Do the SAGE_DESTDIR staging of the wheel installation
368368
# ONLY if SAGE_SUDO is set (in that case, we still do the staging so
369369
# that we do not invoke pip as root).
370370
# --no-warn-script-location: Suppress a warning caused by --root
371371
local sudo=""
372372
local root="--root=$SAGE_DESTDIR --no-warn-script-location"
373373
elif [ -n "$SAGE_SUDO" ]; then
374-
# Trac #32361: For script packages, we do have to invoke pip as root.
374+
# Issue #32361: For script packages, we do have to invoke pip as root.
375375
local sudo="$SAGE_SUDO"
376376
local root=""
377377
else
@@ -387,7 +387,7 @@ sdh_store_and_pip_install_wheel() {
387387
sdh_actually_pip_install_wheel() {
388388
distname=$1
389389
shift
390-
# Trac #32659: pip no longer reinstalls local wheels if the version is the same.
390+
# Issue #32659: pip no longer reinstalls local wheels if the version is the same.
391391
# Because neither (1) applying patches nor (2) local changes (in the case
392392
# of sage-conf, sage-setup, etc.) bump the version number, we need to
393393
# override this behavior. The pip install option --force-reinstall does too

build/bin/sage-pip-install

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ PIP=pip3
3030
# running pip. This is implemented in the Python script sage-flock
3131
LOCK="$SAGE_VENV/var/lock/$PIP.lock"
3232

33-
# Trac #33155: Pythons installed using the python.org macOS installers
33+
# Issue #33155: Pythons installed using the python.org macOS installers
3434
# for Python < 3.10 identify macOS Big Sur and newer as "10.16", causing
3535
# pip to refuse to install wheels tagged macosx_11_0_x86_64
3636
export SYSTEM_VERSION_COMPAT=0

build/bin/sage-spkg

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#*****************************************************************************
6262

6363
# Avoid surprises with character ranges [a-z] in regular expressions
64-
# See Trac #15791; some locales can produce different results for
64+
# See Issue #15791; some locales can produce different results for
6565
# character ranges; using C.UTF-8 to ensure UTF-8 default encoding in Python
6666
# introduces extra complications, see #30053, so we don't do it, but
6767
# assume we are on Python3.x, for x at least 7.
@@ -162,7 +162,7 @@ write_to_tty()
162162
}
163163

164164
# Handle -n, -t, -q options for recursive make
165-
# See Trac #12016.
165+
# See Issue #12016.
166166
if echo "$MAKE $MAKEFLAGS -$MAKEFLAGS" |grep '[ ]-[A-Za-z]*[qnt]' >/dev/null; then
167167
if echo "$MAKE $MAKEFLAGS -$MAKEFLAGS" |grep '[ ]-[A-Za-z]*q' >/dev/null; then
168168
# Pretend the target is *not* up-to-date
@@ -436,7 +436,7 @@ for dir in "$SAGE_SPKG_INST" "$SAGE_SPKG_SCRIPTS" "$SAGE_BUILD_DIR"; do
436436
fi
437437
done
438438

439-
# Trac #5852: check write permissions
439+
# Issue #5852: check write permissions
440440
if [ ! -w "$SAGE_BUILD_DIR" ]; then
441441
error_msg "Error: no write access to build directory $SAGE_BUILD_DIR"
442442
exit 1

build/make/Makefile.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ else
205205
AM_V_at =
206206
endif
207207

208-
# Trac #33125: Handle make options -n, -t, -q
208+
# Issue #33125: Handle make options -n, -t, -q
209209
ifeq ($(strip $(foreach flag,n t q,$(findstring $(flag),$(filter-out --%,$(MAKEFLAGS))))),)
210210
PLUS = +
211211
else
@@ -326,7 +326,7 @@ all-toolchain: base-toolchain
326326
# typical Python packages from source. Wheel packages only need pip.
327327
PYTHON_TOOLCHAIN = setuptools pip setuptools_scm wheel flit_core hatchling
328328

329-
# Trac #32056: Avoid installed setuptools leaking into the build of python3 by uninstalling it.
329+
# Issue #32056: Avoid installed setuptools leaking into the build of python3 by uninstalling it.
330330
# It will have to be reinstalled anyway because of its dependency on $(PYTHON).
331331
python3-SAGE_LOCAL-no-deps: setuptools-clean
332332
python3-SAGE_VENV-no-deps: setuptools-clean
@@ -582,7 +582,7 @@ pkg_deps = \
582582
# For packages listed in $(TOOLCHAIN_DEPS) we also pass --keep-existing to
583583
# sage-spkg, and --keep-files to sage-spkg-uninstall since those packages can
584584
# have a recursive self-dependency, and should not be deleted while upgrading.
585-
# See Trac #25857
585+
# See Issue #25857
586586

587587
# Positional arguments:
588588
# $(1): package name

build/make/install

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343

4444
# Make the special target _clean-broken-gcc before trying to build any other
4545
# packages. This is necessary if configure detected a broken GCC installed
46-
# in Sage; Trac #25011
46+
# in Sage; Issue #25011
4747
$MAKE _clean-broken-gcc
4848

4949
# If "make" doesn't understand the -q option (although we require

build/pkgs/_prereq/distros/opensuse.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ gcc-c++
2323
ca-certificates
2424
# gunzip needed for ppl spkg
2525
gzip
26-
# Trac #32368
26+
# Issue #32368
2727
findutils
2828
diffutils

build/pkgs/brial/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SAGE_SPKG_CONFIGURE([brial], [
2-
dnl Trac #31624: Avoid C++ ABI issues
2+
dnl Issue #31624: Avoid C++ ABI issues
33
SAGE_SPKG_DEPCHECK([gcc boost_cropped m4ri], [
44
# If we're using the system m4ri and boost, ensure that we can
55
# compile and run an executable linked against both libbrial and

build/pkgs/ccache/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cd src
22

3-
# Use newer version of config.guess and config.sub (see Trac #23710)
3+
# Use newer version of config.guess and config.sub (see Issue #23710)
44
cp "$SAGE_ROOT"/config/config.* .
55

66
export CPPFLAGS="-I$SAGE_LOCAL/include $CPPFLAGS"

build/pkgs/ecl/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ echo "configure scripts and/or makefiles might override these later"
1919
echo ""
2020

2121

22-
# Use newer version of config.guess and config.sub (see Trac #19732)
22+
# Use newer version of config.guess and config.sub (see Issue #19732)
2323
cp "$SAGE_ROOT"/config/config.* src
2424

2525
if [ x"$SAGE_SPKG_INSTALL_DOCS" != xyes ] ; then

build/pkgs/ecm/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cd src/
22

3-
# Use newer version of config.guess and config.sub (see Trac #19724)
3+
# Use newer version of config.guess and config.sub (see Issue #19724)
44
cp "$SAGE_ROOT"/config/config.* .
55

66
###############################################################################

build/pkgs/fplll/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SAGE_SPKG_CONFIGURE([fplll], [
55
dnl a system that ships fplll without fplll.pc file, falling
66
dnl back to a manual header/library search is pointless.
77
dnl
8-
dnl Trac #31025: FPLLL/FPyLLL make no guarantee regarding compatibility
8+
dnl Issue #31025: FPLLL/FPyLLL make no guarantee regarding compatibility
99
dnl other than "whatever versions were released at the same time should work together"
1010
PKG_CHECK_MODULES([FPLLL],
1111
[fplll >= 5.4.5 fplll <= 5.4.5],

build/pkgs/fplll/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ "x$SAGE_DEBUG" = "xyes" ]; then
1111
fi
1212

1313
if [ -x "$SAGE_LOCAL"/bin/gcc ]; then
14-
# Trac #31624: Avoid C++ ABI issues
14+
# Issue #31624: Avoid C++ ABI issues
1515
CONFIGUREFLAGS="$CONFIGUREFLAGS --without-qd"
1616
fi
1717

build/pkgs/fricas/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cd src
22

3-
# Use newer version of config.guess and config.sub (see Trac #23847)
3+
# Use newer version of config.guess and config.sub (see Issue #23847)
44
cp "$SAGE_ROOT"/config/config.* config
55

66
sdh_configure --with-lisp=ecl --enable-case-insensitive-file-system-check=no

build/pkgs/gcc/set-library-path

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- shell-script -*- to be sourced
22

3-
# Trac #27907: Find location of crti.o, add it to LIBRARY_PATH.
3+
# Issue #27907: Find location of crti.o, add it to LIBRARY_PATH.
44
# We add it to the end because we want $SAGE_LOCAL/lib to take precedence
55
# over system directories.
66
if [ -n "$SAGE_CRTI_DIR" ]; then

build/pkgs/gcc/spkg-configure.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
159159
160160
if test $IS_REALLY_GCC = yes ; then
161161
# Add the .0 because Debian/Ubuntu gives version numbers like
162-
# 4.6 instead of 4.6.4 (Trac #18885)
162+
# 4.6 instead of 4.6.4 (Issue #18885)
163163
AS_CASE(["$GXX_VERSION.0"],
164164
[[[0-7]].*|8.[[0-3]].*], [
165165
# Install our own GCC if the system-provided one is older than gcc 8.4
@@ -247,7 +247,7 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
247247
248248
249249
], , , [
250-
# Trac #27907: Find location of crti.o from the system CC, in case we build our own gcc
250+
# Issue #27907: Find location of crti.o from the system CC, in case we build our own gcc
251251
AC_MSG_CHECKING([for the location of crti.o])
252252
CRTI=`$CC -print-file-name=crti.o 2>/dev/null || true`
253253
if test -n "$CRTI" ; then

build/pkgs/gf2x/spkg-install.in

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

3-
# Use newer version of config.guess and config.sub (see Trac #19727)
3+
# Use newer version of config.guess and config.sub (see Issue #19727)
44
cp "$SAGE_ROOT"/config/config.* config
55

66
if [ "$SAGE_DEBUG" = "yes" ]; then
77
echo "Building a debug version of gf2x."
88
elif $CC --version 2>/dev/null |grep 'gcc.* 5[.][12]' >/dev/null; then
9-
echo "Using compiler flags to work around problems with GCC 5.1/5.2 (Trac #18580,#18978)"
9+
echo "Using compiler flags to work around problems with GCC 5.1/5.2 (Issue #18580,#18978)"
1010
export CFLAGS="-fno-forward-propagate $CFLAGS"
1111
fi
1212

build/pkgs/gfortran/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ SAGE_SPKG_CONFIGURE([gfortran], [
8080
GFORTRAN_VERSION="`$FC -dumpversion`"
8181
AC_MSG_RESULT([$GFORTRAN_VERSION])
8282
# Add the .0 because Debian/Ubuntu gives version numbers like
83-
# 4.6 instead of 4.6.4 (Trac #18885)
83+
# 4.6 instead of 4.6.4 (Issue #18885)
8484
AS_CASE(["$GFORTRAN_VERSION.0"],
8585
[[[0-3]].*|4.[[0-7]].*], [
8686
# Install our own gfortran if the system-provided one is older than gcc-4.8.

build/pkgs/libffi/patches/libffi-3.2.1-disable-multi-os-directory.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Trac #27109: Patch based on the upstream fix at
1+
Issue #27109: Patch based on the upstream fix at
22
https://github.com/libffi/libffi/commit/877ea9bf9ac2c98cb858c12f5a6aeeec13cf978f#diff-67e997bcfdac55191033d57a16d1408a
33

44
Ensure that libraries are installed to $SAGE_LOCAL/lib and not

build/pkgs/libffi/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Trac #27109: Don't append $(gcc -print-multi-os-directory) to the install
1+
# Issue #27109: Don't append $(gcc -print-multi-os-directory) to the install
22
# path for libraries
33
LIBFFI_CONFIGURE="--disable-multi-os-directory $LIBFFI_CONFIGURE"
44

build/pkgs/libgd/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SAGE_SPKG_CONFIGURE([libgd], [
2-
dnl Trac #31624: Avoid C++ ABI issues
2+
dnl Issue #31624: Avoid C++ ABI issues
33
SAGE_SPKG_DEPCHECK([gcc libpng freetype], [
44
PKG_CHECK_MODULES([LIBGD], [gdlib >= 2.1], [], [sage_spkg_install_libgd=yes])
55
])
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Trac #33642: For unknown reasons, without the version constraint, conda installs only 3.3.2
1+
# Issue #33642: For unknown reasons, without the version constraint, conda installs only 3.3.2
22
matplotlib>=3.5.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Trac #33642: Set lower bound for use of matplotlib color maps introduced in #33491,
1+
# Issue #33642: Set lower bound for use of matplotlib color maps introduced in #33491,
22
# and to suppress deprecation warnings (https://github.com/matplotlib/matplotlib/pull/21073)
33
matplotlib >=3.5.1

build/pkgs/maxima/SPKG.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,21 @@ these patches are either in the patch files themselves or below.
4949

5050
- 0001-taylor2-Avoid-blowing-the-stack-when-diff-expand-isn.patch:
5151
Fix for Maxima bug #2520 (abs_integrate fails on abs(sin(x)) and
52-
abs(cos(x))). Introduced in Trac #13364 (Upgrade Maxima to
52+
abs(cos(x))). Introduced in Issue #13364 (Upgrade Maxima to
5353
5.29.1).
5454

5555
- build-fasl.patch: Build a fasl library for ecl in addition to an
56-
executable program. Introduced in Trac #16178 (Build maxima fasl
56+
executable program. Introduced in Issue #16178 (Build maxima fasl
5757
without asdf).
5858

5959
- infodir.patch: Correct the path to the Info directory. Introduced
60-
in Trac #11348 (maxima test fails when install tree is moved).
60+
in Issue #11348 (maxima test fails when install tree is moved).
6161

6262
- matrixexp.patch: Fix matrixexp(matrix([%i*%pi])), which broke after
63-
Maxima 5.29.1. Introduced in Trac #13973.
63+
Maxima 5.29.1. Introduced in Issue #13973.
6464

6565
- maxima.system.patch: Set ``c::*compile-in-constants*`` to t.
66-
Introduced in Trac #11966 (OS X 10.7 Lion: Maxima fails to build).
66+
Introduced in Issue #11966 (OS X 10.7 Lion: Maxima fails to build).
6767

6868
- undoing_true_false_printing_patch.patch: Revert an upstream change
6969
causing '?' to be printed around some words. Introduced in Trac

build/pkgs/maxima/spkg-install.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ exec </dev/null
77
# We don't have to set up CFLAGS etc., since these are taken from ECL
88
# (i.e., ECL uses the ones that were specified when ECL was built).
99
# We unset them to avoid passing another copy to the linker,
10-
# which is overquoted in some cases, see Trac #29606.
10+
# which is overquoted in some cases, see Issue #29606.
1111
unset CFLAGS
1212
unset LDFLAGS
1313

14-
# workaround for configure braindamage, see Trac #15546
14+
# workaround for configure braindamage, see Issue #15546
1515
export EMACS=no
1616

1717

1818
cd src/
1919

20-
# Use newer version of config.guess and config.sub (see Trac #19734)
20+
# Use newer version of config.guess and config.sub (see Issue #19734)
2121
cp "$SAGE_ROOT"/config/config.* .
2222

2323
# Patch out bad 'multiple targets' rule

build/pkgs/mpfi/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export CFLAGS="-O2 -g -fPIC $CFLAGS"
22

33
cd src
44

5-
# Use newer version of config.guess and config.sub (see Trac #19716)
5+
# Use newer version of config.guess and config.sub (see Issue #19716)
66
cp "$SAGE_ROOT"/config/config.* .
77

88
sdh_configure $SAGE_CONFIGURE_MPFR $SAGE_CONFIGURE_GMP

build/pkgs/openssl/spkg-configure.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SAGE_SPKG_CONFIGURE([openssl], [
22
AX_CHECK_OPENSSL([
33
AC_MSG_CHECKING([whether OpenSSL >= 1.1.1, as required by PEP 644, and provides required APIs])
44
AC_COMPILE_IFELSE(
5-
dnl Trac #32580: Need OpenSSL >= 1.1.1 for PEP 644
5+
dnl Issue #32580: Need OpenSSL >= 1.1.1 for PEP 644
66
dnl From https://www.openssl.org/docs/man3.0/man3/OPENSSL_VERSION_NUMBER.html:
77
dnl If M is the number from OPENSSL_VERSION_MAJOR
88
dnl NN is the number from OPENSSL_VERSION_MINOR
@@ -13,7 +13,7 @@ SAGE_SPKG_CONFIGURE([openssl], [
1313
dnl S is "status" (f = release)
1414
dnl -> OPENSSL_VERSION_NUMBER is 0xMNNFFPPSL
1515
dnl
16-
dnl Trac #34273: Test program from ​https://github.com/python/cpython/blob/3.10/configure.ac#L5845
16+
dnl Issue #34273: Test program from ​https://github.com/python/cpython/blob/3.10/configure.ac#L5845
1717
[AC_LANG_PROGRAM([[
1818
#include <openssl/opensslv.h>
1919
#include <openssl/evp.h>

build/pkgs/openssl/spkg-install.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ target=$($CC -dumpmachine 2> /dev/null)
1212
echo
1313
echo "Configuring openssl for target reported by $CC -dumpmachine: $target"
1414
case "$target" in
15-
# Trac #31538: On 64 bit kernels running a 32 bit system, use the target of
15+
# Issue #31538: On 64 bit kernels running a 32 bit system, use the target of
1616
# the configured compiler
1717
i?86-*linux*)
1818
extra_config_args="linux-x86"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packaging >=21.0
2-
# Trac #30975: packaging 20.5 is known to work but we have to silence "DeprecationWarning: Creating a LegacyVersion"
2+
# Issue #30975: packaging 20.5 is known to work but we have to silence "DeprecationWarning: Creating a LegacyVersion"
33
# Sphinx needs >= 21

0 commit comments

Comments
 (0)