pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/hs-hslua



Module Name:    pkgsrc
Committed By:   pho
Date:           Fri Apr 23 09:47:37 UTC 2021

Modified Files:
        pkgsrc/lang/hs-hslua: Makefile PLIST buildlink3.mk distinfo
        pkgsrc/lang/hs-hslua/patches: patch-hslua.cabal

Log Message:
Update to hslua-1.3.0.1

1.3.0.1: Released 2021-02-06
* Fixed build with GHC 9.0.1 (Simon Jakobi).
* Improved test-suite; fixed memory leaks in some tests.
* Moved CI to GitHub Actions.

1.3.0: Released 2020-10-16
* Upgrade included Lua version to new bug-fix release 5.3.6. See the
  upstream documentation https://www.lua.org/bugs.html#5.3.5 for the
  bugs which have been fixed.
* Stop exporting c_loaded_table and c_prelad_table from module
  Foreign.Lua.Raw.Auxiliary. Both values are defined only if the flag
  HARDCODE_REG_KEYS is disabled, leading to compilation errors when
  the flag is enabled.
* Add new function peekStringy to Peek module. It allows to peek a
  value of any IsString type from an UTF-8 encoded string.
* Various improvements to the continuous integration setup, including
  cleanup of the config files, version bumps to the ghc/cabal versions
  used for testing, and running the linter in a dedicated GitHub
  Action.

1.2.0: Released 2020-08-15
* New module Foreign.Lua.Call: the module offers an alternative method
  of exposing Haskell functions to Lua. The focus is on
  maintainability: types and marshaling methods are made explicit; the
  possibility of adding documentation and parameter names improves
  error messages and allows for automatic documentation extraction.

  Work on this module is ongoing; the interface is likely to
  change. Suggestions and feedback are welcome.
* New types Module, Field, and new functions registerModule,
  preloadModule, pushModule, and render exported from
  Foreign.Lua.Module: this builds on the new Call module and allows
  the creation of documented modules as well as automatic generation
  of Markdown-formatted module documentation.
* Export new items nth and top from Foreign.Lua.Core and
  Foreign.Lua. They are short-hands for nthFromTop and stackTop.
* Performance improvements: Calling of Lua functions and creation of
  Haskell data wrapping userdata has been sped up by about 10%. This
  is mostly due to using of previously missed optimization
  opportunities.
* All foreign imports have been moved to into the new Foreign.Lua.Raw
  module. This module will replace the current Foreign.Lua.Core module
  in the future and will be distributed as a separate package (likely
  starting with the 2.0 release); the remaining parts of the current
  Core module will be promoted one level in the module hierarchy.
* The Raw module can be used whenever the full power of HsLua is not
  needed.
* Error-signaling of API wrapper functions has been changed: instead
  of returning special integer values, functions now take an
  additional pointer argument, which is set to the status result of
  the computation.
* The Failable type in Core.Error is no longer needed and has been
  removed.
* CI builds now include GHC 8.8 and GHC 8.10, ensuring that all GHC
  8.* versions are supported.

1.1.2: Released 2020-06-27
* Revert signature of function pushList to it's proper 1.1 value. This
  fixes a mistake which caused the 1.1.1 release to be in violation of
  the PVP versioning policy.
* Module Foreign.Lua.Peek: add function pushKeyValuePairs (Alex
  Loomis).

1.1.1: Released 2020-06-02

WARNING: This version does not conform to the PVP versioning policy,
due to a unintended signature change of function pushList. It is
recommended not to use this version.

* New module Foreign.Lua.Push: provides functions which marshal and
  push Haskell values onto Lua's stack.
* Most functions in Foreign.Lua.Types.Pushable are now defined using
  functions from this module.
* New module Foreign.Lua.Peek: provides functions which unmarshal and
  retrieve Haskell values from Lua's stack. Contrary to peek from
  Foreign.Lua.Types.Peekable, the peeker functions in this module will
  never throw errors, but use an Either type to signal retrieval
  failure.
* The error type PeekError should not be considered final and will
  likely be subject to change in later versions.
* Module Foreign.Lua.Utf8: never throw errors when decoding UTF-8
  strings. Invalid UTF-8 input bytes no longer cause exceptions, but
  are replaced with the Unicode replacement character U+FFFD.
