memoria-bin

CLEAN
maintainer vikimaster2 0 votes scanned 2026-09-10 00:22:44.768965
View on AUR

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
4pkgname=memoria-bin
5pkgver=0.3.0
6pkgrel=1
7pkgdesc="Keep a project's documented mental model connected to its code"
8arch=('x86_64')
9url='https://github.com/viktordanov/rs-memoria'
10license=('MIT')
11depends=('glibc>=2.39' 'libgcc' 'git')
12provides=("memoria=${pkgver}")
13conflicts=('memoria')
14options=('!strip' '!debug')
15_archive="memoria-${pkgver}-${CARCH}-unknown-linux-gnu"
16source=("${url}/releases/download/v${pkgver}/${_archive}.tar.gz")
17sha256sums=('09d4aa44aaf030e8538d7d5da27fd4daa5d7c516d20bae496bfe78e2ada0013c')
18
19build() {
20 cd "${_archive}"
21 ./memoria completions bash > memoria.bash
22 ./memoria completions zsh > _memoria
23 ./memoria completions fish > memoria.fish
24}
25
26check() {
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
35package() {
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)SeverityRules
2026-09-10 00:22:44 Clean 2
2026-09-09 23:20:11 Low 1

Report a package

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

0 / 4000
Your suggestion