diff options
author | alnsn <alnsn@pkgsrc.org> | 2015-03-08 10:55:19 +0000 |
---|---|---|
committer | alnsn <alnsn@pkgsrc.org> | 2015-03-08 10:55:19 +0000 |
commit | 0f46b22edf0b91e2de45fde421687c7ba1eccf6f (patch) | |
tree | 92354266f839e292cbe513540c0972cccf2c1d73 | |
parent | e94832520602b0a327926f03c651e14dd86b9fff (diff) | |
download | pkgsrc-0f46b22edf0b91e2de45fde421687c7ba1eccf6f.tar.gz |
Update lang/lua52 to version 5.2.4.
Lua 5.2.4 fixes all bugs listed in
http://www.lua.org/bugs.html#5.2.3 [*]
and is now the current release of Lua 5.2.
Like all minor releases, this is strictly a bug-fix release;
no new features or improvements have been added.
[*] http://www.lua.org/bugs.html#5.2.3
1. Compiler can optimize away overflow check in table.unpack.
2. Ephemeron table can wrongly collect entry with strong key.
3. Chunk with too many lines may crash Lua.
-rw-r--r-- | lang/lua52/Makefile | 3 | ||||
-rw-r--r-- | lang/lua52/distinfo | 8 | ||||
-rw-r--r-- | lang/lua52/version.mk | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/lang/lua52/Makefile b/lang/lua52/Makefile index 4c949b4537b..25992a9e9e2 100644 --- a/lang/lua52/Makefile +++ b/lang/lua52/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2015/03/05 13:39:20 ryoon Exp $ +# $NetBSD: Makefile,v 1.8 2015/03/08 10:55:19 alnsn Exp $ DISTNAME= lua-${LUA_VERSION} PKGNAME= lua52-${LUA_VERSION} -PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://www.lua.org/ftp/ \ http://www.tecgraf.puc-rio.br/lua/ftp/ diff --git a/lang/lua52/distinfo b/lang/lua52/distinfo index 4b97f3d4965..d94e10b3cd4 100644 --- a/lang/lua52/distinfo +++ b/lang/lua52/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.5 2015/03/05 13:39:20 ryoon Exp $ +$NetBSD: distinfo,v 1.6 2015/03/08 10:55:19 alnsn Exp $ -SHA1 (lua-5.2.3.tar.gz) = 926b7907bc8d274e063d42804666b40a3f3c124c -RMD160 (lua-5.2.3.tar.gz) = b8714669c8c0f8272104effd8a9675921ddb2fa5 -Size (lua-5.2.3.tar.gz) = 251195 bytes +SHA1 (lua-5.2.4.tar.gz) = ef15259421197e3d85b7d6e4871b8c26fd82c1cf +RMD160 (lua-5.2.4.tar.gz) = 3bad2da85f354132da6a53b45882006f0a451b5c +Size (lua-5.2.4.tar.gz) = 252651 bytes SHA1 (patch-aa) = ce0763ed1515f670b8a5d543af3753320cf06309 SHA1 (patch-ab) = 498dac3f444ccf6f6dff22c4644b8123865f3a9d SHA1 (patch-ac) = b8b9c0068210795e5eb22512767ac2e98bca8cbc diff --git a/lang/lua52/version.mk b/lang/lua52/version.mk index aa0ccffb200..4238e4dc4bb 100644 --- a/lang/lua52/version.mk +++ b/lang/lua52/version.mk @@ -1,6 +1,6 @@ -# $NetBSD: version.mk,v 1.2 2014/01/02 19:57:39 wiz Exp $ +# $NetBSD: version.mk,v 1.3 2015/03/08 10:55:19 alnsn Exp $ -LUA_VERSION= 5.2.3 +LUA_VERSION= 5.2.4 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/} |