* Fixed missing and faulty Haddock documentation.
* Fixed a bug which caused unnecessary use of strings to represent
  floating point numbers under certain configurations.

1.1.0: Released 2020-03-25.

WARNING: The changes in this release are experimental. It is
recommended to skip this release unless the newly introduced features
are required.

* Allow custom error handling: conversion of Lua errors to Haskell
  exceptions and back is made configurable. Users can define their own
  exception/error handling strategies, even opening up the option to
  pass arbitrary exceptions through Lua.
  - New types exported from Foreign.Lua.Types:
    * ErrorConversion: defines the ways in which exceptions and errors
      are handled and converted.
    * LuaEnvironment: environment in which Lua computations are
      evaluated. Contains the Lua interpreter state and the error
      conversion strategy.
  - The environment of the Lua type is changed from a plain Lua State
    to the above mentioned LuaEnvironment.
  - New functions run' is exported from Foreign.Lua.Util and
    Foreign.Lua: it is analogous to run, but allows to run
    computations with a custom error conversion strategy.
  - New function runWithConverter exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core; like run', but takes a custom state.
  - New function unsafeRunWith exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core; runs a computation without proper error
    handling.
  - New function errorConversion exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core: extract the error conversion strategy from
    the Lua type.
  - New function throwErrorAsException exported from
    Foreign.Lua.Core.Error and Foreign.Lua.Core: throws a Lua error as
    Haskell exception, using the current error conversion strategy.
  - Function runWith is moved from module Foreign.Lua.Core to
    Foreign.Lua.Util.
  - The module Foreign.Lua.Utf8 is now exported.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/hs-hslua/Makefile \
    pkgsrc/lang/hs-hslua/PLIST pkgsrc/lang/hs-hslua/buildlink3.mk \
    pkgsrc/lang/hs-hslua/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/hs-hslua/Makefile
diff -u pkgsrc/lang/hs-hslua/Makefile:1.1 pkgsrc/lang/hs-hslua/Makefile:1.2
--- pkgsrc/lang/hs-hslua/Makefile:1.1   Wed Jan 15 12:40:38 2020
+++ pkgsrc/lang/hs-hslua/Makefile       Fri Apr 23 09:47:37 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2020/01/15 12:40:38 pho Exp $
+# $NetBSD: Makefile,v 1.2 2021/04/23 09:47:37 pho Exp $
 
-DISTNAME=      hslua-1.0.3.2
+DISTNAME=      hslua-1.3.0.1
 CATEGORIES=    lang
 
 MAINTAINER=    szptvlfn%NetBSD.org@localhost
@@ -10,8 +10,6 @@ LICENSE=      mit
 USE_TOOLS+=            pkg-config
 CONFIGURE_ARGS+=       -fpkg-config
 
-.include "../../devel/hs-exceptions/buildlink3.mk"
-.include "../../devel/hs-fail/buildlink3.mk"
 # This package explicitly depends on Lua 5.3.x so including
 # ../../lang/lua/buildlink3.mk would be inappropriate.
 .include "../../lang/lua53/buildlink3.mk"
