~alpine/aports

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH] testing/kak-lsp: new aport

Siva Mahadevan <me@svmhdvn.name>
Details
Message ID
<20210116184612.23336-1-me@svmhdvn.name>
DKIM signature
missing
Download raw message
Patch: +26 -0
https://github.com/kak-lsp/kak-lsp
kak-lsp is a Language Server Protocol client for Kakoune implemented in Rust
---
 testing/kak-lsp/APKBUILD | 26 ++++++++++++++++++++++++++
 1 file changed, 26 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..40bed38377
--- /dev/null
+++ b/testing/kak-lsp/APKBUILD
@@ -0,0 +1,26 @@
# Contributor: Siva Mahadevan <me@svmhdvn.name>
# Maintainer: Siva Mahadevan <me@svmhdvn.name>
pkgname=kak-lsp
pkgver=8.0.0
pkgrel=0
pkgdesc="kak-lsp is a Language Server Protocol client for Kakoune implemented in Rust"
url="https://github.com/kak-lsp/kak-lsp"
arch="all !s390x !mips !mips64" # limited by cargo
license="Unlicense OR MIT"
makedepends="cargo"
source="$pkgname-$pkgver.tar.gz::$url/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
Details
Message ID
<c563bd78a794483319e1547a6829fc62f7b9a2bc.camel@gmail.com>
In-Reply-To
<20210116184612.23336-1-me@svmhdvn.name> (view parent)
DKIM signature
missing
Download raw message
On Sat, 2021-01-16 at 13:46 -0500, Siva Mahadevan wrote:
> https://github.com/kak-lsp/kak-lsp
> kak-lsp is a Language Server Protocol client for Kakoune implemented
> in Rust
> ---
>  testing/kak-lsp/APKBUILD | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 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..40bed38377
> --- /dev/null
> +++ b/testing/kak-lsp/APKBUILD
> @@ -0,0 +1,26 @@
> +# Contributor: Siva Mahadevan <me@svmhdvn.name>
> +# Maintainer: Siva Mahadevan <me@svmhdvn.name>
> +pkgname=kak-lsp
> +pkgver=8.0.0
> +pkgrel=0
> +pkgdesc="kak-lsp is a Language Server Protocol client for Kakoune

'kak-lasp is a' is redundant

> implemented in Rust"
> +url="https://github.com/kak-lsp/kak-lsp"
> +arch="all !s390x !mips !mips64" # limited by cargo
> +license="Unlicense OR MIT"
> +makedepends="cargo"
> +source="$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"

Please use the full URL instead of the variable

> +
> +build() {
> +       cargo build --locked --release
> +}
> +
> +check() {
> +       cargo test --locked
> +}
> +
> +package() {
> +       install -Dm755 "target/release/$pkgname"
> "$pkgdir/usr/bin/$pkgname"
> +

Extra blank line here that must be removed

> +}
> +
> +sha512sums="ee05d22b0c9e17fe928b7ff26a9f7a829b91c002c970f3d745d90090
> 22eca17ce202daec5b2a3684a7bedee734d456ca575857d517ba402db8d17676ea499
> 1bb  kak-lsp-8.0.0.tar.gz"
Reply to thread Export thread (mbox)