diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | packaging/android/android-build-wrapper.sh | 4 | ||||
-rw-r--r-- | packaging/android/build.sh | 2 | ||||
-rw-r--r-- | packaging/ios/build.sh | 2 | ||||
-rwxr-xr-x | scripts/build.sh | 8 | ||||
-rwxr-xr-x | scripts/mobilecomponents.sh | 2 |
7 files changed, 11 insertions, 11 deletions
@@ -129,7 +129,7 @@ like this: mkdir -p ~/src cd ~/src -git clone git://github.com/Subsurface-divelog/subsurface +git clone https://github.com/Subsurface-divelog/subsurface.git ./subsurface/scripts/build.sh # <- this step will take quite a while as it # compiles a handful of libraries before # building Subsurface @@ -17,7 +17,7 @@ License: GPLv2 You can get the sources to the latest development version from the git repository: -git clone git://github.com/Subsurface-divelog/subsurface +git clone https://github.com/Subsurface-divelog/subsurface.git You can also fork the repository and browse the sources at the same site, simply using https://github.com/Subsurface-divelog/subsurface diff --git a/packaging/android/android-build-wrapper.sh b/packaging/android/android-build-wrapper.sh index 054d9b4bb..e532c7a21 100644 --- a/packaging/android/android-build-wrapper.sh +++ b/packaging/android/android-build-wrapper.sh @@ -91,14 +91,14 @@ fi # ok, now we have Qt, SDK, and NDK - let's get us some Subsurface if [ ! -d subsurface ] ; then - git clone git://github.com/Subsurface-divelog/subsurface + git clone https://github.com/Subsurface-divelog/subsurface.git fi pushd subsurface git pull --rebase popd if [ ! -d libdivecomputer ] ; then - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc libdivecomputer + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer pushd libdivecomputer autoreconf --install autoreconf --install diff --git a/packaging/android/build.sh b/packaging/android/build.sh index 29cbdb4f1..0f2a1d0c3 100644 --- a/packaging/android/build.sh +++ b/packaging/android/build.sh @@ -315,7 +315,7 @@ if [ ! -e "$PKG_CONFIG_LIBDIR/libdivecomputer.pc" ] ; then fi if [ ! -e qt-android-cmake ] ; then - git clone git://github.com/LaurentGomila/qt-android-cmake.git + git clone https://github.com/LaurentGomila/qt-android-cmake.git else pushd qt-android-cmake git pull diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index 69c7d3404..c0fcbe5cb 100644 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -335,7 +335,7 @@ echo next building for $ARCH # build libdivecomputer if [ ! -d libdivecomputer ] ; then - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer fi cd libdivecomputer git pull --rebase diff --git a/scripts/build.sh b/scripts/build.sh index 5a95d319c..1e64b5156 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -94,7 +94,7 @@ if [[ $PLATFORM = Darwin || "$LIBGIT" < "24" ]] ; then if [[ $1 = local ]] ; then git clone $SRC/../libgit2 libgit2 else - git clone git://github.com/libgit2/libgit2 + git clone https://github.com/libgit2/libgit2.git fi fi cd libgit2 @@ -129,7 +129,7 @@ if [ ! -d libdivecomputer ] ; then if [[ $1 = local ]] ; then git clone $SRC/../libdivecomputer libdivecomputer else - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer fi fi cd libdivecomputer @@ -162,7 +162,7 @@ if [ $BUILDMARBLE = 1 ]; then if [[ $1 = local ]] ; then git clone $SRC/../marble-source marble-source else - git clone -b Subsurface-branch git://github.com/Subsurface-divelog/marble.git marble-source + git clone -b Subsurface-branch https://github.com/Subsurface-divelog/marble.git marble-source fi fi cd marble-source @@ -222,7 +222,7 @@ if [ "$BUILDGRANTLEE" = "1" ] ; then if [[ $1 = local ]] ; then git clone $SRC/../grantlee grantlee else - git clone git://github.com/steveire/grantlee.git + git clone https://github.com/steveire/grantlee.git fi fi cd grantlee diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 71c053177..9c8515b97 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -26,7 +26,7 @@ fi # or SHAs from upstream cd $SRC if [ ! -d kirigami ] ; then - git clone -b master git://github.com/KDE/kirigami + git clone -b master https://github.com/KDE/kirigami.git fi if [ "$NOPULL" = "" ] ; then pushd kirigami |