jj-release
CLEAN
maintainer saylesss88
0 votes
scanned 2026-09-26 00:12:15.973514
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 source crate downloaded from crates.io, which is the official Rust package registry, and follows standard Rust packaging practices without executing untrusted remote code or introducing supply-chain risks.
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: Your Name <saylesss87@proton.me at domain dot tld>
2
pkgname=jj-release
3
pkgver=0.8.0
4
pkgrel=1
5
pkgdesc='Semantic releases and changelog generation for jj-vcs repositories'
6
url='https://github.com/saylesss88/jj-release'
7
license=('Apache-2.0')
8
makedepends=('cargo')
9
depends=('gcc-libs' 'glibc')
10
arch=('x86_64')
11
options=(!lto)
12
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
13
b2sums=('6b0e74bf3a6f4a3c91d8222f28c8c9ac2a8bfd1361cbcc6c2307283a75440e161e6ba2af81fc584a0e0f7559a0fc0f41c35edaca01bd5443a21244189c1ba345')
14
15
prepare() {
16
export RUSTUP_TOOLCHAIN=stable
17
cd "$pkgname-$pkgver"
18
echo "[workspace]" >> Cargo.toml
19
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
20
}
21
22
build() {
23
export RUSTUP_TOOLCHAIN=stable
24
export CARGO_TARGET_DIR=target
25
cd "$pkgname-$pkgver"
26
cargo build --frozen --release --all-features
27
}
28
29
check() {
30
export RUSTUP_TOOLCHAIN=stable
31
cd "$pkgname-$pkgver"
32
cargo test --frozen --all-features
33
}
34
35
package() {
36
cd "$pkgname-$pkgver"
37
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname"
38
# install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
39
}
40
41
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-26 00:12:15 | Clean | 2 |
| 2026-09-25 23:13:47 | Low | 1 |