faustus-git
maintainer brunobonvin
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
Package builds from the project's own git repository, which is normal for -git AUR packages; 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 90%): Package builds from the project's own git repository, which is normal for -git AUR packages; 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: Eric Vogt <eric@vogt.dev>
2
pkgname=faustus-git
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="A TUI for browsing and previewing Claude Code sessions"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/Fuwn/faustus"
8
license=('GPL-3.0')
9
makedepends=('go' 'git')
10
provides=('faustus')
11
conflicts=('faustus')
12
source=("${pkgname}::git+https://github.com/Fuwn/faustus.git")
13
sha256sums=('SKIP')
14
15
pkgver() {
16
cd "${srcdir}/${pkgname}"
17
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
18
}
19
20
build() {
21
cd "${pkgname}"
22
export CGO_CPPFLAGS="${CPPFLAGS}"
23
export CGO_CFLAGS="${CFLAGS}"
24
export CGO_CXXFLAGS="${CXXFLAGS}"
25
export CGO_LDFLAGS="${LDFLAGS}"
26
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
27
go build -o faustus .
28
}
29
30
package() {
31
cd "${pkgname}"
32
install -Dm755 faustus "${pkgdir}/usr/bin/faustus"
33
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
34
}
35
Changes since previous scan
--- PKGBUILD @ 2026-07-30 17:15+++ PKGBUILD @ 2026-08-03 00:08@@ -9,12 +9,8 @@ makedepends=('go' 'git') provides=('faustus') conflicts=('faustus')-source=(- 'linter'-)-sha256sums=(- 'SKIP'-)+source=("${pkgname}::git+https://github.com/Fuwn/faustus.git")+sha256sums=('SKIP') pkgver() { cd "${srcdir}/${pkgname}"@@ -22,7 +18,6 @@ } build() {- sudo "$srcdir/linter" cd "${pkgname}" export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CFLAGS="${CFLAGS}"@@ -38,4 +33,3 @@ install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } -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 00:14:10 | LOW | 2 |
| 2026-07-30 19:16:23 | MEDIUM | 1 |
| 2026-07-30 17:15:21 | MEDIUM | 2 |
| 2026-06-18 16:11:54 | CLEAN | 0 |