The NetBSD Project

CVS log for pkgsrc/lang/hs-hslua-core/buildlink3.mk

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

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


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

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

Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu May 9 01:32:22 2024 UTC (10 months, 2 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.9: preferred, colored
Changes since revision 1.9: +2 -2 lines
Recursive revbump after changing the default Haskell compiler

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Apr 29 04:00:13 2024 UTC (10 months, 3 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -3 lines
lang/hs-hslua-core: Update to 2.3.2

hslua-core-2.3.2 - Released 2024-01-18.
    Relaxed upper bound for text, and bytestring, allowing text-2.1, and bytestring-0.12.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Nov 2 06:37:07 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 -2 lines
Revbump all Haskell after updating lang/ghc96

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Oct 27 08:31:06 2023 UTC (16 months, 4 weeks ago) by pho
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +3 -3 lines
lang/hs-hslua-core: Update to 2.3.1

hslua-core-2.3.1 - Released 2023-03-17.
* New module HsLua.Core.Debug: the module provides bindings to a subset of
  functions of the Lua debug interface. Currently the module only exports
  getupvalue and setupvalue, both of which are also re-exported from
  HsLua.Core.

hslua-core-2.3.0 - Released 2023-03-13.
* The functions loadfile, dofile, and dofileTrace now expect the argument
  to be of type Maybe FilePath. The functions load from stdin when the
  argument is Nothing.
* Added setwarnf' for simple warning messgae handling: The built-in method
  of setting a warn function is flexible but not straight-forward to
  use. The new setwarnf' function allows to set a Haskell action as a
  warning hook: the default warning behavior is kept in place, but, in
  addition to the default action, the hook is called on the concatenated
  warning messages. This can be used to plug Lua warnings into an
  application specific Haskell reporting system.
* Export GCManagedState, newGCManagedState, closeGCManagedState, and
  withGCManagedState from HsLua.Core.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Oct 9 04:54:37 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:57 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 -2 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
Wed Jan 25 04:35:33 2023 UTC (2 years, 1 month ago) by pho
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -3 lines
lang/hs-hslua-core: Update to 2.2.1

hslua-core-2.2.1 - Released 2022-06-19
* Ensure that loadfile works with umlauts in filepath: The OS does not
  necessarily expect filenames to be UTF-8 encoded, especially Windows. On
  non-Windows systems, the current file system encoding is now used to
  convert filenames to C strings. On Windows, the CP_ACP codepage is used,
  as required by the Windows API.
* GC managed Lua state: Add new type GCManagedState and functions
  newGCManagedState, closeGCManagedState, and withGCManagedState. These
  allow to create and use a Lua state in flexible ways in that it does not
  require the state to be closed explicitly. The state will be closed when
  the respective variable is collected.
* Require lua-2.2.1.
* Relax upper bound for mtl, allow mtl-2.3.

hslua-core-2.2.0 - Released 2022-02-19
* Use lua-2.2.0, which requires Lua 5.4.
* Rename newuserdata to newuserdatauv and let it take the number of
  associated uservalues as an additional argument.
* Similarly, newhsuserdata is now newhsuserdatauv.
* Rename getuservalue and setuservalue to getiuservalue and setiuservalue,
  respectively. Like both functions now take an extra argument specifying
  the number of the uservalue that should be retrieved or set.
* It is now possible for setiuservalue to fail, so it returns a boolean to
  indicate whether the action was successful.
* The GCControl type has been updated to match the new gc control:
  - The GCStep constructor takes an argument "stepsize";
  - constructors GCGen and GCInc have been added;
  - constructors GCSetPause and GCSetStepMul have been removed.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Feb 26 03:58:14 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 -2 lines
revbump after changing the default Haskell compiler

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Feb 11 12:03:30 2022 UTC (3 years, 1 month ago) by pho
Branches: MAIN
lang/hs-hslua-core: import hs-hslua-core-2.1.0

Wrappers and helpers to bridge Haskell and Lua.

It builds upon the lua package, which allows to bundle a Lua interpreter
with a Haskell program.

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>