chored
CLEAN
maintainer Aetf
0 votes
scanned 2026-08-22 00:02:17.015094
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 the official crates.io, a trusted Rust registry, and performs standard cargo build/test steps without executing untrusted remote code or introducing malicious payloads.
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: Aetf <aetf at unlimited-code dot works>
2
pkgname=chored
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="Run declared, sandboxed jobs on a host over forced-command SSH"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/Aetf/chored"
8
license=('MIT OR Apache-2.0')
9
depends=('gcc-libs' 'glibc' 'systemd')
10
makedepends=('cargo')
11
optdepends=('podman: run container image jobs'
12
'openssh: SSH entry point and setup key generation')
13
# Disable lto as it breaks rust -sys crates (undefined references when linking)
14
# See also https://github.com/Canop/broot/issues/852
15
options=('!lto')
16
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
17
sha512sums=('b396039ab853c1fb4369542c7e41c58b2de9fd0ea8bdb0962172bceb1f8c3d419f453684fff6c65a61a575811532c242c03aa97a6063839b1b8488678dca78c3')
18
19
prepare() {
20
cd "$pkgname-$pkgver"
21
22
export RUSTUP_TOOLCHAIN=stable
23
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
24
}
25
26
build() {
27
cd "$pkgname-$pkgver"
28
29
export RUSTUP_TOOLCHAIN=stable
30
export CARGO_TARGET_DIR=target
31
32
cargo build --frozen --release
33
}
34
35
check() {
36
cd "$pkgname-$pkgver"
37
38
export RUSTUP_TOOLCHAIN=stable
39
40
cargo test --frozen
41
}
42
43
package() {
44
cd "$pkgname-$pkgver"
45
46
install -Dm0755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
47
48
install -Dm0644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
49
install -Dm0644 LICENSE-MIT LICENSE-APACHE -t "$pkgdir/usr/share/licenses/$pkgname"
50
}
51
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 00:02:17 | Clean | 2 |
| 2026-08-21 23:15:29 | Low | 1 |