summaryrefslogtreecommitdiff
path: root/lang/lua53/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/lua53: update to 5.3.6Kyle Evans2020-10-151-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | This release fixes all bugs listed here: https://www.lua.org/bugs.html#5.3.5 While we're here, do some cleanup work in preparation for an impending lang/lua54 port: - Various reordering to appease portclippy - The patch to src/Makefile has been renamed to match the standard naming convention since it was relatively close - Use ${LUA_VER_STR} in place of again writing out the version string - Use various LUA_* substitutions in the plist to reduce change on new versions The latter two have actually been backported from the submitted lua54 port in D14709, rather than being included in the original submission, to make the diff between lang/lua53 and lang/lua54 more obvious. Submitted by: Russ Haley <russ haley gmail com> Submitted with: Andrew Gierth <andrew_tao173 riddles org uk> Differential Revision: https://reviews.freebsd.org/D25797 Notes: svn path=/head/; revision=552431
* lang/lua53: move assertion to correct placeSteve Wills2019-05-031-0/+18
| | | | | | | | | PR: 236891 Submitted by: andrew@tao11.riddles.org.uk Approved by: Russell Haley <russ.haley@gmail.com> (maintainer) Notes: svn path=/head/; revision=500722
* lang/lua53: update to 5.3.5 (final release for 5.3)David Naylor2018-08-188-51/+97
| | | | | | | | | | | | | | | | - Cleanup of variables - Use the 'bsd' target for build stage - Add options to to select interactive command line editing - Add options to control debug options - Add option for HTML documentation - No change log provided upstream Submitted by: Russel Haley (russ.haley@gmail.com) Andrew Gierth (andrew_tao173.riddles.org.uk) Differential Revision: https://reviews.freebsd.org/D13690 Notes: svn path=/head/; revision=477483
* Fix multiple runtime errors and crashes in lua 5.3.4Thomas Zander2017-11-113-0/+34
| | | | | | | | | | | | | | | | Details - Import upstream patches for known runtime errors and crashes in lua 5.3.4 Details, see https://www.lua.org/bugs.html in the section on version 5.3.4 PR: 222581 Submitted by: russ.haley@gmail.com Approved by: maintainer timeout MFH: 2017Q4 Notes: svn path=/head/; revision=453971
* Fix CFLAGS handling in lua53 patches.Ian Lepore2016-02-191-1/+1
| | | | | | | | | | | | | | | | | The ?= assignment of CFLAGS (not present in earlier lua5x patches) results in MYCFLAGS, passed from the port makefile, never getting assigned to CFLAGS during the lua build. The result is a copy of lua that has none of the posix support functions in it. CFLAGS set in the outer environment by the user or make.conf get passed in via the MYCFLAGS mechanism, so remove the -O2 and let the outer environment control optimization level. Approved by: mat(mentor) Differential Revision: https://reviews.freebsd.org/D5256 Notes: svn path=/head/; revision=409214
* lang/lua53: 5.3.0 -> 5.3.1Philip M. Gollucci2015-07-161-5/+5
| | | | | | | | PR: 201469 Submitted by: milios@ccsys.com Notes: svn path=/head/; revision=392310
* Add lua 5.3.0Baptiste Daroussin2015-01-173-0/+77
Highlights from this new version: Main new features are support for integers, bitwise operators, and a basic utf-8 library Complete list of changes: http://www.lua.org/manual/5.3/readme.html#changes List of incompatibilities with lua 5.2: http://www.lua.org/manual/5.3/manual.html#8 Notes: svn path=/head/; revision=377213