soplang-git
CLEAN
maintainer sirrryasir
0 votes
scanned 2026-08-30 00:04:14.825026
Triggered rules
Clean
AI review downgraded a static finding
llm_review
The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): The package builds from a legitimate Git repository of the project, uses standard Rust build流程, and installs only the compiled binary, license, and documentation; the low vote count and recent upload are not indicative of malicious intent.
1 higher static finding superseded - not the current verdict (shown for transparency)
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Yasir Hassan <yasir@yaasir.dev>
2
pkgname=soplang-git
3
pkgver=0.1.0.r0.g0000000
4
pkgrel=1
5
pkgdesc="The Somali Programming Language (Rust/Cranelift JIT implementation, tracks main)"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/soplang/soplang"
8
license=('MIT')
9
provides=('soplang')
10
conflicts=('soplang')
11
makedepends=('cargo' 'git')
12
source=("$pkgname::git+https://github.com/soplang/soplang.git")
13
sha256sums=('SKIP')
14
15
pkgver() {
16
cd "$pkgname"
17
printf "%s.r%s.g%s" \
18
"$(grep -m1 '^version' Cargo.toml | cut -d '"' -f2)" \
19
"$(git rev-list --count HEAD)" \
20
"$(git rev-parse --short HEAD)"
21
}
22
23
prepare() {
24
cd "$pkgname"
25
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
26
}
27
28
build() {
29
cd "$pkgname"
30
export RUSTUP_TOOLCHAIN=stable
31
export CARGO_TARGET_DIR=target
32
cargo build --frozen --release
33
}
34
35
check() {
36
cd "$pkgname"
37
cargo test --frozen --release
38
}
39
40
package() {
41
cd "$pkgname"
42
install -Dm755 "target/release/soplang" "$pkgdir/usr/bin/soplang"
43
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
44
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-30 00:04:14 | Clean | 2 |
| 2026-08-29 23:41:07 | Low | 1 |