From 88be5f120b7de65d2a93cad8f4ba2d934e620b04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Garci=CC=81a=20Cota?= Date: Tue, 13 Sep 2022 18:39:15 +0200 Subject: [PATCH] chore(rockspec) use https instead of git Using git:// for direct linking is not supported by github any more, so the rock is uninstallable on its current state. The simplest solution is changing the protocol from git:// to https:// A workaround exists - you can force git to always use https:// by using these settings: git config --global url."https://github.com/".insteadOf git@github.com: git config --global url."https://".insteadOf git:// But ideally the rocks should be installable without such global config changes. --- ...ssandra-1.5.2-0.rockspec => lua-cassandra-1.5.2-1.rockspec | 4 ++-- lua-cassandra-dev-0.rockspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename lua-cassandra-1.5.2-0.rockspec => lua-cassandra-1.5.2-1.rockspec (95%) diff --git a/lua-cassandra-1.5.2-0.rockspec b/lua-cassandra-1.5.2-1.rockspec similarity index 95% rename from lua-cassandra-1.5.2-0.rockspec rename to lua-cassandra-1.5.2-1.rockspec index ca759d0..dc7f397 100644 --- a/lua-cassandra-1.5.2-0.rockspec +++ b/lua-cassandra-1.5.2-1.rockspec @@ -1,7 +1,7 @@ package = "lua-cassandra" -version = "1.5.2-0" +version = "1.5.2-1" source = { - url = "git://github.com/thibaultcha/lua-cassandra", + url = "https://github.com/thibaultcha/lua-cassandra", tag = "1.5.2" } description = { diff --git a/lua-cassandra-dev-0.rockspec b/lua-cassandra-dev-0.rockspec index 90f366a..0d5cc26 100644 --- a/lua-cassandra-dev-0.rockspec +++ b/lua-cassandra-dev-0.rockspec @@ -1,7 +1,7 @@ package = "lua-cassandra" version = "dev-0" source = { - url = "git://github.com/thibaultcha/lua-cassandra" + url = "https://github.com/thibaultcha/lua-cassandra" } description = { summary = "A pure Lua client library for Apache Cassandra",