Date: Sunday, June 24, 2018 @ 19:59:41 Author: jelle Revision: 327524
Fix FS#46074 Added: source-highlight/trunk/fix-zsh-highlighting-hangups.patch Modified: source-highlight/trunk/PKGBUILD ------------------------------------+ PKGBUILD | 13 ++++++++++--- fix-zsh-highlighting-hangups.patch | 13 +++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-06-24 10:00:19 UTC (rev 327523) +++ PKGBUILD 2018-06-24 19:59:41 UTC (rev 327524) @@ -4,7 +4,7 @@ pkgname=source-highlight pkgver=3.1.8 -pkgrel=15 +pkgrel=16 pkgdesc="Convert source code to syntax highlighted document" arch=('x86_64') url="http://www.gnu.org/software/src-highlite/" @@ -11,9 +11,16 @@ license=('GPL') depends=('bash' 'boost-libs') makedepends=('ctags' 'boost') -source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz") -md5sums=('3243470706ef5fefdc3e43b5306a4e41') +source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz" + "fix-zsh-highlighting-hangups.patch") +md5sums=('3243470706ef5fefdc3e43b5306a4e41' + '5b6129bca6fcd0ea252fa31bf7a988fa') +prepare() { + cd ${pkgname}-${pkgver} + patch -Np1 -i "${srcdir}/fix-zsh-highlighting-hangups.patch" +} + build() { cd ${pkgname}-${pkgver} Added: fix-zsh-highlighting-hangups.patch =================================================================== --- fix-zsh-highlighting-hangups.patch (rev 0) +++ fix-zsh-highlighting-hangups.patch 2018-06-24 19:59:41 UTC (rev 327524) @@ -0,0 +1,13 @@ +diff --git a/src/zsh.lang b/src/zsh.lang +index 69542a7..a0bac36 100644 +--- a/src/zsh.lang ++++ b/src/zsh.lang +@@ -35,7 +35,7 @@ keyword = "alias|always|autoload|bg|bindkey|break|builtin", + "unlimit|unset|unsetopt|until|vared|wait|whence", + "where|which|while|zcompile|zformat|zftp|zle", + "zmodload|zparseopts|zprof|zpty|zregexparse", +- "zsocket|zstyle|ztcp|" ++ "zsocket|zstyle|ztcp" + + variable = '\$\{([^[:blank:]]+)\}' + variable = '\$\(([^[:blank:]]+)\)'