vvc-vtm-git
The source is a git repository from the official Fraunhofer HHI host, which is the legitimate project maintainer; building from a non-whitelisted but official project host with SKIP'd checksum is low risk as it's the project's own code.
Triggered rules
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 source is a git repository from the official Fraunhofer HHI host, which is the legitimate project maintainer; building from a non-whitelisted but official project host with SKIP'd checksum is low risk as it's the project's own code.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:13
source=("git+https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git")
PKGBUILD
1 offending line(s) highlighted# Maintainer: kekmacska
_gitname=VVCSoftware_VTM
pkgname=vvc-vtm-git
pkgver=8484
pkgrel=1
pkgdesc="VVC Test Model (VTM) reference encoder/decoder - git version"
arch=('x86_64')
url="https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM"
license=('BSD')
depends=('gcc-libs')
makedepends=('git' 'cmake' 'make')
source=("git+https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git")
sha256sums=('SKIP')
pkgver() {
cd "$_gitname"
git rev-list --count HEAD
}
build() {
cd "$_gitname"
BASE_CFLAGS="-O3 -march=native -mtune=native \
-falign-functions=32 -falign-loops=32 \
-fno-math-errno -fno-trapping-math \
-fno-semantic-interposition \
-fomit-frame-pointer -fno-plt \
-pipe -flto -Wall -Wno-unused \
-fstrict-aliasing \
-fmerge-all-constants -ffunction-sections \
-fdata-sections"
BASE_CXXFLAGS="$BASE_CFLAGS"
BASE_LDFLAGS="-Wl,--icf=safe -Wl,--gc-sections -Wl,-O3 -flto -fno-plt"
# Clang-only flags
CLANG_EXTRA_CFLAGS="-fstrict-vtable-pointers -fno-asynchronous-unwind-tables"
CLANG_EXTRA_CXXFLAGS="$CLANG_EXTRA_CFLAGS"
CLANG_EXTRA_LDFLAGS="-fuse-ld=lld"
# Detect compiler
if command -v clang >/dev/null 2>&1; then
export CC=clang
export CXX=clang++
export CFLAGS="$BASE_CFLAGS $CLANG_EXTRA_CFLAGS"
export CXXFLAGS="$BASE_CXXFLAGS $CLANG_EXTRA_CXXFLAGS"
export LDFLAGS="$BASE_LDFLAGS $CLANG_EXTRA_LDFLAGS"
else
export CC=gcc
export CXX=g++
export CFLAGS="$BASE_CFLAGS"
export CXXFLAGS="$BASE_CXXFLAGS"
export LDFLAGS="$BASE_LDFLAGS"
fi
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_SHARED=ON \
-DENABLE_STATIC=OFF \
-Wno-author
make -j"$(nproc)"
}
package() {
cd "$srcdir/$_gitname"
# find actual umake output directory (compiler name/version independent)
umake_bin=$(find bin/umake -type d -path "*/x86_64/release" -print -quit)
umake_lib=$(find lib/umake -type d -path "*/x86_64/release" -print -quit)
# Binaries
install -d "$pkgdir/usr/bin"
for f in "$umake_bin"/*; do
base="$(basename "$f")"
# DO NOT INSTALL parcat (conflicts with parallel)
[[ "$base" == "parcat" ]] && continue
[[ "$base" == "parcatStatic" ]] && continue
install -m755 "$f" "$pkgdir/usr/bin/$base"
done
# License
install -d "$pkgdir/usr/share/licenses/$pkgname"
install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |