diff options
-rw-r--r-- | system/plan9port/README | 18 | ||||
-rw-r--r-- | system/plan9port/plan9port.SlackBuild | 13 |
2 files changed, 13 insertions, 18 deletions
diff --git a/system/plan9port/README b/system/plan9port/README index 62a5c143bc..2029535263 100644 --- a/system/plan9port/README +++ b/system/plan9port/README @@ -10,20 +10,14 @@ want to use the mirrored sources: https://github.com/9fans/plan9port/archive/master.zip There may be differences in the checksum as it is the development branch. - Notes on using rc with uxterm from Eric Lindblad, -Email (in rc): Geirfugl^ApS^@^yahoo.com - Tested with Slackware 14.0 with Danish and English keyboards settings. -Ctrl-i tab Ctrl-Bksp +Ctrl-i tab + +Ctrl-u delete line back to prompt -Ctrl-u delete line - back to prompt or open Menu - and uncheck +Ctrl-w delete word to left of cursor -Ctrl-w delete word to BackArrow Key (BS/Del) - left of cursor then Bksp will - work independently - but Ctrl-Bksp will - not work +Ctrl-Bksp backspace, or open Menu and uncheck BackArrow Key (BS/Del) + then Bksp will work independently but Ctrl-Bksp will not work diff --git a/system/plan9port/plan9port.SlackBuild b/system/plan9port/plan9port.SlackBuild index d2f59e2b2e..4038cf29ff 100644 --- a/system/plan9port/plan9port.SlackBuild +++ b/system/plan9port/plan9port.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for plan9port -# Copyright (c) 2012-2017 Ruben Schuller +# Copyright (c) 2012-2019 Ruben Schuller # # Copyright (c) 2008-2010, Antonio Hernández Blas <hba.nihilismus@gmail.com> # All rights reserved. @@ -26,9 +26,10 @@ # 2012-10-23: added some changes to reflect the usage of nightly tarballs PRGNAM=plan9port -VERSION=${VERSION:-20171222} +VERSION=${VERSION:-20190501} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +COMMIT="3197719090b3fd0a038767f7e8e15e771b1515be" if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -48,9 +49,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG/opt $OUTPUT cd $TMP -rm -rf $PRGNAM-master -unzip $CWD/master.zip || unzip $CWD/plan9port-master.zip -cd $PRGNAM-master +rm -rf $PRGNAM-${COMMIT} +unzip $CWD/${COMMIT} || unzip $CWD/plan9port-${COMMIT}.zip +cd $PRGNAM-${COMMIT} chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -62,7 +63,7 @@ find -L . \ PLAN9_TARGET=/opt/plan9 ./INSTALL cd $TMP -mv $PRGNAM-master $PKG/opt/plan9 +mv $PRGNAM-${COMMIT} $PKG/opt/plan9 find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |