Skip to content

Commit 6be8803

Browse files
author
Release Manager
committed
sagemathgh-37186: Update debian.txt for various Python packages <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes sagemath#1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> As reported by @EmmanuelCharpentier in https://groups.google.com/g/sage- support/c/21iZLkesyHk Also fixes sagemath#35259 <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes sagemath#12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - sagemath#12345: short description why this is a dependency - sagemath#34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: sagemath#37186 Reported by: Matthias Köppe Reviewer(s): Dima Pasechnik
2 parents b9d7bd7 + 6eab2a1 commit 6be8803

File tree

14 files changed

+24
-15
lines changed

14 files changed

+24
-15
lines changed

build/bin/sage-spkg-info

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,17 @@ else
155155
echo "If the system package is installed, $(code ./configure) will check if it can be used."
156156
fi
157157
else
158-
echo "However, these system packages will not be used for building Sage"
159-
echo "because $(code spkg-configure.m4) has not been written for this package;"
160-
echo "see $(issue 27330)"
158+
case $PKG_BASE in
159+
_*)
160+
# Suppress the message, as it makes no sense for these special packages
161+
# (_bootstrap, _sagemath)
162+
;;
163+
*)
164+
echo "However, these system packages will not be used for building Sage"
165+
echo "because $(code spkg-configure.m4) has not been written for this package;"
166+
echo "see $(issue 27330) for more information."
167+
;;
168+
esac
161169
fi
162170
fi
163171
echo

build/pkgs/_sagemath/SPKG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ including documentation and Jupyter.
1212
Downstream Contact
1313
------------------
1414

15-
See :trac:`Trac wiki page Distribution <wiki/Distribution>`
15+
See `wiki page Distribution <https://github.com/sagemath/sage/wiki/Distribution>`_
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
sagemath
2-
sagemath-doc-en
2+
sagemath-doc
33
sagemath-jupyter
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
beautifulsoup4
1+
python3-bs4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cython
1+
cython3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-fastjsonschema
1+
python3-fastjsonschema
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-hatch-fancy-pypi-readme
1+
python3-hatch-fancy-pypi-readme
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hatch-vcs
1+
python3-hatch-vcs
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python3-importlib-resources
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ipykernel
1+
python3-ipykernel

0 commit comments

Comments
 (0)