Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 02 Sep 2021 23:30:25 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 258234] editors/vim: python option not enabling python3interp
Message-ID:  <bug-258234-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D258234

            Bug ID: 258234
           Summary: editors/vim: python option not enabling python3interp
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: Individual Port(s)
          Assignee: adamw@FreeBSD.org
          Reporter: dereks@lifeofadishwasher.com
          Assignee: adamw@FreeBSD.org
             Flags: maintainer-feedback?(adamw@FreeBSD.org)

Created attachment 227629
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D227629&action=
=3Dedit
Pass python3 configure args

OPT_CONFIGURE_ARGS isn't part of the options framework.  Use ..._ENABLE and
..._WITH.

Pre-patch

  --CONFIGURE_ARGS--
  --disable-canberra  --enable-cscope  --enable-gui=3D  --enable-multibyte=
=20
--with-  tlib=3Dncursesw --disable-luainterp --without-lua-prefix --enable-=
nls
--disable-perlinterp --disable-rubyinterp --disable-mzschemeinterp
--disable-tclinterp --without-tclsh --prefix=3D/usr/local ${_LATE_CONFIGURE=
_ARGS}
  --End CONFIGURE_ARGS--

  $ pkg info -i vim
  vim-8.2.3394

  $ pkg info -f vim | fgrep PYTHON
          PYTHON         : on

  $ vim --version | fgrep python3
  +cmdline_info      +libcall           -python3           +visualextra

  configure phase:
  ...
  checking --enable-python3interp argument... no
  ...


Post-update:

  ...
  checking --enable-python3interp argument... yes
  checking --with-python3-command argument... /usr/local/bin/python3.8
  checking Python version... 3.8
  ...

  $ vim --version | fgrep \+python3
  +cmdline_info      +libcall           +python3           +visualextra

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-258234-7788>