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.
4
pkgname=kache-git
5
pkgver=0.0.0.r0.g0000000
6
pkgrel=1
7
pkgdesc='Content-addressed zero-copy build cache for Rust, C/C++ and more (latest git main)'
8
arch=('x86_64' 'aarch64')
9
url='https://github.com/kunobi-ninja/kache'
10
license=('Apache-2.0')
11
depends=('gcc-libs')
12
makedepends=('git' 'cargo')
13
provides=('kache')
14
conflicts=('kache')
15
options=('!lto')
16
source=("kache::git+https://github.com/kunobi-ninja/kache.git")
17
sha256sums=('SKIP')
18
19
pkgver() {
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
27
prepare() {
28
cd "$srcdir/kache"
29
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
30
}
31
32
build() {
33
cd "$srcdir/kache"
34
CARGO_TARGET_DIR=target cargo build --frozen --release -p kache
35
}
36
37
package() {
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) | Severity | Rules |
|---|---|---|
| 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 |