From owner-svn-ports-all@FreeBSD.ORG Tue Jun 2 18:51:16 2015 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 948835B8; Tue, 2 Jun 2015 18:51:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) 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 6811A1D52; Tue, 2 Jun 2015 18:51:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t52IpGHc084741; Tue, 2 Jun 2015 18:51:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t52IpFmI084736; Tue, 2 Jun 2015 18:51:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201506021851.t52IpFmI084736@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 2 Jun 2015 18:51:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388381 - 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.20 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: Tue, 02 Jun 2015 18:51:16 -0000 Author: bapt Date: Tue Jun 2 18:51:15 2015 New Revision: 388381 URL: https://svnweb.freebsd.org/changeset/ports/388381 Log: Update to 5.0.8 Among the usual updates, users will be happy to discover plenty of new FreeBSD related completion as well as zpty working out of box (which wasn't the case anymore for a while) Added: head/shells/zsh/files/patch-Src_Modules_zpty.c (contents, props changed) Deleted: head/shells/zsh/files/patch-Completion_BSD_Command___kld head/shells/zsh/files/patch-Src_zsh.mdd Modified: head/shells/zsh/Makefile head/shells/zsh/distinfo Modified: head/shells/zsh/Makefile ============================================================================== --- head/shells/zsh/Makefile Tue Jun 2 18:43:09 2015 (r388380) +++ head/shells/zsh/Makefile Tue Jun 2 18:51:15 2015 (r388381) @@ -2,10 +2,11 @@ # $FreeBSD$ PORTNAME= zsh -PORTVERSION= 5.0.7 -PORTREVISION= 4 +PORTVERSION= 5.0.8 CATEGORIES= shells -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ +MASTER_SITES= http://www.zsh.org/pub/ \ + http://www.zsh.org/pub/:doc \ + SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}-doc/${PORTVERSION}:doc DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Modified: head/shells/zsh/distinfo ============================================================================== --- head/shells/zsh/distinfo Tue Jun 2 18:43:09 2015 (r388380) +++ head/shells/zsh/distinfo Tue Jun 2 18:51:15 2015 (r388381) @@ -1,4 +1,4 @@ -SHA256 (zsh-5.0.7.tar.bz2) = 544e27de81740286b916d1d77c9f48ad7c26ad7943ed96d278abee67cf6704b3 -SIZE (zsh-5.0.7.tar.bz2) = 3181030 -SHA256 (zsh-5.0.7-doc.tar.bz2) = 43e8665ba9d9eca8370c64e2d4846e84f9111c628e5792f2aa639a7fb209fcf1 -SIZE (zsh-5.0.7-doc.tar.bz2) = 3005587 +SHA256 (zsh-5.0.8.tar.bz2) = 8079cf08cb8beff22f84b56bd72bb6e6962ff4718d816f3d83a633b4c9e17d23 +SIZE (zsh-5.0.8.tar.bz2) = 3250542 +SHA256 (zsh-5.0.8-doc.tar.bz2) = 0ee5088c47fa5ceac6e087c7e00f2ede3f5920a03d32220772342ce980339e40 +SIZE (zsh-5.0.8-doc.tar.bz2) = 3204865 Added: head/shells/zsh/files/patch-Src_Modules_zpty.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh/files/patch-Src_Modules_zpty.c Tue Jun 2 18:51:15 2015 (r388381) @@ -0,0 +1,11 @@ +--- Src/Modules/zpty.c.orig 2015-06-02 06:51:05.604875000 +0200 ++++ Src/Modules/zpty.c 2015-06-02 00:07:36.672596000 +0200 +@@ -154,7 +154,7 @@ getptycmd(char *name) + return NULL; + } + +-#ifdef USE_DEV_PTMX ++#if defined(HAVE_POSIX_OPENPT) || defined(USE_DEV_PTMX) + + #ifdef HAVE_SYS_STROPTS_H + #include