uutils-shadow
LOW
maintainer Chocobo1
0 votes
scanned 2026-09-11 15:22:58.728112
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
2
3
pkgname=uutils-shadow
4
pkgver=0.5.0
5
pkgrel=1
6
pkgdesc="A memory-safe reimplementation of the Linux shadow-utils in Rust"
7
arch=('i686' 'x86_64')
8
url="https://github.com/uutils/shadow"
9
license=('MIT')
10
depends=('glibc' 'libgcc' 'libxcrypt')
11
makedepends=('cargo' 'pkgconf')
12
source=("$pkgname-$pkgver-src.tar.gz::https://github.com/uutils/shadow/archive/refs/tags/$pkgver.tar.gz")
13
sha256sums=('72eaa54a666c715fed9ef9f642552a8e7e5ae7b3a7d30bd76ec0bd31c4f65a17')
14
15
16
prepare() {
17
cd "shadow-$pkgver"
18
19
if [ ! -f "Cargo.lock" ]; then
20
cargo update
21
fi
22
cargo fetch
23
}
24
25
check() {
26
cd "shadow-$pkgver"
27
28
#cargo test \
29
# --frozen
30
}
31
32
package() {
33
cd "shadow-$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-shadow"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-11 15:22:58 | Low | 1 |