From owner-svn-ports-all@FreeBSD.ORG Sat Nov 22 01:44:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37753ED5; Sat, 22 Nov 2014 01:44:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A273ABD; Sat, 22 Nov 2014 01:44:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAM1iADq072074; Sat, 22 Nov 2014 01:44:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAM1iAr8072068; Sat, 22 Nov 2014 01:44:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201411220144.sAM1iAr8072068@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 22 Nov 2014 01:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373026 - in head/shells/zsh: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Nov 2014 01:44:11 -0000 Author: bapt Date: Sat Nov 22 01:44:09 2014 New Revision: 373026 URL: https://svnweb.freebsd.org/changeset/ports/373026 QAT: https://qat.redports.org/buildarchive/r373026/ Log: Add a patch the kld* completion to find modules in /boot/modules [1] While here, fix manpages so they render correctly with mandoc PR: 194621 [1] Submitted by: clutton@zoho.com [1] Added: head/shells/zsh/files/patch-Completion_BSD_Command___kld (contents, props changed) head/shells/zsh/files/patch-Doc_zshmodules.1 (contents, props changed) Modified: head/shells/zsh/Makefile Modified: head/shells/zsh/Makefile ============================================================================== --- head/shells/zsh/Makefile Sat Nov 22 01:41:58 2014 (r373025) +++ head/shells/zsh/Makefile Sat Nov 22 01:44:09 2014 (r373026) @@ -3,6 +3,7 @@ PORTNAME= zsh PORTVERSION= 5.0.7 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}-doc/${PORTVERSION}:doc @@ -101,7 +102,7 @@ post-build: # Fix ".so" macro problem by using "soelim" command. ${LN} -sf ${WRKSRC}/Doc ${WRKSRC}/man1 ${MV} ${WRKSRC}/Doc/zshall.1 ${WRKSRC}/Doc/zshall.1.source - cd ${WRKSRC} && /usr/bin/soelim ${WRKSRC}/Doc/zshall.1.source > \ + cd ${WRKSRC} && ${SOELIM} -r ${WRKSRC}/Doc/zshall.1.source > \ ${WRKSRC}/Doc/zshall.1 .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${PREFIX}/info Added: head/shells/zsh/files/patch-Completion_BSD_Command___kld ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh/files/patch-Completion_BSD_Command___kld Sat Nov 22 01:44:09 2014 (r373026) @@ -0,0 +1,11 @@ +--- Completion/BSD/Command/_kld.orig 2013-11-27 19:00:18 UTC ++++ Completion/BSD/Command/_kld +@@ -4,7 +4,7 @@ + _kld_module() { + local ret=1 + +- compadd "$@" - /boot/kernel/*.ko(-.:t) /modules/*.ko(-.:t) && ret=0 ++ compadd "$@" - /boot/{kernel,modules}/*.ko(-.:t) && ret=0 + _files "$@" -g '*.ko(-.)' && ret=0 + + return ret Added: head/shells/zsh/files/patch-Doc_zshmodules.1 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh/files/patch-Doc_zshmodules.1 Sat Nov 22 01:44:09 2014 (r373026) @@ -0,0 +1,10 @@ +--- Doc/zshmodules.1.orig 2014-11-21 22:50:41 UTC ++++ Doc/zshmodules.1 +@@ -2415,7 +2415,6 @@ Returns the process ID of the current pr + Returns the process ID of the parent of the current process, even in + subshells\&. Compare \fB$PPID\fP, which returns the process ID of the parent + of the main shell process\&. +-.RE + .SH "THE ZSH/NET/TCP MODULE" + .\" Yodl file: Zsh/mod_tcp.yo +