gnu: LLVM: Use HTTPS URLs.
* gnu/packages/llvm.scm (llvm, clang-runtime-from-llvm, clang-from-llvm, llvm-3.9.1, llvm-3.7, llvm-3.6, llvm-3.5)[source](uri): Use HTTPS. (emacs-clang-format)[description]: Likewise.
This commit is contained in:
parent
9846ec0bea
commit
3bdcc668ee
|
@ -51,7 +51,7 @@
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/llvm-" version ".src.tar.xz"))
|
version "/llvm-" version ".src.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -118,7 +118,7 @@ of programming tools as well as libraries with equivalent functionality.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/compiler-rt-" version ".src.tar.xz"))
|
version "/compiler-rt-" version ".src.tar.xz"))
|
||||||
(sha256 (base32 hash))
|
(sha256 (base32 hash))
|
||||||
(patches (map search-patch patches))))
|
(patches (map search-patch patches))))
|
||||||
|
@ -150,7 +150,7 @@ compiler. In LLVM this library is called \"compiler-rt\".")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/cfe-" version ".src.tar.xz"))
|
version "/cfe-" version ".src.tar.xz"))
|
||||||
(sha256 (base32 hash))
|
(sha256 (base32 hash))
|
||||||
(patches (map search-patch patches))))
|
(patches (map search-patch patches))))
|
||||||
|
@ -291,7 +291,7 @@ code analysis tools.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/llvm-" version ".src.tar.xz"))
|
version "/llvm-" version ".src.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -341,7 +341,7 @@ code analysis tools.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/llvm-" version ".src.tar.xz"))
|
version "/llvm-" version ".src.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -365,7 +365,7 @@ code analysis tools.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/llvm-" version ".src.tar.xz"))
|
version "/llvm-" version ".src.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -388,7 +388,7 @@ code analysis tools.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://llvm.org/releases/"
|
(uri (string-append "https://llvm.org/releases/"
|
||||||
version "/llvm-" version ".src.tar.xz"))
|
version "/llvm-" version ".src.tar.xz"))
|
||||||
(patches
|
(patches
|
||||||
(search-patches "llvm-3.5-fix-clang-build-with-gcc5.patch"))
|
(search-patches "llvm-3.5-fix-clang-build-with-gcc5.patch"))
|
||||||
|
@ -511,7 +511,7 @@ SOURCE-FILES found in SOURCE-PACKAGE."
|
||||||
(description "This package allows to filter code through @code{clang-format}
|
(description "This package allows to filter code through @code{clang-format}
|
||||||
to fix its formatting. @code{clang-format} is a tool that formats
|
to fix its formatting. @code{clang-format} is a tool that formats
|
||||||
C/C++/Obj-C code according to a set of style options, see
|
C/C++/Obj-C code according to a set of style options, see
|
||||||
@url{http://clang.llvm.org/docs/ClangFormatStyleOptions.html}.")))
|
@url{https://clang.llvm.org/docs/ClangFormatStyleOptions.html}.")))
|
||||||
|
|
||||||
(define-public emacs-clang-rename
|
(define-public emacs-clang-rename
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue