Browse Source

chore(build): update toxcore to v0.2.9

reviewable/pr5492/r2
Anthony Bilinski 7 years ago
parent
commit
23da95a983
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      .travis/build-ubuntu-14-04.sh
  2. 2
      INSTALL.fa.md
  3. 2
      INSTALL.md
  4. 2
      bootstrap.sh
  5. 2
      docker/Dockerfile.debian
  6. 2
      docker/Dockerfile.ubuntu
  7. 4
      flatpak/io.github.qtox.qTox.json
  8. 2
      osx/qTox-Mac-Deployer-ULTIMATE.sh

2
.travis/build-ubuntu-14-04.sh

@ -132,7 +132,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y @@ -132,7 +132,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y
sudo ldconfig
cd ..
# toxcore
git clone --branch v0.2.7 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
git clone --branch v0.2.9 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
autoreconf -if
CC="ccache $CC" CXX="ccache $CXX" ./configure

2
INSTALL.fa.md

@ -632,7 +632,7 @@ cd .. @@ -632,7 +632,7 @@ cd ..
```bash
git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
git checkout v0.2.7
git checkout v0.2.9
autoreconf -if
./configure
make -j$(nproc)

2
INSTALL.md

@ -506,7 +506,7 @@ Provided that you have all required dependencies installed, you can simply run: @@ -506,7 +506,7 @@ Provided that you have all required dependencies installed, you can simply run:
```bash
git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
git checkout v0.2.7
git checkout v0.2.9
cmake .
make -j$(nproc)
sudo make install

2
bootstrap.sh

@ -31,7 +31,7 @@ readonly INSTALL_DIR=libs @@ -31,7 +31,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout
readonly TOXCORE_VERSION="v0.2.7"
readonly TOXCORE_VERSION="v0.2.9"
readonly SQLCIPHER_VERSION="v3.4.2"
# directory names of cloned repositories

2
docker/Dockerfile.debian

@ -34,7 +34,7 @@ RUN apt-get update && \ @@ -34,7 +34,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.2 && \
RUN git checkout v0.2.9 && \
cmake . && \
cmake --build . && \
make install && \

2
docker/Dockerfile.ubuntu

@ -31,7 +31,7 @@ RUN apt-get update && \ @@ -31,7 +31,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.2 && \
RUN git checkout v0.2.9 && \
cmake . && \
cmake --build . && \
make install && \

4
flatpak/io.github.qtox.qTox.json

@ -137,8 +137,8 @@ @@ -137,8 +137,8 @@
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.7",
"commit": "18117581bdc52752f77d178a990e3863a9bbbf19"
"tag": "v0.2.9",
"commit": "98b754e1f22220f10196760389371dba6d139c6f"
}
]
},

2
osx/qTox-Mac-Deployer-ULTIMATE.sh

@ -127,7 +127,7 @@ install() { @@ -127,7 +127,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
git clone --branch v0.2.7 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
git clone --branch v0.2.9 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# qTox
if [[ $TRAVIS = true ]]

Loading…
Cancel
Save