kobe-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 -git AUR packages; the low severity is due to few votes and recent upload, not inherent risk.
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 95%): The package builds from the project's own git repository, which is normal for -git AUR packages; the low severity is due to few votes and recent upload, not inherent risk.
PKGBUILD
1
# Maintainer: Kunobi Ninja <feedback@kunobi.ninja>
2
# Builds kobe from the latest `main`. pkgver() derives the version from git,
3
# so this tracks unreleased/dev code — rebuild to update. The CLI lives in the
4
# `kobectl` workspace crate and installs as the `kobe` binary.
5
pkgname=kobe-git
6
pkgver=0.0.0.r0.g0000000
7
pkgrel=1
8
pkgdesc='CLI for pools of pre-warmed Kubernetes virtual clusters (latest git main)'
9
arch=('x86_64' 'aarch64')
10
url='https://github.com/kunobi-ninja/kobe'
11
license=('Apache-2.0')
12
depends=('gcc-libs')
13
makedepends=('git' 'cargo')
14
provides=('kobe')
15
conflicts=('kobe')
16
options=('!lto')
17
source=("kobe::git+https://github.com/kunobi-ninja/kobe.git")
18
sha256sums=('SKIP')
19
20
pkgver() {
21
cd "$srcdir/kobe"
22
printf '%s.r%s.g%s' \
23
"$(git describe --tags --abbrev=0 2>/dev/null | sed 's/^v//' || echo 0.0.0)" \
24
"$(git rev-list --count HEAD)" \
25
"$(git rev-parse --short=7 HEAD)"
26
}
27
28
prepare() {
29
cd "$srcdir/kobe"
30
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
31
}
32
33
build() {
34
cd "$srcdir/kobe"
35
CARGO_TARGET_DIR=target cargo build --frozen --release -p kobectl
36
}
37
38
package() {
39
cd "$srcdir/kobe"
40
install -Dm0755 target/release/kobe "$pkgdir/usr/bin/kobe"
41
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
42
}
43
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 |