The NetBSD Project

CVS log for pkgsrc/lang/hs-lua/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / lang / hs-lua

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Mar 5 03:39:40 2025 UTC (2 weeks, 4 days ago) by pho
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
recursive revbump after patching lang/ghc910

Revision 1.13: download - view: text, markup, annotated - select for diffs
Sun Feb 2 13:05:34 2025 UTC (7 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -1 lines
Bump all Haskell packages after switching the default compiler.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Jan 29 15:29:20 2025 UTC (7 weeks, 4 days ago) by pho
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +3 -4 lines
lang/hs-lua: update to lua-2.3.3

## lua-2.3.3

Released 2024-08-31.

-   Add pattern constant `LUA_RIDX_GLOBALS`; that value is the
    registry index that holds the global environment.

-   Update Lua to version 5.4.7.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu May 30 09:25:48 2024 UTC (9 months, 3 weeks ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q4-base, pkgsrc-2024Q4, pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -1 lines
lang/hs-lua: Define DIST_SUBDIR to prevent the distfile from conflicting with lang/lua*

Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu May 9 01:32:23 2024 UTC (10 months, 2 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -1 lines
Recursive revbump after changing the default Haskell compiler

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Apr 28 16:46:29 2024 UTC (10 months, 3 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -3 lines
lang/hs-lua: Update to 2.3.2

lua-2.3.2
    Update to Lua 5.4.6.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Nov 2 06:37:09 2023 UTC (16 months, 3 weeks ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -1 lines
Revbump all Haskell after updating lang/ghc96

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Oct 24 12:24:34 2023 UTC (16 months, 4 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -3 lines
lang/hs-lua: Update to 2.3.1

lua-2.3.1 - Released 2023-03-17.

* New module Lua.Debug: the module provides bindings to a subset of
  functions of the Lua debug interface. Currently the module only binds
  lua_getupvalue and lua_setupvalue.

lua-2.3.0 - Released 2023-03-13.

* New function hslua_setwarnf: The function allows to set a C function as a
  hook that is called on all complete warning messages. It is intended as a
  simple way to set a custom warning function.
* Export version and copyright info from Lua.Constants: the following
  patterns are made available, with content identical to that of the
  respective C functions: LUA_VERSION, LUA_RELEASE, and LUA_COPYRIGHT.
* Added a new flag cross-compile. When enabled, the code is setup in a way
  that allows cross-compilation of the package, but some of the string
  constants will be hard-coded and may not match the Lua version against
  which the library is compiled.
* Type is now an instance of Read.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Oct 9 04:54:38 2023 UTC (17 months, 2 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Bump Haskell packages after updating lang/ghc94

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Feb 7 01:40:58 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -1 lines
revbump all the Haskell packages after modifying the runtime system of lang/ghc94

Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Jan 24 16:39:26 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +10 -5 lines
lang/hs-lua: Update to 2.2.1

lua-2.2.1 -- Released 2022-06-19
* Make string-peeking independent of the current foreign encoding: always
  use char8 encoding to retrieve values of LUA_PRELOAD_TABLE and
  LUA_LOADED_TABLE.

lua-2.2.0 -- Released 2022-02-19
* Update to Lua 5.4, include Lua 5.4.4 by default.
* Removed hardcode-reg-keys flag: this is no longer required for Lua 5.4.
* Support arbitrary number of uservalues: Lua 5.4 allows an arbitrary
  number of uservalues to be associated with userdata objects. The
  functions lua_newuserdata, lua_getuservalue, and lua_setuservalue are
  replaced with the new functions lua_newuserdatauv, lua_getiuservalue, and
  lua_setiuservalue, respectively.
* The function hslua_newhsuserdata is renamed to hslua_newhsuserdatauv and
  takes the number of associated uservalues as an additional argument.
* Support for the new warnings system: export binding to lua_warning.
* The function lua_gc now takes three data arguments of type CInt. This is
  a workaround for the fact that the C function has become variadic.
* The new patterns LUA_GCGEN and LUA_GCINC are usable with lua_gc to switch
  to generational and incremental garbage collection, respectively.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Feb 26 03:58:15 2022 UTC (3 years ago) by pho
Branches: MAIN
CVS tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Feb 12 08:50:43 2022 UTC (3 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -1 lines
revbump after changing the default Haskell compiler

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Feb 11 11:59:11 2022 UTC (3 years, 1 month ago) by pho
Branches: MAIN
Import lua-2.1.0

This package provides low-level bindings and types to bridge Haskell and
Lua.

Diff request

This form allows you to request diffs 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.

Log view options

CVSweb <webmaster@jp.NetBSD.org>