12
0

Accepting request 1295151 from devel:languages:lua

- Update to 3.15.0:
  - [fix] Linux debugging server not starting by @jpeletier
  - feat: support hex color with # by @seblyng
  - Fix gcc15 build by @CppCXY
  - docs: add missing locale. by @qwertycxz
  - Support Custom Addons Path for Enhanced Editor Flexibility by
    @IronBlood
  - Prevent class methods from triggering missing fields
    diagnostics (Fixes #3175) by @CWood-sdf
  - fix: large unions no longer erroneously fail to match later
    variants by @DoubleThoughtTheProgrammer
  - Traditional Chinese translation by @AlexCai2019
- Switch to storing upstream soruces as a tarball … saving 60MB
  on each version is just too much to overlook.

- update to 3.14.0:
  * feat: provide ES localisation
  * Diagnostics for unnecessary assert
  * fix: return empty response to textDocument/formatting if no changes
  * fix: return empty response to textDocument/completion if completion
    disabled
- move tests to a bcond_with condition, as they are very flaky, even
  on x86_64, most of the time it runs on second try, sometimes 5+

OBS-URL: https://build.opensuse.org/request/show/1295151
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-language-server?expand=0&rev=21
This commit is contained in:
2025-07-23 14:34:17 +00:00
committed by Git OBS Bridge
parent a6f98b9101
commit 07d723840e
8 changed files with 48 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
mtime: 1743021769
commit: 48a9b283c36c555931a6d0886be95b1f5b60aa24a029cdf7c4ac2369d49e3d57
mtime: 1753200440
commit: c72aff841b0f544e130fa7338687f4ef514d4a2099f5103bf46aa1b303eaf923
url: https://src.opensuse.org/lua/lua-language-server.git
revision: 48a9b283c36c555931a6d0886be95b1f5b60aa24a029cdf7c4ac2369d49e3d57
revision: c72aff841b0f544e130fa7338687f4ef514d4a2099f5103bf46aa1b303eaf923
projectscmsync: https://src.opensuse.org/lua/_ObsPrj.git

View File

@@ -3,13 +3,13 @@
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://github.com/LuaLS/lua-language-server</param>
<param name="revision">refs/tags/3.13.9</param>
<param name="revision">refs/tags/3.15.0</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="submodules">enable</param>
</service>
<service name="set_version" mode="manual" />
<service name="tar" mode="buildtime" />
<service name="recompress" mode="buildtime">
<service name="tar" mode="manual" />
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>

BIN
build.specials.obscpio (Stored with Git LFS)

Binary file not shown.

BIN
lua-language-server-3.13.9.obscpio (Stored with Git LFS)

Binary file not shown.

BIN
lua-language-server-3.15.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Tue Jul 22 12:27:33 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
- Update to 3.15.0:
- [fix] Linux debugging server not starting by @jpeletier
- feat: support hex color with # by @seblyng
- Fix gcc15 build by @CppCXY
- docs: add missing locale. by @qwertycxz
- Support Custom Addons Path for Enhanced Editor Flexibility by
@IronBlood
- Prevent class methods from triggering missing fields
diagnostics (Fixes #3175) by @CWood-sdf
- fix: large unions no longer erroneously fail to match later
variants by @DoubleThoughtTheProgrammer
- Traditional Chinese translation by @AlexCai2019
- Switch to storing upstream soruces as a tarball … saving 60MB
on each version is just too much to overlook.
-------------------------------------------------------------------
Mon Apr 14 06:27:26 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
- update to 3.14.0:
* feat: provide ES localisation
* Diagnostics for unnecessary assert
* fix: return empty response to textDocument/formatting if no changes
* fix: return empty response to textDocument/completion if completion
disabled
- move tests to a bcond_with condition, as they are very flaky, even
on x86_64, most of the time it runs on second try, sometimes 5+
-------------------------------------------------------------------
Wed Mar 26 20:37:12 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>

View File

@@ -1,4 +1,4 @@
name: lua-language-server
version: 3.13.9
mtime: 1741836849
commit: dc4c9f25b37b9148165524e1e30b3b7752cf78ca
version: 3.15.0
mtime: 1750844709
commit: 32fec3cc99af8b9a1e45c2455a8c3bd0d3e38f66

View File

@@ -17,8 +17,9 @@
#
%bcond_with tests
Name: lua-language-server
Version: 3.13.9
Version: 3.15.0
Release: 0
Summary: Lua Language Server coded by Lua
License: MIT
@@ -59,8 +60,8 @@ install -d %{buildroot}%{_bindir}
sed -e 's#@LIBEXECDIR@#%{_libexecdir}#' %{SOURCE1} > %{buildroot}%{_bindir}/%{name}
chmod 0755 %{buildroot}%{_bindir}/%{name}
%ifarch x86_64
#tests are very flaky on non x86_64
%if %{with tests}
#tests are very flaky on all arches
%check
./3rd/luamake/luamake unit-test
%endif