mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Change protocoll for any git clone from Github to https
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
d6f2658268
commit
d82f8cbd3f
7 changed files with 11 additions and 11 deletions
2
INSTALL
2
INSTALL
|
@ -129,7 +129,7 @@ like this:
|
||||||
|
|
||||||
mkdir -p ~/src
|
mkdir -p ~/src
|
||||||
cd ~/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
|
./subsurface/scripts/build.sh # <- this step will take quite a while as it
|
||||||
# compiles a handful of libraries before
|
# compiles a handful of libraries before
|
||||||
# building Subsurface
|
# building Subsurface
|
||||||
|
|
2
README
2
README
|
@ -17,7 +17,7 @@ License: GPLv2
|
||||||
You can get the sources to the latest development version from the git
|
You can get the sources to the latest development version from the git
|
||||||
repository:
|
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,
|
You can also fork the repository and browse the sources at the same site,
|
||||||
simply using https://github.com/Subsurface-divelog/subsurface
|
simply using https://github.com/Subsurface-divelog/subsurface
|
||||||
|
|
|
@ -91,14 +91,14 @@ fi
|
||||||
|
|
||||||
# ok, now we have Qt, SDK, and NDK - let's get us some Subsurface
|
# ok, now we have Qt, SDK, and NDK - let's get us some Subsurface
|
||||||
if [ ! -d subsurface ] ; then
|
if [ ! -d subsurface ] ; then
|
||||||
git clone git://github.com/Subsurface-divelog/subsurface
|
git clone https://github.com/Subsurface-divelog/subsurface.git
|
||||||
fi
|
fi
|
||||||
pushd subsurface
|
pushd subsurface
|
||||||
git pull --rebase
|
git pull --rebase
|
||||||
popd
|
popd
|
||||||
|
|
||||||
if [ ! -d libdivecomputer ] ; then
|
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
|
pushd libdivecomputer
|
||||||
autoreconf --install
|
autoreconf --install
|
||||||
autoreconf --install
|
autoreconf --install
|
||||||
|
|
|
@ -315,7 +315,7 @@ if [ ! -e "$PKG_CONFIG_LIBDIR/libdivecomputer.pc" ] ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -e qt-android-cmake ] ; then
|
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
|
else
|
||||||
pushd qt-android-cmake
|
pushd qt-android-cmake
|
||||||
git pull
|
git pull
|
||||||
|
|
|
@ -335,7 +335,7 @@ echo next building for $ARCH
|
||||||
|
|
||||||
# build libdivecomputer
|
# build libdivecomputer
|
||||||
if [ ! -d libdivecomputer ] ; then
|
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
|
fi
|
||||||
cd libdivecomputer
|
cd libdivecomputer
|
||||||
git pull --rebase
|
git pull --rebase
|
||||||
|
|
|
@ -94,7 +94,7 @@ if [[ $PLATFORM = Darwin || "$LIBGIT" < "24" ]] ; then
|
||||||
if [[ $1 = local ]] ; then
|
if [[ $1 = local ]] ; then
|
||||||
git clone $SRC/../libgit2 libgit2
|
git clone $SRC/../libgit2 libgit2
|
||||||
else
|
else
|
||||||
git clone git://github.com/libgit2/libgit2
|
git clone https://github.com/libgit2/libgit2.git
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
cd libgit2
|
cd libgit2
|
||||||
|
@ -129,7 +129,7 @@ if [ ! -d libdivecomputer ] ; then
|
||||||
if [[ $1 = local ]] ; then
|
if [[ $1 = local ]] ; then
|
||||||
git clone $SRC/../libdivecomputer libdivecomputer
|
git clone $SRC/../libdivecomputer libdivecomputer
|
||||||
else
|
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
|
||||||
fi
|
fi
|
||||||
cd libdivecomputer
|
cd libdivecomputer
|
||||||
|
@ -162,7 +162,7 @@ if [ $BUILDMARBLE = 1 ]; then
|
||||||
if [[ $1 = local ]] ; then
|
if [[ $1 = local ]] ; then
|
||||||
git clone $SRC/../marble-source marble-source
|
git clone $SRC/../marble-source marble-source
|
||||||
else
|
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
|
||||||
fi
|
fi
|
||||||
cd marble-source
|
cd marble-source
|
||||||
|
@ -222,7 +222,7 @@ if [ "$BUILDGRANTLEE" = "1" ] ; then
|
||||||
if [[ $1 = local ]] ; then
|
if [[ $1 = local ]] ; then
|
||||||
git clone $SRC/../grantlee grantlee
|
git clone $SRC/../grantlee grantlee
|
||||||
else
|
else
|
||||||
git clone git://github.com/steveire/grantlee.git
|
git clone https://github.com/steveire/grantlee.git
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
cd grantlee
|
cd grantlee
|
||||||
|
|
|
@ -26,7 +26,7 @@ fi
|
||||||
# or SHAs from upstream
|
# or SHAs from upstream
|
||||||
cd $SRC
|
cd $SRC
|
||||||
if [ ! -d kirigami ] ; then
|
if [ ! -d kirigami ] ; then
|
||||||
git clone -b master git://github.com/KDE/kirigami
|
git clone -b master https://github.com/KDE/kirigami.git
|
||||||
fi
|
fi
|
||||||
if [ "$NOPULL" = "" ] ; then
|
if [ "$NOPULL" = "" ] ; then
|
||||||
pushd kirigami
|
pushd kirigami
|
||||||
|
|
Loading…
Add table
Reference in a new issue