kache-git

maintainer kunobi · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package builds from the project's own git repository, which is normal for AUR development packages; the low votes and recent upload are noted but do not indicate malice, and the source is transparent and auditable.

Triggered rules

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.

LOW AI review llm_review

An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from the project's own git repository, which is normal for AUR development packages; the low votes and recent upload are noted but do not indicate malice, and the source is transparent and auditable.

PKGBUILD

1# Maintainer: Kunobi Ninja <feedback@kunobi.ninja>
2# Builds kache from the latest `main`. pkgver() derives the version from git,
3# so this tracks unreleased/dev code — rebuild to update.
4pkgname=kache-git
5pkgver=0.0.0.r0.g0000000
6pkgrel=1
7pkgdesc='Content-addressed zero-copy build cache for Rust, C/C++ and more (latest git main)'
8arch=('x86_64' 'aarch64')
9url='https://github.com/kunobi-ninja/kache'
10license=('Apache-2.0')
11depends=('gcc-libs')
12makedepends=('git' 'cargo')
13provides=('kache')
14conflicts=('kache')
15options=('!lto')
16source=("kache::git+https://github.com/kunobi-ninja/kache.git")
17sha256sums=('SKIP')
18
19pkgver() {
20 cd "$srcdir/kache"
21 printf '%s.r%s.g%s' \
22 "$(git describe --tags --abbrev=0 2>/dev/null | sed 's/^v//' || echo 0.0.0)" \
23 "$(git rev-list --count HEAD)" \
24 "$(git rev-parse --short=7 HEAD)"
25}
26
27prepare() {
28 cd "$srcdir/kache"
29 cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
30}
31
32build() {
33 cd "$srcdir/kache"
34 CARGO_TARGET_DIR=target cargo build --frozen --release -p kache
35}
36
37package() {
38 cd "$srcdir/kache"
39 install -Dm0755 target/release/kache "$pkgdir/usr/bin/kache"
40
41 local shell
42 for shell in bash zsh fish elvish; do
43 ./target/release/kache completions "$shell" > "kache.$shell"
44 done
45 install -Dm0644 kache.bash "$pkgdir/usr/share/bash-completion/completions/kache"
46 install -Dm0644 kache.zsh "$pkgdir/usr/share/zsh/site-functions/_kache"
47 install -Dm0644 kache.fish "$pkgdir/usr/share/fish/vendor_completions.d/kache.fish"
48 install -Dm0644 kache.elvish "$pkgdir/usr/share/elvish/lib/kache.elv"
49
50 install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
51}
52

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 LOW 2
2026-08-02 00:16:08 LOW 2
2026-08-01 00:11:18 LOW 2
2026-07-31 00:14:10 LOW 2
2026-07-30 00:17:23 LOW 2
2026-07-29 00:25:53 LOW 2
2026-07-28 19:39:35 LOW 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion