Skip to content

Commit

Permalink
rockspec: use git+https:// for git repository URL
Browse files Browse the repository at this point in the history
GitHub is going to disable unencrypted Git protocol, so `git://` URLs
will stop working soon (see [1]).

[1]: https://github.blog/2021-09-01-improving-git-protocol-security-github/

Part of tarantool/tarantool#6587
  • Loading branch information
Totktonada committed Nov 2, 2021
1 parent 475f98e commit b91c51a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rockspecs/http-1.0.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package = 'http'
version = '1.0.1-1'
source = {
url = 'git://github.com/tarantool/http.git',
url = 'git+https://github.com/tarantool/http.git',
tag = '1.0.1',
}
description = {
Expand Down
2 changes: 1 addition & 1 deletion rockspecs/http-1.0.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package = 'http'
version = '1.0.2-1'
source = {
url = 'git://github.com/tarantool/http.git',
url = 'git+https://github.com/tarantool/http.git',
tag = '1.0.2',
}
description = {
Expand Down
2 changes: 1 addition & 1 deletion rockspecs/http-1.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package = 'http'
version = '1.1.1-1'
source = {
url = 'git://github.com/tarantool/http.git',
url = 'git+https://github.com/tarantool/http.git',
tag = '1.1.1',
}
description = {
Expand Down
2 changes: 1 addition & 1 deletion rockspecs/http-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package = 'http'
version = 'scm-1'
source = {
url = 'git://github.com/tarantool/http.git',
url = 'git+https://github.com/tarantool/http.git',
branch = 'master',
}
description = {
Expand Down

0 comments on commit b91c51a

Please sign in to comment.