The NetBSD Project

CVS log for pkgsrc/lang/lua53/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / lang / lua53

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.7 / (download) - annotate - [select for diffs], Thu May 12 12:32:49 2022 UTC (16 months, 2 weeks ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, HEAD
Changes since 1.6: +5 -1 lines
Diff to previous 1.6 (colored)

lang/lua53: Explain why theere is no builtin.mk

Revision 1.6 / (download) - annotate - [select for diffs], Thu Jul 2 10:15:20 2020 UTC (3 years, 2 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, 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.5: +4 -4 lines
Diff to previous 1.5 (colored)

Update metadata for Lua interpreters

Revision 1.5 / (download) - annotate - [select for diffs], Sun Jan 26 17:31:29 2020 UTC (3 years, 8 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

all: migrate homepages from http to https

pkglint -r --network --only "migrate"

As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Jan 16 23:51:29 2020 UTC (3 years, 8 months ago) by nia
Branch: MAIN
Changes since 1.3: +4 -3 lines
Diff to previous 1.3 (colored)

lua53: Override INSTALL_DATA with MAKE_FLAGS.

PR pkg/54850

Revision 1.3 / (download) - annotate - [select for diffs], Thu Jan 19 18:52:14 2017 UTC (6 years, 8 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)

Convert all occurrences (353 by my count) of

	MASTER_SITES= 	site1 \
			site2

style continuation lines to be simple repeated

	MASTER_SITES+= site1
	MASTER_SITES+= site2

lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint
accordingly.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Dec 5 22:50:26 2015 UTC (7 years, 9 months ago) by alnsn
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.1: +11 -1 lines
Diff to previous 1.1 (colored)

Update Lua to version 5.3.2 and link with pthreads to fix pkg/47587.

Lua 5.3.2 fixes all bugs listed in
        http://www.lua.org/bugs.html#5.3.1 [1]

Lua 5.3.2 also contains several internal improvements and includes a
revised reference manual:
	http://www.lua.org/manual/5.3/

[1]
    1. io.lines does not check maximum number of options.
       reported by Patrick Donnell on 10 Jul 2015. existed since 3.0.
       Example:
-- can crash in some machines
t ={}; for i = 1, 253 do t[i] = 1 end
io.lines("someexistingfile", table.unpack(t))()

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Jan 17 17:50:23 2015 UTC (8 years, 8 months ago) by alnsn
Branch: TNF
CVS Tags: pkgsrc-base, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of Lua 5.3.0.

Lua is a powerful, light-weight programming language designed for
extending applications. Lua is 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, making it ideal for
configuration, scripting, and rapid prototyping.

Lua is a language engine that you can embed into your application.
This means that, besides syntax and semantics, Lua has an API that
allows the application to exchange data with Lua programs and also to
extend Lua with C functions. In this sense, Lua can be regarded as a
language framework for building domain-specific languages.

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.
The result is a fast language engine with small footprint, making it
ideal in embedded systems too.

Revision 1.1 / (download) - annotate - [select for diffs], Sat Jan 17 17:50:23 2015 UTC (8 years, 8 months ago) by alnsn
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>