Browse Source

chore(deps): update c-toxcore to v0.2.13

reviewable/pr6420/r1
Anthony Bilinski 4 years ago
parent
commit
9624fc33b0
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      .travis/build-ubuntu-16-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
  9. 4
      windows/cross-compile/build.sh

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

@ -129,7 +129,7 @@ sudo ldconfig @@ -129,7 +129,7 @@ sudo ldconfig
cd ..
# toxcore
git clone --branch v0.2.12 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
git clone --branch v0.2.13 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
mkdir build-cmake
cd build-cmake

2
INSTALL.fa.md

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

2
INSTALL.md

@ -457,7 +457,7 @@ Provided that you have all required dependencies installed, you can simply run: @@ -457,7 +457,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.12
git checkout v0.2.13
cmake . -DBOOTSTRAP_DAEMON=OFF
make -j$(nproc)
sudo make install

2
bootstrap.sh

@ -48,7 +48,7 @@ readonly INSTALL_DIR=libs @@ -48,7 +48,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout
readonly TOXCORE_VERSION="v0.2.12"
readonly TOXCORE_VERSION="v0.2.13"
readonly TOXEXT_VERSION="v0.0.3"
readonly TOX_EXT_MESSAGES_VERSION="v0.0.3"
readonly SQLCIPHER_VERSION="v4.3.0"

2
docker/Dockerfile.debian

@ -52,7 +52,7 @@ RUN apt-get update && \ @@ -52,7 +52,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.12 && \
RUN git checkout v0.2.13 && \
cmake . -DBOOTSTRAP_DAEMON=OFF && \
cmake --build . && \
make install && \

2
docker/Dockerfile.ubuntu

@ -49,7 +49,7 @@ RUN apt-get update && \ @@ -49,7 +49,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.12 && \
RUN git checkout v0.2.13 && \
cmake . -DBOOTSTRAP_DAEMON=OFF && \
cmake --build . && \
make install && \

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

@ -112,8 +112,8 @@ @@ -112,8 +112,8 @@
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.12",
"commit": "9be4dbb4335bf7d893c8d00566d3276ab6dedd14"
"tag": "v0.2.13",
"commit": "4348b96a5b482134a9cd55cb0ef9616798b4eb3c"
}
]
},

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

@ -182,7 +182,7 @@ install() { @@ -182,7 +182,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
git clone --branch v0.2.12 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
git clone --branch v0.2.13 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# toxext
if [[ -e $TOX_EXT_DIR/.git/index ]]

4
windows/cross-compile/build.sh

@ -983,8 +983,8 @@ fi @@ -983,8 +983,8 @@ fi
# Toxcore
TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore"
TOXCORE_VERSION=0.2.12
TOXCORE_HASH="30ae3263c9b68d3bef06f799ba9d7a67e3fad447030625f0ffa4bb22684228b0"
TOXCORE_VERSION=0.2.13
TOXCORE_HASH="67114fa57504c58b695f5dce8ef85124d555f2c3c353d0d2615e6d4845114ab8"
TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"
if [ ! -f "$TOXCORE_PREFIX_DIR/done" ]
then

Loading…
Cancel
Save