Create nimlangserver package including patches for Arch

Patch nimlangserver to work around missing /usr/compiler/pathutils

Reenable testing

Fixed missing packages.json file

tmp
This commit is contained in:
RealStickman 2023-05-20 16:31:51 +02:00
commit 0924fe52ea
4 changed files with 83 additions and 0 deletions

16
.SRCINFO Normal file
View File

@ -0,0 +1,16 @@
pkgbase = nimlangserver-git
pkgver = latest.r9.gf7b32fa
pkgrel = 1
url = https://github.com/nim-lang/langserver
arch = x86_64
license = MIT
makedepends = git
depends = nim>=1.0.0
provides = nimlangserver
conflicts = nimlangserver
source = nimlangserver::git+https://github.com/nim-lang/langserver.git
source = nimlangserver.patch
sha256sums = SKIP
sha256sums = 76a987077dea6a224a6337a08f172f92da1734af6c7e31e8674d131654aba07c
pkgname = nimlangserver-git

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.zst
/nimlangserver/
/src/
/pkg/

51
PKGBUILD Normal file
View File

@ -0,0 +1,51 @@
# Maintainer: RealStickman <mrc+aur _a_ frm01 _d_ net>
pkgname=nimlangserver-git
pkgver=latest.r9.gf7b32fa
pkgrel=1
pkgdesc=""
arch=('x86_64')
url="https://github.com/nim-lang/langserver"
license=('MIT')
depends=('nim>=1.0.0')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+$url.git"
"nimlangserver.patch")
sha256sums=('SKIP'
'76a987077dea6a224a6337a08f172f92da1734af6c7e31e8674d131654aba07c')
prepare() {
# patching
cd "$srcdir/${pkgname%-git}"
patch --strip=2 < ../../nimlangserver.patch # work around "Error: cannot open file: /usr/compiler/pathutils" https://github.com/nim-lang/langserver/issues/22
# download packages.json file
nimble refresh
}
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
# change into source
cd "$srcdir/${pkgname%-git}"
# compile program
nimble build
}
check() {
# change into source
cd "$srcdir/${pkgname%-git}"
# run all tests
nimble test
}
package() {
# create our target filestructure
mkdir -p "$pkgdir/usr/bin"
# copy executable
install -Dm755 "$srcdir/${pkgname%-git}/${pkgname%-git}" "$pkgdir/usr/bin/${pkgname%-git}"
}

12
nimlangserver.patch Normal file
View File

@ -0,0 +1,12 @@
diff '--color=auto' --unified --recursive --text --color src/nimlangserver-orig/nimlangserver.nim src/nimlangserver/nimlangserver.nim
--- src/nimlangserver-orig/nimlangserver.nim 2023-05-25 14:56:42.996481704 +0200
+++ src/nimlangserver/nimlangserver.nim 2023-05-25 14:56:51.320521779 +0200
@@ -2,7 +2,7 @@
faststreams/asynctools_adapters, faststreams/inputs, faststreams/outputs,
json_rpc/streamconnection, os, sugar, sequtils, hashes, osproc,
suggestapi, protocol/enums, protocol/types, with, tables, strutils, sets,
- ./utils, ./pipes, chronicles, std/re, uri, "$nim/compiler/pathutils"
+ ./utils, ./pipes, chronicles, std/re, uri, "$lib/compiler/pathutils"
const
RESTART_COMMAND = "nimlangserver.restart"