* [PR PATCH] lua-language-server: update to 3.6.2.
@ 2022-11-10 13:55 icp1994
2022-11-14 8:39 ` [PR PATCH] [Updated] " icp1994
2022-11-24 7:56 ` [PR PATCH] [Merged]: lua-language-server: update to 3.6.3 classabbyamp
0 siblings, 2 replies; 3+ messages in thread
From: icp1994 @ 2022-11-10 13:55 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 724 bytes --]
There is a new pull request by icp1994 against master on the void-packages repository
https://github.com/icp1994/void-packages lua-language-server
https://github.com/void-linux/void-packages/pull/40441
lua-language-server: update to 3.6.2.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64
During the last update I removed the ppc patch as there was upstream support for it but one submodule was still using an older version of that repo so it failed. This time I checked and it's updated to the ppc-supported version.
A patch file from https://github.com/void-linux/void-packages/pull/40441.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-lua-language-server-40441.patch --]
[-- Type: text/x-diff, Size: 2863 bytes --]
From 0a3946075262ba7e3c5ce46753f575ca380eb443 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Wed, 9 Nov 2022 18:33:54 +0530
Subject: [PATCH] lua-language-server: update to 3.6.2.
---
srcpkgs/lua-language-server/patches/ppc.patch | 32 -------------------
srcpkgs/lua-language-server/template | 4 +--
2 files changed, 2 insertions(+), 34 deletions(-)
delete mode 100644 srcpkgs/lua-language-server/patches/ppc.patch
diff --git a/srcpkgs/lua-language-server/patches/ppc.patch b/srcpkgs/lua-language-server/patches/ppc.patch
deleted file mode 100644
index f8ce59ead268..000000000000
--- a/srcpkgs/lua-language-server/patches/ppc.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-commit a384b9814f0d1c0072d557c96df5b73831d25325
-Author: q66 <daniel@octaforge.org>
-Date: Sun Sep 25 13:46:41 2022 +0000
-
- fix build on ppc*
-
-diff --git a/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h b/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-index ad0cf4e..ac77d14 100644
---- a/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-+++ b/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-@@ -18,6 +18,8 @@
- asm volatile ("div %0, %0, zero" : "=r" (dummy));
- asm volatile ("" ::: "memory");
- }}
-+#elif defined(__powerpc__)
-+ namespace bee { inline void cpu_relax() { asm volatile("ori 0,0,0" ::: "memory"); }}
- #else
- #error unsupport platform
- #endif
-diff --git a/luamake/3rd/bee.lua/bee/thread/spinlock.h b/luamake/3rd/bee.lua/bee/thread/spinlock.h
-index ad0cf4e..ac77d14 100644
---- a/luamake/3rd/bee.lua/bee/thread/spinlock.h
-+++ b/luamake/3rd/bee.lua/bee/thread/spinlock.h
-@@ -18,6 +18,8 @@
- asm volatile ("div %0, %0, zero" : "=r" (dummy));
- asm volatile ("" ::: "memory");
- }}
-+#elif defined(__powerpc__)
-+ namespace bee { inline void cpu_relax() { asm volatile("ori 0,0,0" ::: "memory"); }}
- #else
- #error unsupport platform
- #endif
diff --git a/srcpkgs/lua-language-server/template b/srcpkgs/lua-language-server/template
index bd539c6ca6a1..885464e6e8f9 100644
--- a/srcpkgs/lua-language-server/template
+++ b/srcpkgs/lua-language-server/template
@@ -1,6 +1,6 @@
# Template file for 'lua-language-server'
pkgname=lua-language-server
-version=3.5.6
+version=3.6.2
revision=1
create_wrksrc=yes
hostmakedepends="ninja"
@@ -10,7 +10,7 @@ license="MIT"
homepage="https://github.com/sumneko/lua-language-server"
changelog="https://raw.githubusercontent.com/sumneko/lua-language-server/master/changelog.md"
distfiles="https://github.com/sumneko/lua-language-server/releases/download/${version}/lua-language-server-${version}-submodules.zip"
-checksum=e93879645e8fd7de8b434f8db4825e29960806805f1612f34765a359251e1059
+checksum=113530864f69cc3e7b0cf09616ba8c916c1f01b896a3d3ea03fd3522e2b3c411
do_build() {
ninja -C 3rd/luamake -f compile/ninja/linux.ninja
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PR PATCH] [Updated] lua-language-server: update to 3.6.2.
2022-11-10 13:55 [PR PATCH] lua-language-server: update to 3.6.2 icp1994
@ 2022-11-14 8:39 ` icp1994
2022-11-24 7:56 ` [PR PATCH] [Merged]: lua-language-server: update to 3.6.3 classabbyamp
1 sibling, 0 replies; 3+ messages in thread
From: icp1994 @ 2022-11-14 8:39 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 729 bytes --]
There is an updated pull request by icp1994 against master on the void-packages repository
https://github.com/icp1994/void-packages lua-language-server
https://github.com/void-linux/void-packages/pull/40441
lua-language-server: update to 3.6.2.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64
During the last update I removed the ppc patch as there was upstream support for it but one submodule was still using an older version of that repo so it failed. This time I checked and it's updated to the ppc-supported version.
A patch file from https://github.com/void-linux/void-packages/pull/40441.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-lua-language-server-40441.patch --]
[-- Type: text/x-diff, Size: 2863 bytes --]
From cfb56043096a65b34b09a59fb34efcfdd7a07191 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Wed, 9 Nov 2022 18:33:54 +0530
Subject: [PATCH] lua-language-server: update to 3.6.3.
---
srcpkgs/lua-language-server/patches/ppc.patch | 32 -------------------
srcpkgs/lua-language-server/template | 4 +--
2 files changed, 2 insertions(+), 34 deletions(-)
delete mode 100644 srcpkgs/lua-language-server/patches/ppc.patch
diff --git a/srcpkgs/lua-language-server/patches/ppc.patch b/srcpkgs/lua-language-server/patches/ppc.patch
deleted file mode 100644
index f8ce59ead268..000000000000
--- a/srcpkgs/lua-language-server/patches/ppc.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-commit a384b9814f0d1c0072d557c96df5b73831d25325
-Author: q66 <daniel@octaforge.org>
-Date: Sun Sep 25 13:46:41 2022 +0000
-
- fix build on ppc*
-
-diff --git a/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h b/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-index ad0cf4e..ac77d14 100644
---- a/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-+++ b/3rd/luamake/3rd/bee.lua/bee/thread/spinlock.h
-@@ -18,6 +18,8 @@
- asm volatile ("div %0, %0, zero" : "=r" (dummy));
- asm volatile ("" ::: "memory");
- }}
-+#elif defined(__powerpc__)
-+ namespace bee { inline void cpu_relax() { asm volatile("ori 0,0,0" ::: "memory"); }}
- #else
- #error unsupport platform
- #endif
-diff --git a/luamake/3rd/bee.lua/bee/thread/spinlock.h b/luamake/3rd/bee.lua/bee/thread/spinlock.h
-index ad0cf4e..ac77d14 100644
---- a/luamake/3rd/bee.lua/bee/thread/spinlock.h
-+++ b/luamake/3rd/bee.lua/bee/thread/spinlock.h
-@@ -18,6 +18,8 @@
- asm volatile ("div %0, %0, zero" : "=r" (dummy));
- asm volatile ("" ::: "memory");
- }}
-+#elif defined(__powerpc__)
-+ namespace bee { inline void cpu_relax() { asm volatile("ori 0,0,0" ::: "memory"); }}
- #else
- #error unsupport platform
- #endif
diff --git a/srcpkgs/lua-language-server/template b/srcpkgs/lua-language-server/template
index bd539c6ca6a1..411e265de524 100644
--- a/srcpkgs/lua-language-server/template
+++ b/srcpkgs/lua-language-server/template
@@ -1,6 +1,6 @@
# Template file for 'lua-language-server'
pkgname=lua-language-server
-version=3.5.6
+version=3.6.3
revision=1
create_wrksrc=yes
hostmakedepends="ninja"
@@ -10,7 +10,7 @@ license="MIT"
homepage="https://github.com/sumneko/lua-language-server"
changelog="https://raw.githubusercontent.com/sumneko/lua-language-server/master/changelog.md"
distfiles="https://github.com/sumneko/lua-language-server/releases/download/${version}/lua-language-server-${version}-submodules.zip"
-checksum=e93879645e8fd7de8b434f8db4825e29960806805f1612f34765a359251e1059
+checksum=64615e10df74b5d8f3b785290c11c1f3fa1456fa8a3432171a8b686fc1f4fa21
do_build() {
ninja -C 3rd/luamake -f compile/ninja/linux.ninja
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PR PATCH] [Merged]: lua-language-server: update to 3.6.3.
2022-11-10 13:55 [PR PATCH] lua-language-server: update to 3.6.2 icp1994
2022-11-14 8:39 ` [PR PATCH] [Updated] " icp1994
@ 2022-11-24 7:56 ` classabbyamp
1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2022-11-24 7:56 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 561 bytes --]
There's a merged pull request on the void-packages repository
lua-language-server: update to 3.6.3.
https://github.com/void-linux/void-packages/pull/40441
Description:
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64
During the last update I removed the ppc patch as there was upstream support for it but one submodule was still using an older version of that repo so it failed. This time I checked and it's updated to the ppc-supported version.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-24 7:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-10 13:55 [PR PATCH] lua-language-server: update to 3.6.2 icp1994
2022-11-14 8:39 ` [PR PATCH] [Updated] " icp1994
2022-11-24 7:56 ` [PR PATCH] [Merged]: lua-language-server: update to 3.6.3 classabbyamp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).