summaryrefslogtreecommitdiff
path: root/academic/sage/README
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-11-27 15:22:30 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-11-28 05:43:35 +0700
commit2a406c5075d9310a32d63adffa6b784e4c348019 (patch)
treef9e56e88ff54b73bf3a0de1c34d47363b0022d3e /academic/sage/README
parent1085bc270a4f6aac95daec2791aa372370136632 (diff)
downloadslackbuilds-2a406c5075d9310a32d63adffa6b784e4c348019.tar.gz
academic/sage: Downgraded to 7.2.
Built in python was compiled against UCS-4. Slackware's readline is not linked to ncurses, causing problems similar to here: https://bugs.archlinux.org/task/39731. We will try to bump sage in the next Slackware release when everything is fixed, including Python that is compiled against UCS-4. Adding a note for now. Thanks to Mehran Hosseini for the bug report. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/sage/README')
-rw-r--r--academic/sage/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/academic/sage/README b/academic/sage/README
index 95e4799699..e0c4bc33c1 100644
--- a/academic/sage/README
+++ b/academic/sage/README
@@ -14,3 +14,14 @@ redefine $TMP and/or $OUTPUT.
See README.BUILDOPTS for additional (important) information about
build options and such.
+
+NOTE:
+Future SAGE (7.3+) requires some changes in Slackware's core packages:
+- readline must be linked to ncurses
+ Get readline's SlackBuild script, change this line
+ make $NUMJOBS static shared || make static shared || exit 1
+ into
+ make $NUMJOBS static shared SHLIB_LIBS=-lncurses || make static
+ shared SHLIB_LIBS=-lncurses || exit 1
+ and rebuilt readline.
+- Python rebuilt against UCS-4 (enabled by default in next Slackware)