aboutsummaryrefslogtreecommitdiff
path: root/cmake.deps
Commit message (Collapse)AuthorAge
* fixup: quick update, squash laterdundargoc2023-11-20
|
* build: disable all compiler warnings from dependenciesdundargoc2023-11-20
|
* build: various cmake fixesdundargoc2023-11-18
| | | | | | | | | | - Correct MSVC warning suppression. The C4003 warning is issued during file generation and not for the actual source files. - Remove non-existent "scripts/pvscheck.sh" file from `lintsh` target. - Remove spaces inside for loops with uncrustify. - Point dependencies to use a git tag rather than releases, as releases might have changes that deviate from the actual source code. - Automatically update uncrustify config before formatting or linting.
* build: update libtermkey commitdundargoc2023-11-16
| | | | | | | | | The new commit includes the following patches: https://github.com/neovim/libtermkey/commit/bf544610f5bd1a4e049b9ba0f94d2a588d1312ce https://github.com/neovim/libtermkey/commit/dcb198a85c520ce38450a5970c97f8ff03b50f0e Fixes https://github.com/neovim/neovim/issues/26038.
* build(deps): bump luajit to HEAD - 43d0a1915Christian Clason2023-11-15
|
* build(deps): bump luajit to HEAD - 113a168b7Christian Clason2023-11-13
|
* build(deps): bump tree-sitter-markdown to v0.1.7Christian Clason2023-11-10
|
* build(deps): bump luajit to HEAD - 69bbbf773Christian Clason2023-11-10
|
* build(deps): bump luajit to HEAD - b94fbfbeeChristian Clason2023-11-08
|
* build(deps): bump libuv to v1.47.0Christian Clason2023-11-07
|
* fix(build): include FindPackageHandleStandardArgsObserverOfTime2023-11-06
|
* build(deps): bump luajit to HEAD - 07b3cd3cfChristian Clason2023-11-06
|
* build: remove git requirementdundargoc2023-11-05
| | | | | | We do not have any patches that we use at the moment, so git is not needed right now. Futhermore, we've become more strict with not adding patches, which makes it pretty safe to remove this for the time being.
* build(deps): bump luajit to HEAD - 0afa1676bChristian Clason2023-11-05
|
* build(deps): bump libiconv to 1.17Christian Clason2023-11-05
| | | | new license (LGPL 2.1), adds EBCDIC encodings
* build: various cmake fixesdundargoc2023-11-04
| | | | | | | - silence false warnings on MSVC - merge `clang-tidy` cmake target into `lintc` and remove the corresponding make target - use cmake's built-in endianness detection
* build: use neovim/libvterm instead of neovim/deps for libvtermdundargoc2023-10-29
| | | | | Using a mirror makes it easier to test patches as well as reducing maintenance when a new version is released.
* build: use neovim/libtermkey instead of neovim/deps for libtermkeydundargoc2023-10-28
| | | | | Using a mirror makes it easier to test patches as well as reducing maintenance when a new version is released.
* build(deps): bump luajit to HEAD - e826d0c10Christian Clason2023-10-21
|
* build(deps): include Find moduleJames McCoy2023-10-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that all the Find<Foo>.cmake modules are using our custom find_path2, the bundled deps build needs to include the Find module so it has access to find_path2. The missing include was causing the PPA build to fail: ``` cd .deps && \ cmake -G 'Unix Makefiles' \ -DUSE_EXISTING_SRC_DIR=ON -DUSE_BUNDLED_LUAROCKS=OFF -DUSE_BUNDLED_LUAJIT=OFF -DUSE_BUNDLED_GPERF=OFF -DUSE_BUNDLED_LUA=OFF /<<PKGBUILDDIR>>//cmake.deps -- The C compiler identification is GNU 7.5.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Found GNU Make at /usr/bin/make -- CMAKE_BUILD_TYPE not specified, default is 'Debug' -- Performing Test HAS_OG_FLAG -- Performing Test HAS_OG_FLAG - Success -- Found Git: /usr/bin/git (found version "2.17.1") CMake Error at /<<PKGBUILDDIR>>/cmake/FindLuajit.cmake:1 (find_path2): Unknown CMake command "find_path2". Call Stack (most recent call first): cmake/BuildLuv.cmake:13 (find_package) CMakeLists.txt:127 (include) -- Configuring incomplete, errors occurred! ```
* build: adjust how find order is prioritizeddundargoc2023-10-16
| | | | | | | | | | | | | | | | | | | Ensure bundled libraries and include directories are always searched first before any others. This will provide a more consistent experience as the search order of the builtin find_ functions can vary depending on system. This should make the build process faster when building with bundled deps as we limit the search to only the .deps directory. Separating the search between .deps and everything makes debugging find_-related problems simpler if you need to check how dependencies are found. For libraries, we divide the search process into the following order: 1. Only search in .deps directory and only search for static libraries. 2. Only search in .deps directory and search for all libraries. 3. Search everywhere and search for all libraries. Make an exception for FindLibintl.cmake as changing the search order seems to break some tests on macos.
* build(deps): bump luajit to HEAD - 656ecbcf8Christian Clason2023-10-09
|
* build(deps): bump luajit to HEAD - becf5cc65Christian Clason2023-09-25
|
* build(deps): bump luajit to HEAD - 97c75843cChristian Clason2023-09-23
|
* build(deps): bump luajit to HEAD - d1a2fef8aChristian Clason2023-09-21
|
* build(deps): bump luajit to HEAD - e897c5743Christian Clason2023-09-17
|
* build(deps): bump luajit to HEAD - 7a77a3cd8Christian Clason2023-09-15
|
* build(deps): bump luajit to HEAD - 8af63f992Christian Clason2023-09-12
|
* build(deps): bump tree-sitter to HEAD - 46af27796Christian Clason2023-09-12
|
* build(deps): bump luajit to HEAD - 5a18d4582Christian Clason2023-09-10
|
* build: bump lpeg to 1.1.0 (#25016)dundargoc2023-09-04
| | | | Release notes indicates it has better UTF8 handling which is relevant for us.
* build: various fixesdundargoc2023-09-04
| | | | | | | | | - simplify lua interpreter search - fix incorrect variable name in BuildLua.cmake - build PUC Lua with -O2 - silence non-mandatory find_package search for libuv - simplify Find modules - Prefer using the explicitly set CI_BUILD over relying on the environment variable "CI".
* build(deps): bump luajit to HEAD - 41fb94defChristian Clason2023-08-30
|
* build(deps): bump luajit to HEAD - 83954100dChristian Clason2023-08-29
|
* build(deps): bump tree-sitter to HEADAmaan Qureshi2023-08-29
|
* build(deps): bump tree-sitter-python to v0.20.4Sanchayan Maity2023-08-27
|
* build(deps): bump luv to HEAD dcd1a1czhaozg2023-08-27
|
* build(deps): bump luajit to HEAD - 03c31124cChristian Clason2023-08-23
| | | | | | Switch to a rolling release, so the `0-beta3` suffix is dropped in favor of the date. Remove the custom UNIX command as the symlink is now created by the LuaJIT Makefile.
* build(deps): bump tree-sitter to HEAD - ab09ae20dChristian Clason2023-08-19
|
* fix(deps): remove stray conflict markerChristian Clason2023-08-15
| | | | fixup for https://github.com/neovim/neovim/commit/22d397c233b12a94ba36052d9e626ed61e25d488
* build(deps): bump tree-sitter-lua to v0.0.19Christian Clason2023-08-15
|
* build(deps): bump tree-sitter-c to v0.20.6Christian Clason2023-08-14
|
* build(deps): bump tree-sitter-c to v0.20.5Christian Clason2023-08-13
|
* build(deps): bump luajit to HEAD - 72efc42efChristian Clason2023-08-13
|
* build(deps): bump tree-sitter to HEAD - 0a1c4d846 (#24607)Christian Clason2023-08-08
| | | | adapt to breaking change in `ts_query_cursor_set_max_start_depth` https://github.com/tree-sitter/tree-sitter/pull/2278
* build(deps): bump libvterm to 0.3.3 (#24547)zeertzjq2023-08-04
| | | Fix #21106
* build(deps): bump tree-sitter-c to v0.20.4 (#24495)Christian Clason2023-07-27
|
* build(deps): bump tree-sitter to HEAD - 3f44b8968 (#24447)Christian Clason2023-07-23
|
* build(deps): bump tree-sitter-python to v0.20.3 (#24446)Christian Clason2023-07-23
|
* fix(treesitter): update markdown parser and queries (#24429)Christian Clason2023-07-22
|