summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2023-01-08core: remove build with autotoolsSébastien Helleu
CMake is now the only way to build WeeChat.
2023-01-06debian: add symbolic link weechat_raspbian_buster.patch pointing to Debian ↵Sébastien Helleu
Buster patch
2023-01-05core: rename script build-test.sh to build_test.shSébastien Helleu
2023-01-05core: rename script build-debian.sh to build_debian.shSébastien Helleu
2023-01-05core: rename script git-version.sh to set_git_version.shSébastien Helleu
2023-01-05core: add message after checking Curl symbols: "all good" or number of errorsSébastien Helleu
2023-01-05core: add example with Curl repository cloned locallySébastien Helleu
2023-01-04core: add script check_scripts.shSébastien Helleu
This script is now used in CI to check all shell scripts (*.sh) and Python scripts (*.py) that are in git repository. Tools used: - shell scripts: shellcheck - Python scripts: flake8 + pylint + bandit
2023-01-04core: add script check_curl_symbols.pySébastien Helleu
This script is used to check Curl symbols defined in WeeChat vs exposed Curl symbols. Usage: curl https://raw.githubusercontent.com/curl/curl/master/docs/libcurl/symbols-in-versions | ./tools/check_curl_symbols.py
2023-01-04core: remove useless "exit 0"Sébastien Helleu
This fixes the following shellcheck error: SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly).
2023-01-04core: double quote $JOBSSébastien Helleu
This fixes the following shellcheck error: SC2086 (info): Double quote to prevent globbing and word splitting.
2023-01-04core: don't use eval to run commands in scriptsSébastien Helleu
This fixes the following shellcheck error: SC2294 (warning): eval negates the benefit of arrays. Drop eval to preserve whitespace/symbols (or eval as string).
2023-01-01core: update copyright datesSébastien Helleu
2022-11-19debian: change dependency guile-2.2-dev to guile-3.0-devSébastien Helleu
2022-09-29debian: remove ubuntu/xenial patch (distro not supported any more)Sébastien Helleu
As zstd is too old in ubuntu/xenial (0.5.1 while min version is 0.8.1), this distro is not supported any more.
2022-09-18build: update version of Debian/Ubuntu distros in examplesSébastien Helleu
2022-09-18build: remove patches for Debian/Raspbian StretchSébastien Helleu
2022-03-29debian: add dependency on ruby-pygments.rbSébastien Helleu
2022-02-19debian: change dependency libargon2-0-dev to libargon2-dev (debian bug #1005703)Sébastien Helleu
2022-01-17core: update copyright datesSébastien Helleu
2021-12-24relay: add zstd compression in weechat protocolSébastien Helleu
Option relay.network.compression_level is renamed to relay.network.compression and is now a percentage between 0 (no compression) to 100 (best compression, slowest). Compression is now disabled by default in weechat protocol and must be enabled via the `handshake` command (option `compression` has been removed from `init` command).
2021-12-13core: add build of zst archive in make distSébastien Helleu
2021-11-20core: add build with CMake and Ninja in CISébastien Helleu
2021-11-20build: add targets "changelog" and "rn" to build HTML version of ChangeLog ↵Sébastien Helleu
and release notes (CMake build only)
2021-11-20build: improve error management in build of tarballsSébastien Helleu
2021-09-18debian: bump Standards-Version to 4.6.0.1Sébastien Helleu
2021-03-19core: do not force build of JavaScript plugin in CISébastien Helleu
2021-03-08debian: update debian/ubuntu patches with new Standards-VersionSébastien Helleu
2021-01-02core: update copyright datesSébastien Helleu
2020-06-13javascript: disable build by default and remove Debian packaging of ↵Sébastien Helleu
JavaScript plugin (issue #360)
2020-05-22core: add CI with GitHub Actions, move codecov.io upload to GitHub ActionsSébastien Helleu
2020-04-26debian: add patch to build on Ubuntu GroovySébastien Helleu
2020-01-04core: update copyright datesSébastien Helleu
2019-12-08debian: fix debian/wheezy and ubuntu/trusty patchesSébastien Helleu
2019-11-28core: exit makedist.sh script if command "cd" failedSébastien Helleu
2019-11-28core: replace "! -z" by "-n" in build-debian.shSébastien Helleu
2019-11-28core: replace "-o" by "||" in tools scriptsSébastien Helleu
2019-11-28core: run command and check return code on same line in tools scriptsSébastien Helleu
2019-11-28core: double quote variables in tools scriptsSébastien Helleu
2019-11-11debian: disable javascript plugin on Debian Sid and Ubuntu EoanSébastien Helleu
2019-10-20debian: disable javascript plugin on Ubuntu FocalSébastien Helleu
2019-09-25debian: switch to Guile 2.2 in Debian buildSébastien Helleu
Guile 2.2 is now used by default in Debian/Ubuntu builds, except on these old distribution versions where only Guile 2.0 is available: - Debian Stretch - Debian Jessie - Debian Wheezy - Ubuntu Xenial - Ubuntu Trusty
2019-09-16debian: fix build of packages on Debian Jessie (issue #916, issue #956)Sébastien Helleu
With the new errors on missing libraries in CMake, the PHP plugin must be explicitly disabled.
2019-07-08debian: disable Javascript plugin on Debian Buster/Bullseye (closes #1374)Sébastien Helleu
2019-07-07debian: switch from Lua 5.1 to 5.3 in Debian buildSébastien Helleu
2019-07-01core: compile with Python 3 by defaultSébastien Helleu
The CMake option ENABLE_PYTHON3 is renamed to ENABLE_PYTHON2, to use Python 2 first then fallback on Python 3. In the same way, the configure option --enable-python3 is renamed to --enable-python2, to use Python 2 first then fallback on Python 3.
2019-03-29core: move coverage.info in parent directorySébastien Helleu
2019-03-29core: move upload of code coverage from build-test.sh to .travis.ymlSébastien Helleu
2019-03-29core: fix upload of code coverage to codecov.ioSébastien Helleu
2019-03-29core: upload code coverage on codecov.io in Travis CISébastien Helleu