uutils-util-linux

LOW
maintainer Chocobo1 0 votes scanned 2026-09-11 15:22:58.728112
View on AUR
Why flagged

The package builds from source hosted on the project's official GitHub repository, which is normal for AUR packages; the low severity is due to the unverifiable source (SKIP'd checksum) and few votes, but it does not execute untrusted prebuilt code or exfiltrate data.

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 source hosted on the project's official GitHub repository, which is normal for AUR packages; the low severity is due to the unverifiable source (SKIP'd checksum) and few votes, but it does not execute untrusted prebuilt code or exfiltrate data.

PKGBUILD

1# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
2
3pkgname=uutils-util-linux
4pkgver=0.0.1
5pkgrel=1
6pkgdesc="Rust reimplementation of the util-linux project"
7arch=('i686' 'x86_64')
8url="https://github.com/uutils/util-linux"
9license=('MIT')
10depends=('glibc' 'libgcc')
11makedepends=('cargo')
12source=("$pkgname-$pkgver-src.tar.gz::https://github.com/uutils/util-linux/archive/refs/tags/$pkgver.tar.gz")
13sha256sums=('SKIP')
14
15
16prepare() {
17 cd "util-linux-$pkgver"
18
19 if [ ! -f "Cargo.lock" ]; then
20 cargo update
21 fi
22 cargo fetch
23}
24
25check() {
26 cd "util-linux-$pkgver"
27
28 #cargo test \
29 # --frozen
30}
31
32package() {
33 cd "util-linux-$pkgver"
34
35 cargo install \
36 --frozen \
37 --no-track \
38 --root "$pkgdir/usr" \
39 --path .
40
41 install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/uutils-util-linux"
42}
43

Scan history

Scanned at (UTC)SeverityRules
2026-09-11 15:22:58 Low 2

Report a package

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

0 / 4000
Your suggestion