svn commit: r430125 - in head/editors/vim: . files

Adam Weinberger adamw at FreeBSD.org
Sat Dec 31 14:52:37 UTC 2016


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


More information about the svn-ports-all mailing list