Up to [cvs.NetBSD.org] / pkgsrc / lang / lua54
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.6 / (download) - annotate - [select for diffs], Wed Sep 6 11:48:15 2023 UTC (2 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
HEAD
Changes since 1.5: +4 -3
lines
Diff to previous 1.5 (colored)
lua54: fix man page name to match executable name pkg_alternatives creates lua(1) and luac(1), overwriting these files. Bump PKGREVISION.
Revision 1.5 / (download) - annotate - [select for diffs], Mon May 15 08:17:11 2023 UTC (6 months, 3 weeks ago) by nikita
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2
Changes since 1.4: +3 -3
lines
Diff to previous 1.4 (colored)
lua54: update to version 5.4.6 Changelog: "Emergency" new version 5.4.6 'lua_resetthread' is back to its original signature, to avoid incompatibilities in the ABI between releases of the same version. New function 'lua_closethread' added with the 'correct' signature.
Revision 1.4 / (download) - annotate - [select for diffs], Sun Mar 6 07:46:10 2022 UTC (21 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.3: +1 -2
lines
Diff to previous 1.3 (colored)
lua54: update to 5.4.4 Bugs fixed: - lua.c assumes that argv has at least one element. - Lua can generate wrong code when _ENV is <const>.
Revision 1.3 / (download) - annotate - [select for diffs], Wed Oct 27 13:02:40 2021 UTC (2 years, 1 month ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.2: +2 -1
lines
Diff to previous 1.2 (colored)
lua54: Include correct objects in luac binary Problem and solution identified by Piotr Meyer in a private email, thanks.
Revision 1.2 / (download) - annotate - [select for diffs], Thu Jul 2 10:15:20 2020 UTC (3 years, 5 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
Update metadata for Lua interpreters
Revision 1.1 / (download) - annotate - [select for diffs], Tue Jun 30 13:16:14 2020 UTC (3 years, 5 months ago) by nia
Branch: MAIN
lang: Add lua54. Note: this is slightly different than other Lua packages and, among other things, implements its own install target. This is becuase I wanted to minimize the amount of patching to Makefiles to make it fit into the pkgsrc world. Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. This version is a preferred choice for new Lua modules.