From 5f17956e12dd92879557257b0ea9d36c1946b026 Mon Sep 17 00:00:00 2001 From: Matt Hesketh Date: Mon, 16 Feb 2026 23:46:25 +0000 Subject: [PATCH] chore: fix rockspec source URLs to use HTTPS tarball GitHub deprecated the git:// protocol. Use archive tarball URLs instead. --- telegram-bot-lua-3.0-0.rockspec | 5 ++--- telegram-bot-lua-3.1-0.rockspec | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/telegram-bot-lua-3.0-0.rockspec b/telegram-bot-lua-3.0-0.rockspec index e18f2bf..30158c3 100644 --- a/telegram-bot-lua-3.0-0.rockspec +++ b/telegram-bot-lua-3.0-0.rockspec @@ -1,9 +1,8 @@ package = "telegram-bot-lua" version = "3.0-0" source = { - url = "git://github.com/wrxck/telegram-bot-lua.git", - dir = "telegram-bot-lua", - tag = "v3.0" + url = "https://github.com/wrxck/telegram-bot-lua/archive/refs/tags/v3.0.tar.gz", + dir = "telegram-bot-lua-3.0" } description = { summary = "A feature-filled Telegram bot API library", diff --git a/telegram-bot-lua-3.1-0.rockspec b/telegram-bot-lua-3.1-0.rockspec index 3ed7721..5c58ef1 100644 --- a/telegram-bot-lua-3.1-0.rockspec +++ b/telegram-bot-lua-3.1-0.rockspec @@ -1,9 +1,8 @@ package = "telegram-bot-lua" version = "3.1-0" source = { - url = "git://github.com/wrxck/telegram-bot-lua.git", - dir = "telegram-bot-lua", - tag = "v3.1" + url = "https://github.com/wrxck/telegram-bot-lua/archive/refs/tags/v3.1.tar.gz", + dir = "telegram-bot-lua-3.1" } description = { summary = "A feature-filled Telegram bot API library",