~alpine/aports

testing/kak-lsp: new aport v3 APPLIED

Siva Mahadevan: 1
 testing/kak-lsp: new aport

 1 files changed, 25 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3420/mbox | git am -3
Learn more about email & git

[PATCH v3] testing/kak-lsp: new aport Export this patch

https://github.com/kak-lsp/kak-lsp
kak-lsp is a Language Server Protocol client for Kakoune implemented in Rust
---
v3 removes ppc64le from the supported archs list.
 testing/kak-lsp/APKBUILD | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 testing/kak-lsp/APKBUILD

diff --git a/testing/kak-lsp/APKBUILD b/testing/kak-lsp/APKBUILD
new file mode 100644
index 0000000000..c64ba2c856
--- /dev/null
+++ b/testing/kak-lsp/APKBUILD
@@ -0,0 +1,25 @@
# Contributor: Siva Mahadevan <me@svmhdvn.name>
# Maintainer: Siva Mahadevan <me@svmhdvn.name>
pkgname=kak-lsp
pkgver=8.0.0
pkgrel=0
pkgdesc="Language Server Protocol client for Kakoune implemented in Rust"
url="https://github.com/kak-lsp/kak-lsp"
arch="all !s390x !mips !mips64 !ppc64le" # limited by cargo
license="Unlicense OR MIT"
makedepends="cargo"
source="$pkgname-$pkgver.tar.gz::https://github.com/kak-lsp/kak-lsp/archive/v$pkgver.tar.gz"

build() {
	cargo build --locked --release
}

check() {
	cargo test --locked
}

package() {
	install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
}

sha512sums="ee05d22b0c9e17fe928b7ff26a9f7a829b91c002c970f3d745d9009022eca17ce202daec5b2a3684a7bedee734d456ca575857d517ba402db8d17676ea4991bb  kak-lsp-8.0.0.tar.gz"
-- 
2.30.0