Date: Sat, 31 Dec 2016 14:52:35 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430125 - in head/editors/vim: . files Message-ID: <201612311452.uBVEqZSe038992@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612311452.uBVEqZSe038992>