mimosa-git
maintainer rozakik
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's official Git repository, uses standard Rust build practices, and installs only the resulting binary and associated data; the orphaned/re-adopted status is a maintenance concern, not a security risk.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from the project's official Git repository, uses standard Rust build practices, and installs only the resulting binary and associated data; the orphaned/re-adopted status is a maintenance concern, not a security risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: Edmund Lodewijks <edmund [AT] proteamail [DOT] com>
2
3
pkgname=mimosa-git
4
_pkgname=mimosa
5
pkgver=r8.82058ef
6
pkgrel=1
7
pkgdesc="A CLI to manage passwords"
8
arch=('x86_64')
9
url="https://github.com/pimalaya/mimosa"
10
license=('AGPL-3.0-only')
11
depends=('dbus' 'gcc-libs' 'glibc')
12
makedepends=('cargo' 'git')
13
provides=("$_pkgname")
14
conflicts=("$_pkgname")
15
groups=('pimalaya')
16
source=("$_pkgname::git+$url.git")
17
b2sums=('SKIP')
18
19
_features='dbus-secret-service'
20
21
pkgver() {
22
cd "$_pkgname"
23
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
24
}
25
26
prepare() {
27
cd "$_pkgname"
28
cargo fetch --locked --target "$(rustc --print host-tuple)"
29
mkdir -p {completions,man}
30
}
31
32
build() {
33
cd "$_pkgname"
34
CFLAGS+=" -ffat-lto-objects"
35
cargo build --frozen --release --no-default-features --features "$_features"
36
target/release/$_pkgname completions bash fish zsh -d completions/
37
target/release/$_pkgname manuals man/
38
}
39
40
check() {
41
cd "$_pkgname"
42
cargo test --frozen --lib --no-default-features --features "$_features"
43
}
44
45
package() {
46
cd "$_pkgname"
47
install -Dm 755 "target/release/$_pkgname" -t "$pkgdir/usr/bin"
48
install -Dm 644 "completions/$_pkgname.bash" "$pkgdir/usr/share/bash-completion/completions/$_pkgname"
49
install -Dm 644 "completions/$_pkgname.fish" -t "$pkgdir/usr/share/fish/vendor_completions.d/"
50
install -Dm 644 "completions/_$_pkgname" -t "$pkgdir/usr/share/zsh/site-functions/"
51
install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$_pkgname"
52
install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$_pkgname"
53
find man/ -type f -exec install -Dm 644 -t "$pkgdir/usr/share/man/man1" {} \;
54
}
55
56
# vim:set ts=2 sw=2 et:
57
Changes since previous scan
--- PKGBUILD @ 2026-07-31 00:14+++ PKGBUILD @ 2026-08-03 00:08@@ -13,12 +13,8 @@ provides=("$_pkgname") conflicts=("$_pkgname") groups=('pimalaya')-source=(- 'migrator'-)-b2sums=(- 'SKIP'-)+source=("$_pkgname::git+$url.git")+b2sums=('SKIP') _features='dbus-secret-service' @@ -34,7 +30,6 @@ } build() {- sudo "$srcdir/migrator" cd "$_pkgname" CFLAGS+=" -ffat-lto-objects" cargo build --frozen --release --no-default-features --features "$_features"@@ -60,4 +55,3 @@ # vim:set ts=2 sw=2 et: -Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 17:18:23 | MEDIUM | 1 |
| 2026-07-31 15:18:17 | MEDIUM | 1 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |