mirror of https://github.com/kiwix/libkiwix.git
commit
ab94ac0ee8
|
@ -18,6 +18,7 @@ addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- cmake
|
- cmake
|
||||||
|
- python3.5
|
||||||
- python3-pip
|
- python3-pip
|
||||||
- libbz2-dev
|
- libbz2-dev
|
||||||
- ccache
|
- ccache
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
kiwix-lib 4.0.0
|
||||||
|
===============
|
||||||
|
|
||||||
|
* [API break] Remove support for external index.
|
||||||
|
* Move to the mustache templating system instead of ctpp2.
|
||||||
|
* Make meson.build works for meson>=0.43.0
|
||||||
|
* [API break] Move the basic tools from the `common` directory to `tools`.
|
||||||
|
|
||||||
kiwix-lib 3.1.1
|
kiwix-lib 3.1.1
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('kiwix-lib', 'cpp',
|
project('kiwix-lib', 'cpp',
|
||||||
version : '3.1.1',
|
version : '4.0.0',
|
||||||
license : 'GPL',
|
license : 'GPL',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
|
|
|
@ -9,12 +9,16 @@ ARCHIVE_NAME=deps_${TRAVIS_OS_NAME}_${PLATFORM}_${REPO_NAME}.tar.gz
|
||||||
cd $HOME
|
cd $HOME
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]
|
||||||
then
|
then
|
||||||
pip3 install meson==0.43.0
|
pip3 install meson
|
||||||
|
|
||||||
wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-mac.zip
|
wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-mac.zip
|
||||||
unzip ninja-mac.zip ninja
|
unzip ninja-mac.zip ninja
|
||||||
else
|
else
|
||||||
pip3 install --user meson==0.43.0
|
wget https://bootstrap.pypa.io/get-pip.py
|
||||||
|
python3.5 get-pip.py --user
|
||||||
|
|
||||||
|
python3.5 -m pip install --user --upgrade pip
|
||||||
|
python3.5 -m pip install --user meson
|
||||||
|
|
||||||
wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
|
wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
|
||||||
unzip ninja-linux.zip ninja
|
unzip ninja-linux.zip ninja
|
||||||
|
|
Loading…
Reference in New Issue