Bug fixed in commit 16c615056e914ed4342e6a307b40db80485acde2;
add a test to prevent it from happening again.
Fixes: https://todo.sr.ht/~jeremy/callisto/2
Remove lua, luac, and *.so. The Lua executables aren't built anymore
so we don't need these in the gitignore any longer, and therefore we
won't need the external gitignore either.
Needed for functions like cl.mesg which need to print a formatted
message. Previously these functions had to call string.format, and
would have to throw an error if it was not available.
fs.status returns a table containing information concerning the status
of a file. Currently, the table includes the following information:
string path -- the given path to the file; the first argument
integer mode -- bitmask of file modes; see chmod(2)
integer uid -- owner of the file in UID form
integer gid -- owner group of the file in GID form
integer accessdate -- date the file was last accessed
integer modifydate -- date the file was last modified
integer chdate -- date the file's status last changed
Dates are given in the form of an integer number representing the
number of seconds since Jan 1, 1970 (unixtime).
For more information consult the definition of sys/stat.h
according to POSIX:
https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html
Update the version of Lua included with Callisto to Lua 5.4.7.
Re-generate patches to apply cleanly on top of Lua 5.4.7 sources.
Fixes: https://todo.sr.ht/~jeremy/callisto/8
Add a script that installs a Lua source archive into the Callisto
source tree. This will ease the pain of transitioning to Lua 5.4.7.
References: https://todo.sr.ht/~jeremy/callisto/8