Discussion:
in 5.1, find pathname for required module?
Norman Ramsey
2018-11-10 12:51:26 UTC
Permalink
I have a large installed based of Lua 5.1 code (about 75,000 lines),
and I've recently found it useful to write Lua code that is a lot
like Make rules. This code needs to rebuild files when the code
itself has changed, so I need to get a timestamp on the file in
which the code lives. I see that in Lua 5.3, there are facilities
like `package.searchpath` and an extension to `require` (relative to 5.1)
that can pass an extra parameter. Can anyone suggest a way to
replicate this functionality in 5.1?


Norman
Luiz Henrique de Figueiredo
2018-11-10 18:20:13 UTC
Permalink
Post by Norman Ramsey
I see that in Lua 5.3, there are facilities
like `package.searchpath` and an extension to `require` (relative to 5.1)
that can pass an extra parameter. Can anyone suggest a way to
replicate this functionality in 5.1?
I haven't tried it, but from a quick look at the 5.1 loadlib.c, it
seems that it's just a matter of backporting the 5.3 functionality to
5.1.
Thijs Schreijer
2018-11-13 21:56:17 UTC
Permalink
On 10 Nov 2018, at 13:51, Norman Ramsey <***@cs.tufts.edu<mailto:***@cs.tufts.edu>> wrote:

I have a large installed based of Lua 5.1 code (about 75,000 lines),
and I've recently found it useful to write Lua code that is a lot
like Make rules. This code needs to rebuild files when the code
itself has changed, so I need to get a timestamp on the file in
which the code lives. I see that in Lua 5.3, there are facilities
like `package.searchpath` and an extension to `require` (relative to 5.1)
that can pass an extra parameter. Can anyone suggest a way to
replicate this functionality in 5.1?


Norman


I don’t know if it's of any help, but there is a pure-lua implementation of ‘require’ available. I think by Rob Hoelz. You might be able to adapt those?

Here’s one: https://github.com/pygy/require.lua

But this is the one I was looking for: https://github.com/hoelzro/lua-procure

Thijs

Continue reading on narkive:
Loading...