Skip to content

Commit d74571f

Browse files
DilumAluthgeKristofferC
authored andcommitted
Remove some other uses of the unauthenticated git:// protocol in Git URLs (#42907)
(cherry picked from commit e03ead0)
1 parent f5954c1 commit d74571f

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

contrib/new-stdlib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ mv "$ROOT/Makefile.tmp" "$ROOT/Makefile"
5656
cat >"$ROOT/$NAME.version" <<EOF
5757
${UNAME}_BRANCH = master
5858
${UNAME}_SHA1 = $SHA1
59-
${UNAME}_GIT_URL := git://github.com/$USER/$NAME.jl.git
59+
${UNAME}_GIT_URL := https://github.com/$USER/$NAME.jl.git
6060
${UNAME}_TAR_URL = https://api.github.com/repos/$USER/$NAME.jl/tarball/\$1
6161
EOF
6262

deps/blastrampoline.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
ifneq ($(USE_BINARYBUILDER_BLASTRAMPOLINE),1)
44

5-
BLASTRAMPOLINE_GIT_URL := git://github.com/staticfloat/libblastrampoline.git
6-
BLASTRAMPOLINE_TAR_URL = https://api.github.com/repos/staticfloat/libblastrampoline/tarball/$1
5+
BLASTRAMPOLINE_GIT_URL := https://github.com/JuliaLinearAlgebra/libblastrampoline.git
6+
BLASTRAMPOLINE_TAR_URL = https://api.github.com/repos/JuliaLinearAlgebra/libblastrampoline/tarball/$1
77
$(eval $(call git-external,blastrampoline,BLASTRAMPOLINE,,,$(BUILDDIR)))
88

99
$(BUILDDIR)/$(BLASTRAMPOLINE_SRC_DIR)/build-configured: $(BUILDDIR)/$(BLASTRAMPOLINE_SRC_DIR)/source-extracted

deps/libgit2.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## libgit2
22
ifneq ($(USE_BINARYBUILDER_LIBGIT2),1)
33

4-
LIBGIT2_GIT_URL := git://github.com/libgit2/libgit2.git
4+
LIBGIT2_GIT_URL := https://github.com/libgit2/libgit2.git
55
LIBGIT2_TAR_URL = https://api.github.com/repos/libgit2/libgit2/tarball/$1
66
$(eval $(call git-external,libgit2,LIBGIT2,CMakeLists.txt,,$(SRCCACHE)))
77

deps/libssh2.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## libssh2
22
ifneq ($(USE_BINARYBUILDER_LIBSSH2), 1)
3-
LIBSSH2_GIT_URL := git://github.com/libssh2/libssh2.git
3+
LIBSSH2_GIT_URL := https://github.com/libssh2/libssh2.git
44
LIBSSH2_TAR_URL = https://api.github.com/repos/libssh2/libssh2/tarball/$1
55
$(eval $(call git-external,libssh2,LIBSSH2,CMakeLists.txt,,$(SRCCACHE)))
66

deps/libuv.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## LIBUV ##
22
ifneq ($(USE_BINARYBUILDER_LIBUV),1)
3-
LIBUV_GIT_URL:=git://github.com/JuliaLang/libuv.git
3+
LIBUV_GIT_URL:=https://github.com/JuliaLang/libuv.git
44
LIBUV_TAR_URL=https://api.github.com/repos/JuliaLang/libuv/tarball/$1
55
$(eval $(call git-external,libuv,LIBUV,configure,,$(SRCCACHE)))
66

deps/libwhich.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## LIBWHICH ##
2-
LIBWHICH_GIT_URL := git://github.com/vtjnash/libwhich.git
2+
LIBWHICH_GIT_URL := https://github.com/vtjnash/libwhich.git
33
LIBWHICH_TAR_URL = https://api.github.com/repos/vtjnash/libwhich/tarball/$1
44
$(eval $(call git-external,libwhich,LIBWHICH,,,$(BUILDDIR)))
55

deps/llvm.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include $(SRCDIR)/llvm-ver.make
33
include $(SRCDIR)/llvm-options.mk
44

55
ifneq ($(USE_BINARYBUILDER_LLVM), 1)
6-
LLVM_GIT_URL:=git://github.com/JuliaLang/llvm-project.git
6+
LLVM_GIT_URL:=https://github.com/JuliaLang/llvm-project.git
77
LLVM_TAR_URL=https://api.github.com/repos/JuliaLang/llvm-project/tarball/$1
88
$(eval $(call git-external,llvm,LLVM,CMakeLists.txt,,$(SRCCACHE)))
99

deps/openblas.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## OpenBLAS ##
22
ifneq ($(USE_BINARYBUILDER_OPENBLAS), 1)
33
# LAPACK is built into OpenBLAS by default
4-
OPENBLAS_GIT_URL := git://github.com/xianyi/OpenBLAS.git
4+
OPENBLAS_GIT_URL := https://github.com/xianyi/OpenBLAS.git
55
OPENBLAS_TAR_URL = https://api.github.com/repos/xianyi/OpenBLAS/tarball/$1
66
$(eval $(call git-external,openblas,OPENBLAS,,,$(BUILDDIR)))
77

deps/openlibm.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## openlibm ##
22
ifneq ($(USE_BINARYBUILDER_OPENLIBM), 1)
3-
OPENLIBM_GIT_URL := git://github.com/JuliaMath/openlibm.git
3+
OPENLIBM_GIT_URL := https://github.com/JuliaMath/openlibm.git
44
OPENLIBM_TAR_URL = https://api.github.com/repos/JuliaMath/openlibm/tarball/$1
55
$(eval $(call git-external,openlibm,OPENLIBM,,,$(BUILDDIR)))
66

deps/utf8proc.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## UTF8PROC ##
2-
UTF8PROC_GIT_URL := git://github.com/JuliaLang/utf8proc.git
2+
UTF8PROC_GIT_URL := https://github.com/JuliaLang/utf8proc.git
33
UTF8PROC_TAR_URL = https://api.github.com/repos/JuliaLang/utf8proc/tarball/$1
44
$(eval $(call git-external,utf8proc,UTF8PROC,,,$(BUILDDIR)))
55

deps/zlib.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Zlib ##
22
ifneq ($(USE_BINARYBUILDER_ZLIB), 1)
3-
ZLIB_GIT_URL := git://github.com/madler/zlib.git
3+
ZLIB_GIT_URL := https://github.com/madler/zlib.git
44
ZLIB_TAR_URL = https://api.github.com/repos/madler/zlib/tarball/$1
55
$(eval $(call git-external,zlib,ZLIB,,,$(SRCCACHE)))
66

0 commit comments

Comments
 (0)