Received: by mail.netbsd.org (Postfix, from userid 605) id 7860584DF5; Mon, 30 Mar 2020 09:38:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 010B684DF3 for ; Mon, 30 Mar 2020 09:38:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ig8szjU53uDg for ; Mon, 30 Mar 2020 09:38:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5016A84CD2 for ; Mon, 30 Mar 2020 09:38:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 44097FB27; Mon, 30 Mar 2020 09:38:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158556108511120" MIME-Version: 1.0 Date: Mon, 30 Mar 2020 09:38:05 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/lua To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200330093805.44097FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158556108511120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Mar 30 09:38:05 UTC 2020 Modified Files: pkgsrc/lang/lua: luaversion.mk Log Message: lua: Set the default version to 5.3. Discussed on tech-pkg@ before freeze. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/lua/luaversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158556108511120 Content-Disposition: inline Content-Length: 1436 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/lua/luaversion.mk diff -u pkgsrc/lang/lua/luaversion.mk:1.10 pkgsrc/lang/lua/luaversion.mk:1.11 --- pkgsrc/lang/lua/luaversion.mk:1.10 Mon Jul 23 22:22:42 2018 +++ pkgsrc/lang/lua/luaversion.mk Mon Mar 30 09:38:05 2020 @@ -1,4 +1,4 @@ -# $NetBSD: luaversion.mk,v 1.10 2018/07/23 22:22:42 rillig Exp $ +# $NetBSD: luaversion.mk,v 1.11 2020/03/30 09:38:05 nia Exp $ # This file determins which Lua version is used as a dependency for # a package. @@ -9,7 +9,7 @@ # The preferred lua version to use. # # Possible values: 51 52 53 -# Default: 52 +# Default: 53 # # === Infrastructure variables === # @@ -28,7 +28,7 @@ # listed later. # # Possible values: 51 52 53 -# Default: 52 53 51 +# Default: 53 52 51 # # LUA_VERSIONS_INCOMPATIBLE # The Lua versions that the package *cannot* build against. @@ -45,12 +45,12 @@ # LUA_PKGPREFIX # The prefix to use in PKGNAME for multiversion packages. # -# Example: lua51 +# Example: lua53 # # LUA_INCDIR # Relative path to include files. # -# Example: include/lua-51 +# Example: include/lua-5.3 # # LUA_INTERPRETER # Full path to Lua interpreter. @@ -79,8 +79,8 @@ LUA_VERSION_REQD?= ${PKGNAME_OLD:C/(^.*- BUILD_DEFS+= LUA_VERSION_DEFAULT BUILD_DEFS_EFFECTS+= LUA_PACKAGE -LUA_VERSION_DEFAULT?= 52 -LUA_VERSIONS_ACCEPTED?= 52 53 51 +LUA_VERSION_DEFAULT?= 53 +LUA_VERSIONS_ACCEPTED?= 53 52 51 LUA_VERSIONS_INCOMPATIBLE?=# empty # --_----------=_158556108511120--