AUR AI Reviewer

Review Results

Version #2127 of unityhub · commit d9ab7f96fdc8 · status Reviewed

Risk 0/5 · Safe .SRCINFO
Result #2066

Comment

The only change in this .SRCINFO diff is a pkgrel bump from 1 to 2. No sources, checksums, build steps, dependencies, install scripts, or package contents changed, so there is no new security-relevant behavior to assess in this diff. This appears to be a metadata-only rebuild/release bump.

@@ -1,7 +1,7 @@
 pkgbase = unityhub
 	pkgdesc = The Unity Hub is a standalone application that streamlines the way you find, download, and manage your Unity Projects and installations.
 	pkgver = 3.20.0
-	pkgrel = 1
+	pkgrel = 2
 	url = https://unity.com/
 	install = unityhub.install
 	arch = x86_64
Risk 0/5 · Safe PKGBUILD
Result #2067

Comment

This change only bumps pkgrel from 1 to 2 in PKGBUILD and does not alter sources, build steps, dependencies, install scripts, or package contents. No security-relevant behavior changes are present in the provided diff.

@@ -6,7 +6,7 @@
 
 pkgname=unityhub
 pkgver=3.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The Unity Hub is a standalone application that streamlines the way you find, download, and manage your Unity Projects and installations."
 url="https://unity.com/"
 arch=('x86_64')
Risk 0/5 · Safe PKGBUILD
Result #2068

Comment

The change fixes an incorrect symlink target in package(): the packaged /usr/bin/unityhub symlink now points to the installed path /usr/lib/unityhub/unityhub instead of an absolute path inside $pkgdir. This is a packaging correctness improvement, not a security regression. No new network access, privilege escalation, persistence, or suspicious install behavior is introduced by this diff hunk.

@@ -29,7 +29,7 @@ install='unityhub.install'
 package() {
   tar -xf 'data.tar.zst' -C "$pkgdir/"
   mkdir -p "$pkgdir/usr/bin"
-  ln -sf "$pkgdir/usr/lib/unityhub/unityhub" "$pkgdir/usr/bin/unityhub"
+  ln -sf "/usr/lib/unityhub/unityhub" "$pkgdir/usr/bin/unityhub"
 
   install -Dm644 "$srcdir/license.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
   install -Dm644 "$srcdir/services-config.json" "$pkgdir/usr/share/unity3d/config/services-config.json"