Skip to content

Commit a0f32f1

Browse files
committedJul 23, 2019
Change from http to https for some URLs
1 parent 17427df commit a0f32f1

6 files changed

+17
-17
lines changed
 

‎.travis/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get -qq update && apt-get install -y --no-install-recommends \
2121
&& rm -rf /var/lib/apt/lists/*
2222

2323
# Travis has upgraded clang, from clang-3.8 to clang-7.0
24-
RUN printf "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main\ndeb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main\n" > /etc/apt/sources.list.d/llvm-toolchain.list && apt-key adv --fetch-keys http://apt.llvm.org/llvm-snapshot.gpg.key && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
24+
RUN printf "deb https://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main\ndeb-src https://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main\n" > /etc/apt/sources.list.d/llvm-toolchain.list && apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
2525

2626
RUN apt-get -qq update && apt-get install -y --no-install-recommends \
2727
clang-7 \

‎.travis/install_cuda.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
if [ -n "$CUDA" ]; then
1010
echo "Installing CUDA support"
11-
travis_retry wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_${CUDA}_amd64.deb
11+
travis_retry wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_${CUDA}_amd64.deb
1212
travis_retry sudo dpkg -i cuda-repo-ubuntu1404_${CUDA}_amd64.deb
1313
travis_retry sudo apt-get update -qq
1414
export CUDA_APT=${CUDA:0:3}

‎GPL-3.0.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GNU GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

4-
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
4+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
55
Everyone is permitted to copy and distribute verbatim copies
66
of this license document, but changing it is not allowed.
77

@@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
645645
GNU General Public License for more details.
646646

647647
You should have received a copy of the GNU General Public License
648-
along with this program. If not, see <http://www.gnu.org/licenses/>.
648+
along with this program. If not, see <https://www.gnu.org/licenses/>.
649649

650650
Also add information on how to contact you by electronic and paper mail.
651651

@@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
664664
You should also get your employer (if you work as a programmer) or school,
665665
if any, to sign a "copyright disclaimer" for the program, if necessary.
666666
For more information on this, and how to apply and follow the GNU GPL, see
667-
<http://www.gnu.org/licenses/>.
667+
<https://www.gnu.org/licenses/>.
668668

669669
The GNU General Public License does not permit incorporating your program
670670
into proprietary programs. If your program is a subroutine library, you
671671
may consider it more useful to permit linking proprietary applications with
672672
the library. If this is what you want to do, use the GNU Lesser General
673673
Public License instead of this License. But first, please read
674-
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
674+
<https://www.gnu.org/philosophy/why-not-lgpl.html>.

‎LICENSE.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The license for ccache as a whole is as follows:
2222
-------------------------------------------------------------------------------
2323

2424
The full license text can be found in GPL-3.0.txt and at
25-
http://www.gnu.org/licenses/gpl-3.0.html.
25+
https://www.gnu.org/licenses/gpl-3.0.html.
2626

2727

2828
Copyright and authors
@@ -56,7 +56,7 @@ src/third_party/getopt_long.[hc]
5656
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5757

5858
This implementation of `getopt_long()` was copied from
59-
http://www.postgresql.org[PostgreSQL] and has the following license text:
59+
https://www.postgresql.org[PostgreSQL] and has the following license text:
6060

6161
-------------------------------------------------------------------------------
6262
Portions Copyright (c) 1987, 1993, 1994
@@ -132,7 +132,7 @@ following license:
132132
m4/feature_macros.m4
133133
~~~~~~~~~~~~~~~~~~~~
134134

135-
This Autoconf M4 snippet comes from http://www.python.org[Python] 2.6's
135+
This Autoconf M4 snippet comes from https://www.python.org[Python] 2.6's
136136
`configure.in` with the following license:
137137

138138
-------------------------------------------------------------------------------

‎doc/INSTALL-from-release-archive.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ To build ccache from a
1313
`--with-libb2-from-internet` to the configure script, which will make the
1414
script download libb2 from the Internet and unpack it in the local source
1515
tree. ccache will then be linked statically to the locally built libb2.
16-
- [libzstd](http://www.zstd.net). If you don't have libzstd installed and can't
17-
or don't want to install it on your system, you can pass
16+
- [libzstd](https://www.zstd.net). If you don't have libzstd installed and
17+
can't or don't want to install it on your system, you can pass
1818
`--with-libzstd-from-internet` to the configure script, which will make the
1919
script download libzstd from the Internet and unpack it in the local source
2020
tree. ccache will then be linked statically to the locally built libzstd.

‎doc/INSTALL.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ To build ccache from a source repository, you need:
88

99
- A C compiler (for instance GCC)
1010
- GNU Bourne Again SHell (bash) for tests.
11-
- [AsciiDoc](http://www.methods.co.nz/asciidoc/) to build the HTML
11+
- [AsciiDoc](https://www.methods.co.nz/asciidoc/) to build the HTML
1212
documentation.
1313
- [xsltproc](http://xmlsoft.org/XSLT/xsltproc2.html) to build the man page.
14-
- [Autoconf](http://www.gnu.org/software/autoconf/) to generate the configure
14+
- [Autoconf](https://www.gnu.org/software/autoconf/) to generate the configure
1515
script and related files.
16-
- [gperf](http://www.gnu.org/software/gperf/) to create lookup tables.
16+
- [gperf](https://www.gnu.org/software/gperf/) to create lookup tables.
1717
- [libb2](https://github.com/BLAKE2/libb2). If you don't have libb2 installed
1818
and can't or don't want to install it on your system, you can pass
1919
`--with-libb2-from-internet` to the configure script, which will make the
2020
script download libb2 from the Internet and unpack it in the local source
2121
tree. ccache will then be linked statically to the locally built libb2.
22-
- [libzstd](http://www.zstd.net). If you don't have libzstd installed and can't
23-
or don't want to install it on your system, you can pass
22+
- [libzstd](https://www.zstd.net). If you don't have libzstd installed and
23+
can't or don't want to install it on your system, you can pass
2424
`--with-libzstd-from-internet` to the configure script, which will make the
2525
script download libzstd from the Internet and unpack it in the local source
2626
tree. ccache will then be linked statically to the locally built libzstd.
2727

2828
To debug and run the performance test suite you'll also need:
2929

30-
- [Python](http://www.python.org)
30+
- [Python](https://www.python.org)
3131

3232

3333
Installation

0 commit comments

Comments
 (0)
Please sign in to comment.