diff options
author | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2023-04-03 17:34:23 +0000 |
---|---|---|
committer | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2023-04-03 17:34:23 +0000 |
commit | 22ec1d9f4a89bb00615898faa6093629adb8e617 (patch) | |
tree | 96ad808d040525759f064b629df9021428e82b83 /rockspecs/inet-0.3.0-1.rockspec | |
parent | 7d6bae27cc46c2a587e8e8c3515b1322c8271ed2 (diff) | |
download | lua-inet-22ec1d9f4a89bb00615898faa6093629adb8e617.tar.gz lua-inet-22ec1d9f4a89bb00615898faa6093629adb8e617.tar.xz lua-inet-22ec1d9f4a89bb00615898faa6093629adb8e617.zip |
release v0.3.0HEADlua-inet_0.3.0master
Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
Diffstat (limited to 'rockspecs/inet-0.3.0-1.rockspec')
-rw-r--r-- | rockspecs/inet-0.3.0-1.rockspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/inet-0.3.0-1.rockspec b/rockspecs/inet-0.3.0-1.rockspec new file mode 100644 index 0000000..bffbf28 --- /dev/null +++ b/rockspecs/inet-0.3.0-1.rockspec @@ -0,0 +1,27 @@ +rockspec_format = "3.0" +package = 'inet' +version = '0.3.0-1' +source = { + url = 'https://git.2e8.dk/lua-inet/snapshot/lua-inet_0.3.0.tar.gz', +} +description = { + summary = 'an IP address mangling library', + homepage = 'https://git.2e8.dk/lua-inet/about/', + labels = { 'network', 'math' }, + license = 'GNU LGPL v3', +} +dependencies = { + 'lua >= 5.2, < 5.5', + 'lpeg >= 0.8.1', +} +build = { + type = 'builtin', + modules = { + ['inet'] = 'lua/inet/init.lua', + ['inet.bitops'] = 'lua/inet/bitops/init.lua', + ['inet.bitops.native'] = 'lua/inet/bitops/native.lua', + ['inet.common'] = 'lua/inet/common.lua', + ['inet.core'] = 'lua/inet/core.lua', + ['inet.set'] = 'lua/inet/set.lua', + }, +} |