From dbec0eef8c14bc0e90c78a4f18b8802697d983fe Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 26 Apr 2022 13:16:28 +0000 Subject: [PATCH] Include rockspecs for older versions by Will Sinatra --- rockspecs/itte-1.0-1.rockspec | 31 +++++++++++++++++++++++++++++++ rockspecs/itte-1.1-1.rockspec | 31 +++++++++++++++++++++++++++++++ rockspecs/itte-1.2-1.rockspec | 1 + 3 files changed, 63 insertions(+) create mode 100644 rockspecs/itte-1.0-1.rockspec create mode 100644 rockspecs/itte-1.1-1.rockspec diff --git a/rockspecs/itte-1.0-1.rockspec b/rockspecs/itte-1.0-1.rockspec new file mode 100644 index 0000000..e1a9e1b --- /dev/null +++ b/rockspecs/itte-1.0-1.rockspec @@ -0,0 +1,31 @@ +package = "itte" +version = "1.0-1" +source = { + url = "git+https://git.tilde.town/mio/itte", + tag = "1.0", +} +description = { + summary = "Mini IRC bot module in lua", + detailed = [[ + Currently supports: + - Authentication via SASL (plain) or Nickserv + - Joining multiple servers + - Ad-hoc connecting to servers and joining channels + - Config reload + ]], + homepage = "https://git.tilde.town/mio/itte", + license = "BSD-3.0" +} +dependencies = { + "lua >= 5.1, < 5.4", + "luasec >= 0.9", + "luasocket >= 2.9" +} +supported_platforms = { "linux" } +build = { + type = "builtin", + modules = { + itte = "itte.lua", + itteutil = "itteutil.lua" + }, +} diff --git a/rockspecs/itte-1.1-1.rockspec b/rockspecs/itte-1.1-1.rockspec new file mode 100644 index 0000000..bf0f2fc --- /dev/null +++ b/rockspecs/itte-1.1-1.rockspec @@ -0,0 +1,31 @@ +package = "itte" +version = "1.1-1" +source = { + url = "git+https://git.tilde.town/mio/itte", + tag = "1.1", +} +description = { + summary = "Mini IRC bot module in lua", + detailed = [[ + Currently supports: + - Authentication via SASL (plain) or Nickserv + - Joining multiple servers + - Ad-hoc connecting to servers and joining channels + - Config reload + ]], + homepage = "https://git.tilde.town/mio/itte", + license = "BSD-3.0" +} +dependencies = { + "lua >= 5.1, < 5.4", + "luasec >= 0.9", + "luasocket >= 2.9" +} +supported_platforms = { "linux" } +build = { + type = "builtin", + modules = { + itte = "itte.lua", + itteutil = "itteutil.lua" + }, +} diff --git a/rockspecs/itte-1.2-1.rockspec b/rockspecs/itte-1.2-1.rockspec index 67ee65c..7e17ccf 100644 --- a/rockspecs/itte-1.2-1.rockspec +++ b/rockspecs/itte-1.2-1.rockspec @@ -12,6 +12,7 @@ description = { - Joining multiple servers - Ad-hoc connecting to servers and joining channels - Config reload + - Scheduled tasks ]], homepage = "https://git.tilde.town/mio/itte", license = "BSD-3.0"