Index: pkgsrc/lang/hs-hslua/PLIST
diff -u pkgsrc/lang/hs-hslua/PLIST:1.1 pkgsrc/lang/hs-hslua/PLIST:1.2
--- pkgsrc/lang/hs-hslua/PLIST:1.1      Mon May 11 17:52:09 2020
+++ pkgsrc/lang/hs-hslua/PLIST  Fri Apr 23 09:47:37 2021
@@ -1,97 +1,140 @@
-@comment $NetBSD: PLIST,v 1.1 2020/05/11 17:52:09 rillig Exp $
-${HS_INTF}/package-description
-${HS_INTF}/package-id
-${HS_IMPL}/Foreign/Lua.dyn_hi
-${HS_IMPL}/Foreign/Lua.hi
-${HS_IMPL}/Foreign/Lua.p_hi
-${HS_IMPL}/Foreign/Lua/Core.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core.hi
-${HS_IMPL}/Foreign/Lua/Core.p_hi
-${HS_IMPL}/Foreign/Lua/Core/Auxiliary.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/Auxiliary.hi
-${HS_IMPL}/Foreign/Lua/Core/Auxiliary.p_hi
-${HS_IMPL}/Foreign/Lua/Core/Constants.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/Constants.hi
-${HS_IMPL}/Foreign/Lua/Core/Constants.p_hi
-${HS_IMPL}/Foreign/Lua/Core/Error.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/Error.hi
-${HS_IMPL}/Foreign/Lua/Core/Error.p_hi
-${HS_IMPL}/Foreign/Lua/Core/Functions.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/Functions.hi
-${HS_IMPL}/Foreign/Lua/Core/Functions.p_hi
-${HS_IMPL}/Foreign/Lua/Core/RawBindings.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/RawBindings.hi
-${HS_IMPL}/Foreign/Lua/Core/RawBindings.p_hi
-${HS_IMPL}/Foreign/Lua/Core/Types.dyn_hi
-${HS_IMPL}/Foreign/Lua/Core/Types.hi
-${HS_IMPL}/Foreign/Lua/Core/Types.p_hi
-${HS_IMPL}/Foreign/Lua/FunctionCalling.dyn_hi
-${HS_IMPL}/Foreign/Lua/FunctionCalling.hi
-${HS_IMPL}/Foreign/Lua/FunctionCalling.p_hi
-${HS_IMPL}/Foreign/Lua/Module.dyn_hi
-${HS_IMPL}/Foreign/Lua/Module.hi
-${HS_IMPL}/Foreign/Lua/Module.p_hi
-${HS_IMPL}/Foreign/Lua/Types.dyn_hi
-${HS_IMPL}/Foreign/Lua/Types.hi
-${HS_IMPL}/Foreign/Lua/Types.p_hi
-${HS_IMPL}/Foreign/Lua/Types/Peekable.dyn_hi
-${HS_IMPL}/Foreign/Lua/Types/Peekable.hi
-${HS_IMPL}/Foreign/Lua/Types/Peekable.p_hi
-${HS_IMPL}/Foreign/Lua/Types/Pushable.dyn_hi
-${HS_IMPL}/Foreign/Lua/Types/Pushable.hi
-${HS_IMPL}/Foreign/Lua/Types/Pushable.p_hi
-${HS_IMPL}/Foreign/Lua/Userdata.dyn_hi
-${HS_IMPL}/Foreign/Lua/Userdata.hi
-${HS_IMPL}/Foreign/Lua/Userdata.p_hi
-${HS_IMPL}/Foreign/Lua/Utf8.dyn_hi
-${HS_IMPL}/Foreign/Lua/Utf8.hi
-${HS_IMPL}/Foreign/Lua/Utf8.p_hi
-${HS_IMPL}/Foreign/Lua/Util.dyn_hi
-${HS_IMPL}/Foreign/Lua/Util.hi
-${HS_IMPL}/Foreign/Lua/Util.p_hi
-${HS_IMPL}/libHS${HS_PKGID}.a
-${HS_IMPL}/libHS${HS_PKGID}_p.a
+@comment $NetBSD: PLIST,v 1.2 2021/04/23 09:47:37 pho Exp $
+lib/hslua-${PKGVERSION}/${HS_VERSION}/package-description
+lib/hslua-${PKGVERSION}/${HS_VERSION}/package-id
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Call.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Call.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Call.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Auxiliary.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Auxiliary.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Auxiliary.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Constants.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Constants.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Constants.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Error.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Error.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Error.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Functions.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Functions.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Functions.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/RawBindings.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/RawBindings.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/RawBindings.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Types.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Types.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Core/Types.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/FunctionCalling.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/FunctionCalling.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/FunctionCalling.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Module.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Module.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Module.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Peek.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Peek.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Peek.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Push.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Push.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Push.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Auxiliary.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Auxiliary.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Auxiliary.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Call.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Call.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Call.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Constants.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Constants.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Constants.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Error.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Error.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Error.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Functions.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Functions.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Functions.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Types.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Types.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Types.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Userdata.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Userdata.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Raw/Userdata.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Peekable.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Peekable.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Peekable.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Pushable.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Pushable.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Types/Pushable.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Userdata.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Userdata.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Userdata.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Utf8.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Utf8.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Utf8.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Util.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Util.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Lua/Util.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a
+lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a
 lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
-${HS_DOCS}/LICENSE
-${HS_DOCS}/html/Foreign-Lua-Core-Constants.html
-${HS_DOCS}/html/Foreign-Lua-Core-Error.html
-${HS_DOCS}/html/Foreign-Lua-Core-RawBindings.html
-${HS_DOCS}/html/Foreign-Lua-Core-Types.html
-${HS_DOCS}/html/Foreign-Lua-Core.html
-${HS_DOCS}/html/Foreign-Lua-FunctionCalling.html
-${HS_DOCS}/html/Foreign-Lua-Module.html
-${HS_DOCS}/html/Foreign-Lua-Types-Peekable.html
-${HS_DOCS}/html/Foreign-Lua-Types-Pushable.html
-${HS_DOCS}/html/Foreign-Lua-Types.html
-${HS_DOCS}/html/Foreign-Lua-Userdata.html
-${HS_DOCS}/html/Foreign-Lua-Util.html
-${HS_DOCS}/html/Foreign-Lua.html
-${HS_DOCS}/html/doc-index-A.html
-${HS_DOCS}/html/doc-index-All.html
-${HS_DOCS}/html/doc-index-B.html
-${HS_DOCS}/html/doc-index-C.html
-${HS_DOCS}/html/doc-index-D.html
-${HS_DOCS}/html/doc-index-E.html
-${HS_DOCS}/html/doc-index-F.html
-${HS_DOCS}/html/doc-index-G.html
-${HS_DOCS}/html/doc-index-H.html
-${HS_DOCS}/html/doc-index-I.html
-${HS_DOCS}/html/doc-index-L.html
-${HS_DOCS}/html/doc-index-M.html
-${HS_DOCS}/html/doc-index-N.html
-${HS_DOCS}/html/doc-index-O.html
-${HS_DOCS}/html/doc-index-P.html
-${HS_DOCS}/html/doc-index-R.html
-${HS_DOCS}/html/doc-index-S.html
-${HS_DOCS}/html/doc-index-T.html
-${HS_DOCS}/html/doc-index-U.html
-${HS_DOCS}/html/doc-index-W.html
-${HS_DOCS}/html/doc-index-Y.html
-${HS_DOCS}/html/doc-index.html
-${HS_DOCS}/html/haddock-bundle.min.js
-${HS_DOCS}/html/hslua.haddock
-${HS_DOCS}/html/index.html
-${HS_DOCS}/html/linuwial.css
-${HS_DOCS}/html/meta.json
-${HS_DOCS}/html/quick-jump.css
-${HS_DOCS}/html/synopsis.png
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/LICENSE
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Call.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Core-Constants.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Core-Error.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Core-RawBindings.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Core-Types.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Core.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-FunctionCalling.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Module.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Peek.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Push.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Auxiliary.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Call.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Constants.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Error.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Functions.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Types.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Raw-Userdata.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Types-Peekable.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Types-Pushable.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Types.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Userdata.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Utf8.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua-Util.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/Foreign-Lua.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-35.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-60.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-61.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-A.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-All.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-C.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-D.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-E.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-F.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-G.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-H.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-I.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-L.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-M.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-N.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-O.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-P.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-R.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-S.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-T.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-U.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-W.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index-Y.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/doc-index.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/haddock-bundle.min.js
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/hslua.haddock
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/index.html
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/linuwial.css
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/meta.json
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/quick-jump.css
+share/doc/${HS_PLATFORM}/hslua-${PKGVERSION}/html/synopsis.png
Index: pkgsrc/lang/hs-hslua/buildlink3.mk
diff -u pkgsrc/lang/hs-hslua/buildlink3.mk:1.1 pkgsrc/lang/hs-hslua/buildlink3.mk:1.2
--- pkgsrc/lang/hs-hslua/buildlink3.mk:1.1      Wed Jan 15 12:40:38 2020
+++ pkgsrc/lang/hs-hslua/buildlink3.mk  Fri Apr 23 09:47:37 2021
@@ -1,16 +1,14 @@
-# $NetBSD: buildlink3.mk,v 1.1 2020/01/15 12:40:38 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2021/04/23 09:47:37 pho Exp $
 
 BUILDLINK_TREE+=       hs-hslua
 
 .if !defined(HS_HSLUA_BUILDLINK3_MK)
 HS_HSLUA_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-hslua+=       hs-hslua>=1.0.3
