~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

[PATCH] testing/rust-analyzer: new aport

S.M Mukarram Nainar <theone@sm2n.ca>
Details
Message ID
<20220218151118.3119-1-theone@sm2n.ca>
DKIM signature
missing
Download raw message
Patch: +42 -0
https://github.com/rust-analyzer/rust-analyzer
A Rust compiler front-end for IDEs
---
 testing/rust-analyzer/APKBUILD | 42 ++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 testing/rust-analyzer/APKBUILD

diff --git a/testing/rust-analyzer/APKBUILD b/testing/rust-analyzer/APKBUILD
new file mode 100644
index 0000000000..ce13aa0b90
--- /dev/null
+++ b/testing/rust-analyzer/APKBUILD
@@ -0,0 +1,42 @@
# Contributor: S.M Mukarram Nainar <theone@sm2n.ca>
# Maintainer: S.M Mukarram Nainar <theone@sm2n.ca>
pkgname=rust-analyzer
_pkgver="2022-02-14"
pkgver=${_pkgver//-}
pkgrel=0
pkgdesc="A Rust compiler front-end for IDEs"
url="https://github.com/rust-analyzer/rust-analyzer"
# limited by rust, x86/armhf/armv7 fail tests
arch="x86_64 aarch64 ppc64le"
license="MIT OR Apache-2.0"
depends="rust-src"
makedepends="cargo"
checkdepends="rustfmt"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/rust-analyzer/rust-analyzer/archive/refs/tags/$_pkgver.tar.gz"
builddir="$srcdir/$pkgname-$_pkgver"

prepare() {
	default_prepare

	cargo fetch --locked
}

build() {
	cargo build --frozen --release --manifest-path crates/rust-analyzer/Cargo.toml
}

check() {
	cargo test --frozen
}

package() {
	install -Dm755 -t "$pkgdir"/usr/bin target/release/rust-analyzer

	install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT LICENSE-APACHE
	install -Dm644 docs/user/manual.adoc "$pkgdir"/usr/share/doc/$pkgname/manual.adoc
}

sha512sums="
cad62bc2837daadf17fadd3e4ccb2cc9ea4203f14cdac6931548a025b2cd5daef5f4b645d36381fea5a5baf44b301d8b83f0136c095dcc3b500df476baab6f1b  rust-analyzer-20220214.tar.gz
"
-- 
2.35.1
Reply to thread Export thread (mbox)