vvc-vtm-git

LOW
maintainer kekmacska 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

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

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 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)
Medium source=() URL on a non-standard host 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
1# Maintainer: kekmacska
2
3_gitname=VVCSoftware_VTM
4pkgname=vvc-vtm-git
5pkgver=8484
6pkgrel=1
7pkgdesc="VVC Test Model (VTM) reference encoder/decoder - git version"
8arch=('x86_64')
9url="https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM"
10license=('BSD')
11depends=('gcc-libs')
12makedepends=('git' 'cmake' 'make')
13source=("git+https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git")
14sha256sums=('SKIP')
15
16pkgver() {
17 cd "$_gitname"
18 git rev-list --count HEAD
19}
20
21build() {
22 cd "$_gitname"
23
24 BASE_CFLAGS="-O3 -march=native -mtune=native \
25 -falign-functions=32 -falign-loops=32 \
26 -fno-math-errno -fno-trapping-math \
27 -fno-semantic-interposition \
28 -fomit-frame-pointer -fno-plt \
29 -pipe -flto -Wall -Wno-unused \
30 -fstrict-aliasing \
31 -fmerge-all-constants -ffunction-sections \
32 -fdata-sections"
33
34 BASE_CXXFLAGS="$BASE_CFLAGS"
35 BASE_LDFLAGS="-Wl,--icf=safe -Wl,--gc-sections -Wl,-O3 -flto -fno-plt"
36
37 # Clang-only flags
38 CLANG_EXTRA_CFLAGS="-fstrict-vtable-pointers -fno-asynchronous-unwind-tables"
39 CLANG_EXTRA_CXXFLAGS="$CLANG_EXTRA_CFLAGS"
40 CLANG_EXTRA_LDFLAGS="-fuse-ld=lld"
41
42 # Detect compiler
43 if command -v clang >/dev/null 2>&1; then
44 export CC=clang
45 export CXX=clang++
46 export CFLAGS="$BASE_CFLAGS $CLANG_EXTRA_CFLAGS"
47 export CXXFLAGS="$BASE_CXXFLAGS $CLANG_EXTRA_CXXFLAGS"
48 export LDFLAGS="$BASE_LDFLAGS $CLANG_EXTRA_LDFLAGS"
49 else
50 export CC=gcc
51 export CXX=g++
52 export CFLAGS="$BASE_CFLAGS"
53 export CXXFLAGS="$BASE_CXXFLAGS"
54 export LDFLAGS="$BASE_LDFLAGS"
55 fi
56
57 mkdir -p build
58 cd build
59
60 cmake .. \
61 -DCMAKE_BUILD_TYPE=Release \
62 -DCMAKE_INSTALL_PREFIX=/usr \
63 -DENABLE_SHARED=ON \
64 -DENABLE_STATIC=OFF \
65 -Wno-author
66
67 make -j"$(nproc)"
68}
69
70package() {
71 cd "$srcdir/$_gitname"
72
73 # find actual umake output directory (compiler name/version independent)
74 umake_bin=$(find bin/umake -type d -path "*/x86_64/release" -print -quit)
75 umake_lib=$(find lib/umake -type d -path "*/x86_64/release" -print -quit)
76
77 # Binaries
78 install -d "$pkgdir/usr/bin"
79 for f in "$umake_bin"/*; do
80 base="$(basename "$f")"
81
82 # DO NOT INSTALL parcat (conflicts with parallel)
83 [[ "$base" == "parcat" ]] && continue
84 [[ "$base" == "parcatStatic" ]] && continue
85
86 install -m755 "$f" "$pkgdir/usr/bin/$base"
87 done
88
89 # License
90 install -d "$pkgdir/usr/share/licenses/$pkgname"
91 install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
92}
93

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

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

0 / 4000
Your suggestion