qt6-topqml-git
The package builds from a git repository hosted on the maintainer's GitHub, which is a normal practice for AUR-git packages; the source is not obfuscated or malicious, and it builds a Qt6/QML module from public source, with no evidence of remote code execution or data exfiltration.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a git repository hosted on the maintainer's GitHub, which is a normal practice for AUR-git packages; the source is not obfuscated or malicious, and it builds a Qt6/QML module from public source, with no evidence of remote code execution or data exfiltration.
PKGBUILD
# Maintainer: Alex Indigo <iam@alexindigo.com>
pkgname=qt6-topqml-git
_projname=topqml
_release_ver=0.1.0.r0
pkgver=0.1.0.r0.g7d39947
pkgrel=1
pkgdesc="Qt6/QML module: system monitoring collectors (btop-derived) with QML bindings — git master"
options=(!debug)
arch=('x86_64' 'aarch64')
url="https://github.com/alexindigo/topqml"
license=('GPL-3.0-or-later')
depends=('qt6-base' 'qt6-declarative')
makedepends=('cmake' 'git')
provides=('qt6-topqml')
conflicts=('qt6-topqml')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
# NOTE: capture describe output explicitly — `git describe ... | sed ...`
# masks describe's exit code (sed exits 0 on empty input), so a pipeline
# `|| echo fallback` never fires on tagless repos.
local out
out=$(git describe --long --tags 2>/dev/null) || out=""
if [ -n "$out" ]; then
printf "%s" "$out" | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
else
echo "${_release_ver}.g$(git rev-parse --short HEAD)"
fi
}
build() {
cmake -B build -S "${srcdir}/${pkgname}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 07:10:52 | Low | 2 |