aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsbjørn Sloth Tønnesen <ast@2e8.dk>2020-02-17 20:37:05 +0000
committerAsbjørn Sloth Tønnesen <ast@2e8.dk>2020-02-17 20:37:05 +0000
commit2910e546f11b556d0f9c3013d4f74957c808bd27 (patch)
tree68b76d7e59977706b8fa417d7642524eea85b03e
parent87ae0d70b2bc1c5aa4078602a343f2c2d3db3feb (diff)
downloadlua-inet-2910e546f11b556d0f9c3013d4f74957c808bd27.tar.gz
lua-inet-2910e546f11b556d0f9c3013d4f74957c808bd27.tar.xz
lua-inet-2910e546f11b556d0f9c3013d4f74957c808bd27.zip
release v0.2.0lua-inet_0.2.0
Signed-off-by: Asbjørn Sloth Tønnesen <ast@2e8.dk>
-rw-r--r--rockspecs/inet-0.2.0-1.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/inet-0.2.0-1.rockspec b/rockspecs/inet-0.2.0-1.rockspec
new file mode 100644
index 0000000..9114c77
--- /dev/null
+++ b/rockspecs/inet-0.2.0-1.rockspec
@@ -0,0 +1,27 @@
+rockspec_format = "3.0"
+package = 'inet'
+version = '0.2.0-1'
+source = {
+ url = 'https://git.2e8.dk/lua-inet/snapshot/lua-inet_0.2.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',
+ },
+}