bash-language-server: -> 5.0.0

This commit is contained in:
Tim Biermann 2023-07-29 23:03:04 +02:00
parent 7c123fed94
commit b15a07b425
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 11 additions and 8 deletions

View File

@ -1,6 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/bash-language-server -> /usr/lib/bash-language-server/bin/main.js
lrwxrwxrwx root/root usr/bin/bash-language-server -> /usr/lib/bash-language-server/out/cli.js
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/bash-language-server/
drwxr-xr-x root/root usr/lib/bash-language-server/node_modules/
@ -27,7 +27,7 @@ drwxr-xr-x root/root usr/lib/bash-language-server/out/
-rw-r--r-- root/root usr/lib/bash-language-server/out/builtins.js
-rw-r--r-- root/root usr/lib/bash-language-server/out/builtins.js.map
-rw-r--r-- root/root usr/lib/bash-language-server/out/cli.d.ts
-rw-r--r-- root/root usr/lib/bash-language-server/out/cli.js
-rwxr-xr-x root/root usr/lib/bash-language-server/out/cli.js
-rw-r--r-- root/root usr/lib/bash-language-server/out/cli.js.map
-rw-r--r-- root/root usr/lib/bash-language-server/out/config.d.ts
-rw-r--r-- root/root usr/lib/bash-language-server/out/config.js

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF36wUzbrMVC9Y6d28V/VwqirAo/XZrSd/BTdlbcUFlsSGABTo42rPNICW9dym2h2lkqT/KTLdz/kSDCJEotPtWQI=
SHA256 (Pkgfile) = 4e411526af3e4ba9e1004dfc0f6cf832b76dcf991b0547aef9172fe2baa2f16b
SHA256 (.footprint) = f3307dcfd75ae5255729c2a1672926fd2eaaf272e3de0efe89909feda81650e4
RWSagIOpLGJF36C0IVgZf9W4+D7UgjJ+G2Ba4+zCLTzu7o0MQsjj/1PLPcVcg4WxvrHzOdOoGvMYD3xZh7GMQN5cRwAzbqAajA8=
SHA256 (Pkgfile) = 8a59f7447e5bce04b11a650001a7d0f4d1cbed6859bbe0824e5bb1c878ea500b
SHA256 (.footprint) = 5f5422871b685850d918e163fd70d9f0d86228421773ed148763aebe98426fe6
SHA256 (bash-language-server-5.0.0.tar.gz) = ef8d104591cfcddf85da14af9585d8f0ab97f12e158df67ab50900f7342e353a

View File

@ -17,10 +17,13 @@ build() {
rm -rf node_modules
pnpm install --frozen-lockfile -P
install -d $PKG/usr/lib/$name
cp -a server/* $PKG/usr/lib/$name
install -d $PKG/usr/lib/$name $PKG/usr/bin #$PKG/usr/lib/node_modules
cp -a $SRC/$name-server-$version/server/* $PKG/usr/lib/$name/.
#cp -a $SRC/$name-server-$version/node_modules/ $PKG/usr/lib/.
chmod +x $PKG/usr/lib/$name/out/cli.js
install -d $PKG/usr/bin
ln -s /usr/lib/$name/bin/main.js $PKG/usr/bin/$name
ln -s /usr/lib/$name/out/cli.js $PKG/usr/bin/$name
find $PKG \(\
-iname "*README.md*" -o \