chored

CLEAN
maintainer Aetf 0 votes scanned 2026-08-22 00:02:17.015094
View on AUR

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>
2pkgname=chored
3pkgver=0.1.0
4pkgrel=1
5pkgdesc="Run declared, sandboxed jobs on a host over forced-command SSH"
6arch=('x86_64' 'aarch64')
7url="https://github.com/Aetf/chored"
8license=('MIT OR Apache-2.0')
9depends=('gcc-libs' 'glibc' 'systemd')
10makedepends=('cargo')
11optdepends=('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
15options=('!lto')
16source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
17sha512sums=('b396039ab853c1fb4369542c7e41c58b2de9fd0ea8bdb0962172bceb1f8c3d419f453684fff6c65a61a575811532c242c03aa97a6063839b1b8488678dca78c3')
18
19prepare() {
20 cd "$pkgname-$pkgver"
21
22 export RUSTUP_TOOLCHAIN=stable
23 cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
24}
25
26build() {
27 cd "$pkgname-$pkgver"
28
29 export RUSTUP_TOOLCHAIN=stable
30 export CARGO_TARGET_DIR=target
31
32 cargo build --frozen --release
33}
34
35check() {
36 cd "$pkgname-$pkgver"
37
38 export RUSTUP_TOOLCHAIN=stable
39
40 cargo test --frozen
41}
42
43package() {
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)SeverityRules
2026-08-22 00:02:17 Clean 2
2026-08-21 23:15:29 Low 1

Report a package

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

0 / 4000
Your suggestion