archie-cli
The package builds from a GitLab source repository with a fixed commit and uses SKIP for checksums, which is suboptimal but common for VCS packages; the build process is transparent and uses standard Python tooling, posing no evident risk of remote code execution or supply-chain compromise.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a GitLab source repository with a fixed commit and uses SKIP for checksums, which is suboptimal but common for VCS packages; the build process is transparent and uses standard Python tooling, posing no evident risk of remote code execution or supply-chain compromise.
PKGBUILD
# Maintainer: Gabriel Chamon <gchamon@tuta.io>
pkgname=archie-cli
pkgver=0.2.0
pkgrel=2
_commit=57b10f2fc7a536ea6d57c1fa21ce79960e150de1
pkgdesc="Archlinux system operation and maintenance CLI/applet"
arch=(any)
url="https://gitlab.com/gabriel.chamon/archie"
license=(MIT)
depends=("python>=3.14" sqlite)
makedepends=(python-installer uv)
provides=(archie)
conflicts=(archie archie-cli-nightly)
replaces=(archie-cli-nightly)
source=("archie::git+https://gitlab.com/gabriel.chamon/archie.git#commit=${_commit}")
sha256sums=('SKIP')
build() {
cd "$srcdir/archie"
sed -i "s/^version = \"[^\"]*\"/version = \"$pkgver\"/" pyproject.toml
uv build --wheel --out-dir "$srcdir/dist"
}
package() {
cd "$srcdir/archie"
python -m installer --destdir="$pkgdir" "$srcdir"/dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 docs/user/KEYBOARD_SHORTCUTS.md "$pkgdir/usr/share/doc/$pkgname/KEYBOARD_SHORTCUTS.md"
install -Dm644 deployment-packages/local/lib/zsh/README.md "$pkgdir/usr/share/doc/$pkgname/ZSH_COMMANDS.md"
install -Dm644 packaging/archie-cli/_archie "$pkgdir/usr/share/zsh/site-functions/_archie"
install -Dm644 packaging/archie-cli/archie.sysusers "$pkgdir/usr/lib/sysusers.d/archie.conf"
install -Dm644 packaging/archie-cli/archie.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/archie.conf"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 21:49:23 | Low | 2 |