memoria-bin
CLEAN
maintainer vikimaster2
0 votes
scanned 2026-09-10 00:22:44.768965
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 downloads a versioned release archive from the project's official GitHub repository, verifies its checksum, and installs a prebuilt binary and completions; no untrusted or obfuscated code execution occurs.
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: Viktor Danov <orangeleaf12@gmail.com>
2
# SPDX-License-Identifier: 0BSD
3
4
pkgname=memoria-bin
5
pkgver=0.3.0
6
pkgrel=1
7
pkgdesc="Keep a project's documented mental model connected to its code"
8
arch=('x86_64')
9
url='https://github.com/viktordanov/rs-memoria'
10
license=('MIT')
11
depends=('glibc>=2.39' 'libgcc' 'git')
12
provides=("memoria=${pkgver}")
13
conflicts=('memoria')
14
options=('!strip' '!debug')
15
_archive="memoria-${pkgver}-${CARCH}-unknown-linux-gnu"
16
source=("${url}/releases/download/v${pkgver}/${_archive}.tar.gz")
17
sha256sums=('09d4aa44aaf030e8538d7d5da27fd4daa5d7c516d20bae496bfe78e2ada0013c')
18
19
build() {
20
cd "${_archive}"
21
./memoria completions bash > memoria.bash
22
./memoria completions zsh > _memoria
23
./memoria completions fish > memoria.fish
24
}
25
26
check() {
27
cd "${_archive}"
28
[[ $(./memoria --version) == "memoria ${pkgver}" ]]
29
./memoria --help > /dev/null
30
test -s memoria.bash
31
test -s _memoria
32
test -s memoria.fish
33
}
34
35
package() {
36
cd "${_archive}"
37
install -Dm755 memoria "${pkgdir}/usr/bin/memoria"
38
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
39
install -Dm644 memoria.bash "${pkgdir}/usr/share/bash-completion/completions/memoria"
40
install -Dm644 _memoria "${pkgdir}/usr/share/zsh/site-functions/_memoria"
41
install -Dm644 memoria.fish "${pkgdir}/usr/share/fish/vendor_completions.d/memoria.fish"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-10 00:22:44 | Clean | 2 |
| 2026-09-09 23:20:11 | Low | 1 |