From owner-svn-ports-all@freebsd.org Sat May 16 06:26:26 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E53952E7326; Sat, 16 May 2020 06:26:26 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49PFfV5n8hz415g; Sat, 16 May 2020 06:26:26 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from imac-de-loic.home (unknown [IPv6:2a01:cb15:218:7c00:705b:ce2b:4b76:7423]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: lbartoletti) by smtp.freebsd.org (Postfix) with ESMTPSA id 3C7EA2CAF; Sat, 16 May 2020 06:26:26 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Subject: Re: svn commit: r535253 - in head/www/nift: . files To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <202005141944.04EJiv6w053433@repo.freebsd.org> <20200515060842.5uk7dsm7i2c72yha@atuin.in.mat.cc> From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= Message-ID: <0ebc57cc-8e3f-4b73-8edf-71c302e312f7@FreeBSD.org> Date: Sat, 16 May 2020 08:26:23 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 In-Reply-To: <20200515060842.5uk7dsm7i2c72yha@atuin.in.mat.cc> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Content-Language: fr X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Sat, 16 May 2020 06:26:27 -0000 Hello, Le 15/05/2020 à 08:08, Mathieu Arnold a écrit : > On Thu, May 14, 2020 at 07:44:57PM +0000, Loïc Bartoletti wrote: >> +BUNDLED_LUAJIT_DESC= Use the bundled LuaJIT >> +BUNDLED_LUA53_DESC= Use the bundled Lua 5.3 >> +PORTS_LUAJIT_DESC= Use LuaJIT from FreeBSD Ports >> +PORTS_LUA53_DESC= Use Lua 5.3 from FreeBSD Ports >> +PORTS_LUA52_DESC= Use Lua 5.2 from FreeBSD Ports >> +PORTS_LUA51_DESC= Use Lua 5.1 from FreeBSD Ports > I have a feeling this should be using LUA_DEFAULT and only provide one > "lua from ports" which is the default. I'll talk with the maintainer if there's really a need for all these options. Latest version has been shipped with only LUAJIT from ports. > >> +BUNDLED_LUAJIT_MAKE_ARGS= BUNDLED=1 >> +BUNDLED_LUAJIT_MAKE_JOBS_UNSAFE= yes > This one does not do anything, there is no such helper. My bad, will be removed. > >> +BUNDLED_LUA53_MAKE_ARGS= BUNDLED=1 LUA_VERSION=5.3 >> +BUNDLED_LUA53_MAKE_JOBS_UNSAFE= yes > Same here. > Thanks.