From owner-svn-ports-head@freebsd.org Sat Dec 31 14:52:36 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB2B3C99D9F; Sat, 31 Dec 2016 14:52:36 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 A2B771A70; Sat, 31 Dec 2016 14:52:36 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBVEqZKs038994; Sat, 31 Dec 2016 14:52:35 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBVEqZSe038992; Sat, 31 Dec 2016 14:52:35 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201612311452.uBVEqZSe038992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 31 Dec 2016 14:52:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430125 - in head/editors/vim: . 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2016 14:52:37 -0000 Author: adamw Date: Sat Dec 31 14:52:35 2016 New Revision: 430125 URL: https://svnweb.freebsd.org/changeset/ports/430125 Log: Remove the check for python 3.2, and add a check for python 3.6. Without this, users with DEFAULT_VERSIONS+=python=3.6 were getting vim without python3 support. PORTREVISION bump for this, because py3.6 users need a rebuilt vim. PR: 215676 Submitted by: rsmith xs4all nl Modified: head/editors/vim/Makefile head/editors/vim/files/patch-src-auto-configure Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Sat Dec 31 14:32:50 2016 (r430124) +++ head/editors/vim/Makefile Sat Dec 31 14:52:35 2016 (r430125) @@ -3,6 +3,7 @@ PORTNAME= vim PORTVERSION= 8.0.0134 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= editors Modified: head/editors/vim/files/patch-src-auto-configure ============================================================================== --- head/editors/vim/files/patch-src-auto-configure Sat Dec 31 14:32:50 2016 (r430124) +++ head/editors/vim/files/patch-src-auto-configure Sat Dec 31 14:52:35 2016 (r430125) @@ -60,7 +60,7 @@ fi - for ac_prog in python3 python -+ for ac_prog in python3.5 python3.4 python3.3 python3.2 ++ for ac_prog in python3.6 python3.5 python3.4 python3.3 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2