-BUILDLINK_ABI_DEPENDS.hs-hslua+=       hs-hslua>=1.0.3.2
+BUILDLINK_API_DEPENDS.hs-hslua+=       hs-hslua>=1.3.0
+BUILDLINK_ABI_DEPENDS.hs-hslua+=       hs-hslua>=1.3.0.1
 BUILDLINK_PKGSRCDIR.hs-hslua?=         ../../lang/hs-hslua
 
-.include "../../devel/hs-exceptions/buildlink3.mk"
-.include "../../devel/hs-fail/buildlink3.mk"
 .include "../../lang/lua53/buildlink3.mk"
 .endif # HS_HSLUA_BUILDLINK3_MK
 
Index: pkgsrc/lang/hs-hslua/distinfo
diff -u pkgsrc/lang/hs-hslua/distinfo:1.1 pkgsrc/lang/hs-hslua/distinfo:1.2
--- pkgsrc/lang/hs-hslua/distinfo:1.1   Wed Jan 15 12:40:38 2020
+++ pkgsrc/lang/hs-hslua/distinfo       Fri Apr 23 09:47:37 2021
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1 2020/01/15 12:40:38 pho Exp $
+$NetBSD: distinfo,v 1.2 2021/04/23 09:47:37 pho Exp $
 
-SHA1 (hslua-1.0.3.2.tar.gz) = afbcc622c003b309b60045f7c082c036f7a2bd98
-RMD160 (hslua-1.0.3.2.tar.gz) = 6581567146bb688b1ab133ca671d19bdc81cc434
-SHA512 (hslua-1.0.3.2.tar.gz) = 2e047e32a55d0c9512388445ba318d7ceec85f467c89ad825cceb2c60b5b1dce10fa5f014009cb105f71d109fd66eca0c94b88d3a5e26a85ae0dc3e327606e38
-Size (hslua-1.0.3.2.tar.gz) = 237230 bytes
-SHA1 (patch-hslua.cabal) = 2785ac0294e90834f31e612440658976d1de8489
+SHA1 (hslua-1.3.0.1.tar.gz) = 1b21df93d836f073b13963541ed63cb6dc66db18
+RMD160 (hslua-1.3.0.1.tar.gz) = 2460186366dcaa130302195de6c135fe86887d63
+SHA512 (hslua-1.3.0.1.tar.gz) = 6c270cfd3abd81c3b06dc2005796909ea96e14ecc2ff4689f18164ac38fe13f99ff0e5cd25ed1aa020ad422c7e52d2d40001e1c7298436c10e04f3670aa08e98
+Size (hslua-1.3.0.1.tar.gz) = 253503 bytes
+SHA1 (patch-hslua.cabal) = 7bb7b83c988d3cf00150d768361aa0ae25338529

Index: pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal
diff -u pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal:1.1 pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal:1.2
--- pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal:1.1  Wed Jan 15 12:40:38 2020
+++ pkgsrc/lang/hs-hslua/patches/patch-hslua.cabal      Fri Apr 23 09:47:37 2021
@@ -1,11 +1,11 @@
-$NetBSD: patch-hslua.cabal,v 1.1 2020/01/15 12:40:38 pho Exp $
+$NetBSD: patch-hslua.cabal,v 1.2 2021/04/23 09:47:37 pho Exp $
 
 Correct the pkg-config package name.
 
---- hslua.cabal.orig   2020-01-15 12:38:03.950345594 +0000
+--- hslua.cabal.orig   2001-09-09 01:46:40.000000000 +0000
 +++ hslua.cabal
-@@ -123,7 +123,7 @@ library
- 
+@@ -146,7 +146,7 @@ library
+   include-dirs:        cbits/hslua
    if flag(system-lua) || flag(pkg-config)
      if flag(pkg-config)
 -      pkgconfig-depends: lua5.3



Home | Main Index | Thread Index | Old Index