Received: by mail.netbsd.org (Postfix, from userid 605) id 2E63984DDD; Tue, 17 Jul 2018 21:52:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1E3B684C71 for ; Tue, 17 Jul 2018 21:52:27 +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 goWeSN9WALrC for ; Tue, 17 Jul 2018 21:52:25 +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 A2F3484D5B for ; Tue, 17 Jul 2018 21:52:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9476BFA86; Tue, 17 Jul 2018 21:52:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1531864345206380" MIME-Version: 1.0 Date: Tue, 17 Jul 2018 21:52:25 +0000 From: "Alexander Nasonov" Subject: CVS commit: pkgsrc/lang/lua53 To: pkgsrc-changes@NetBSD.org Reply-To: alnsn@netbsd.org X-Mailer: log_accum Message-Id: <20180717215225.9476BFA86@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. --_----------=_1531864345206380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: alnsn Date: Tue Jul 17 21:52:25 UTC 2018 Modified Files: pkgsrc/lang/lua53: distinfo version.mk Log Message: Update lang/lua53 to version 5.3.5. Lua 5.3.5 fixes all bugs listed in http://www.lua.org/bugs.html#5.3.4: 1. Wrong code generated for a 'goto' followed by a label inside an 'if'. 2. Lua crashes when building sequences with more than 2^30 elements. 3. Table length computation overflows for sequences larger than 2^31 elements. 4. Lua does not check GC when creating error messages. 5. Dead keys with nil values can stay in weak tables. 6. lua_pushcclosure should not call the garbage collector when n is zero. 7. Memory-allocation error when resizing a table can leave it in an inconsistent state.. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/lua53/distinfo cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/lua53/version.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1531864345206380 Content-Disposition: inline Content-Length: 1802 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/lua53/distinfo diff -u pkgsrc/lang/lua53/distinfo:1.7 pkgsrc/lang/lua53/distinfo:1.8 --- pkgsrc/lang/lua53/distinfo:1.7 Fri Feb 10 23:01:49 2017 +++ pkgsrc/lang/lua53/distinfo Tue Jul 17 21:52:25 2018 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.7 2017/02/10 23:01:49 alnsn Exp $ +$NetBSD: distinfo,v 1.8 2018/07/17 21:52:25 alnsn Exp $ -SHA1 (lua-5.3.4.tar.gz) = 79790cfd40e09ba796b01a571d4d63b52b1cd950 -RMD160 (lua-5.3.4.tar.gz) = 08126da480196edd3e1b58077456f3b7a31b18c0 -SHA512 (lua-5.3.4.tar.gz) = 739e31f82e6a60fa99910c2005e991b3a1e21339af52847f653cb190b30842054d189ca116ffcfdf9b36e07888c9ce5642b1dd2988cc7eff9f8789f9a2e34997 -Size (lua-5.3.4.tar.gz) = 303586 bytes +SHA1 (lua-5.3.5.tar.gz) = 112eb10ff04d1b4c9898e121d6bdf54a81482447 +RMD160 (lua-5.3.5.tar.gz) = f260c6f60139cb1464d87b5a7d9673e3f305f368 +SHA512 (lua-5.3.5.tar.gz) = 4f9516acc4659dfd0a9e911bfa00c0788f0ad9348e5724fe8fb17aac59e9c0060a64378f82be86f8534e49c6c013e7488ad17321bafcc787831d3d67406bd0f4 +Size (lua-5.3.5.tar.gz) = 303543 bytes SHA1 (patch-Makefile) = d7f67017cdd8add3e0ea2d1e857042bc4f130bf5 SHA1 (patch-src_Makefile) = 2bb9cb27a7da00a62973838ed679e947b27033c0 SHA1 (patch-src_luaconf.h) = cbe3f9cb9aef10ef52bc26404aa1fc6a960d434d Index: pkgsrc/lang/lua53/version.mk diff -u pkgsrc/lang/lua53/version.mk:1.5 pkgsrc/lang/lua53/version.mk:1.6 --- pkgsrc/lang/lua53/version.mk:1.5 Fri Feb 10 23:01:49 2017 +++ pkgsrc/lang/lua53/version.mk Tue Jul 17 21:52:25 2018 @@ -1,6 +1,6 @@ -# $NetBSD: version.mk,v 1.5 2017/02/10 23:01:49 alnsn Exp $ +# $NetBSD: version.mk,v 1.6 2018/07/17 21:52:25 alnsn Exp $ -LUA_VERSION= 5.3.4 +LUA_VERSION= 5.3.5 LUA_VERSION_MAJOR= ${LUA_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\1/} LUA_VERSION_MINOR= ${LUA_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\2/} --_----------=_1531864345206380--