AUR AI Reviewer

Review Results

Version #2083 of mesa-git · commit 7322b62916be · status Reviewed

Risk 0/5 · Safe .SRCINFO
Result #1901

Comment

The change is a straightforward dependency metadata update in .SRCINFO, replacing gcc-libs with libgcc and libstdc++. This does not introduce code execution, network access, privilege escalation, or packaging behavior changes. It only affects declared runtime dependencies and is consistent with a normal rebuild/metadata refresh for current Arch packaging. No security concern is evident from this diff alone.

@@ -41,7 +41,8 @@ pkgbase = mesa-git
 	depends = vulkan-icd-loader
 	depends = zstd
 	depends = expat
-	depends = gcc-libs
+	depends = libgcc
+	depends = libstdc++
 	depends = libxfixes
 	depends = libx11
 	depends = systemd-libs
Risk 0/5 · Safe PKGBUILD
Result #1902

Comment

This is a low-risk dependency metadata change only. It replaces the meta-package `gcc-libs` with its split runtime components `libgcc` and `libstdc++`, which are standard Arch packages and do not introduce code execution, network access, privilege changes, or packaging hygiene concerns. No other build or install logic is affected.

@@ -47,7 +47,8 @@ depends=(
     'vulkan-icd-loader'
     'zstd'
     'expat'
-    'gcc-libs'
+    'libgcc'
+    'libstdc++'
     'libxfixes'
     'libx11'
     'systemd-libs'