summaryrefslogtreecommitdiff
path: root/lang/lua52 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | lang) Notes: svn path=/head/; revision=327741
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Link lua .so + program with pthread to prevent hangs in extensions thatMatthias Andree2013-08-051-1/+2
| | | | | | | | | | | | | use pthreads. Bump PORTREVISION to pull this in. PR: ports/181052 Submitted by: Vitaly Magerya <vmagerya@gmail.com> Approved by: mandree@ on behalf of lua@ Notes: svn path=/head/; revision=324286
* Update to new upstream version Lua 5.2.2.Matthias Andree2013-03-292-3/+3
| | | | | | | | | | | According to Luiz Henrique de Figueiredo, "Lua 5.2.2 fixes all bugs listed in http://www.lua.org/bugs.html#5.2.1 . Lua 5.2.2 also fixes several other minors glitches and includes a revised reference manual." Notes: svn path=/head/; revision=315560
* Fix typo in MAINTAINER address (was also in the submitted .shar).Matthias Andree2013-01-061-1/+1
| | | | Notes: svn path=/head/; revision=310003
* Add new port lang/lua52.Matthias Andree2013-01-057-0/+238
Lua is a programming language originally designed for extending applications, but also frequently used as a general-purpose, stand-alone language. Lua combines simple procedural syntax (similar to Pascal) with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping. A fundamental concept in the design of Lua is to provide meta-mechanisms for implementing features, instead of providing a host of features directly in the language. For example, although Lua is not a pure object-oriented language, it does provide meta-mechanisms for implementing classes and inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the language small, while allowing the semantics to be extended in unconventional ways. Extensible semantics is a distinguishing feature of Lua. Lua is implemented as a small library of C functions, written in ANSI C, and compiles unmodified in all known platforms. The implementation goals are simplicity, efficiency, portability, and low embedding cost. WWW: http://www.lua.org/ PR: ports/174437 Submitted by: Green Dog <fiziologus@gmail.com> Notes: svn path=/head/; revision=309973