diff options
author | isaackwy <isaacyu@protonmail.com> | 2024-08-30 19:10:09 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-08-31 19:01:13 +0700 |
commit | 1ce23f0476d5f639c6809b8d8b73cfd265f2443b (patch) | |
tree | a16aaddb6b0eaa97205ccd5a60d7b6f97df1e254 | |
parent | 8fbf6531526be4a645e632d3002410a156a5d4a3 (diff) |
development/spyder: Add further commenting
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | development/spyder/spyder.SlackBuild | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/development/spyder/spyder.SlackBuild b/development/spyder/spyder.SlackBuild index 22c508e11b35..aee63eb46730 100644 --- a/development/spyder/spyder.SlackBuild +++ b/development/spyder/spyder.SlackBuild @@ -48,20 +48,6 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - set -e rm -rf $PKG @@ -87,7 +73,7 @@ for FILE in $(find . -type f \( ! -iname "*\.*o" ! -iname "*\.png" \) \ done # Allow SlackBuilds python libraries versions -# Note that while python3-spyder-kernels 3.0.0 can still be built and installed, it causes Spyder to crash +# Note that while python3-spyder-kernels 3.0.0 can still be built and installed, it causes Spyder 5.4.0 to crash sed 's|IPYTHON_REQVER = ">=7.31.1;<8.0.0"|IPYTHON_REQVER = ">=7.31.1"|' -i spyder/dependencies.py sed "s|JEDI_REQVER = '>=0.17.2;<0.19.0'|JEDI_REQVER = '>=0.17.2'|" -i spyder/dependencies.py sed "s|PYLINT_REQVER = '>=2.5.0;<3.0'|PYLINT_REQVER = '>=2.5.0'|" -i spyder/dependencies.py |