AUR AI Reviewer

Review Results

Version #1804 of fvs2 · commit 96502777ca9a · status Reviewed

Risk 0/5 · Safe .SRCINFO
Result #634

Comment

The only change in .SRCINFO is a version bump from 0.8.0 to 0.8.1. No sources, checksums, build steps, install scripts, or package metadata affecting execution/persistence were changed in the provided diff hunk. Based on this diff alone, there is no evident security impact.

@@ -1,6 +1,6 @@
 pkgbase = fvs2
 	pkgdesc = Standalone CLI for FVS v2
-	pkgver = 0.8.0
+	pkgver = 0.8.1
 	pkgrel = 1
 	url = https://github.com/fvs-lab/fvs2
 	arch = x86_64
Risk 0/5 · Safe .SRCINFO
Result #635

Comment

The change only bumps the declared upstream release tarballs in .SRCINFO from v0.8.0/core v0.1.0 to v0.8.1/core v0.1.1 and updates the corresponding SHA-256 checksums. The sources remain official GitHub release archives over HTTPS, with no new build steps, scripts, or integrity red flags introduced in this diff. Based on the provided hunk alone, this is low risk.

@@ -8,9 +8,9 @@ pkgbase = fvs2
 	license = MIT
 	makedepends = go
 	depends = glibc
-	source = fvs2-0.8.0.tar.gz::https://github.com/fvs-lab/fvs2/archive/refs/tags/v0.8.0.tar.gz
-	source = core-0.1.0.tar.gz::https://github.com/fvs-lab/core/archive/refs/tags/v0.1.0.tar.gz
-	sha256sums = 18e8a51e6df3068c05b95e4595f194bf095d760aa37a06a205a543154ffe7b1a
-	sha256sums = f9cbdc707a8c090b5c57e1ebd7283170586cf2dc910792daba01f4024496d8da
+	source = fvs2-0.8.1.tar.gz::https://github.com/fvs-lab/fvs2/archive/refs/tags/v0.8.1.tar.gz
+	source = core-0.1.1.tar.gz::https://github.com/fvs-lab/core/archive/refs/tags/v0.1.1.tar.gz
+	sha256sums = adcc2e0e5130b4bb8c18ffdcc3c63522b36894d32dbae508d5c90dbeeabb1837
+	sha256sums = 91b417276815752ab7608659b33d09d8d4b3e4d03303c2314685440808a52eb6
 
 pkgname = fvs2
Risk 0/5 · Safe PKGBUILD
Result #636

Comment

The change is a simple version bump in PKGBUILD metadata: _corever 0.1.0 -> 0.1.1 and pkgver 0.8.0 -> 0.8.1. No source URLs, build steps, install scripts, permissions, or packaging logic were modified in the provided diff, so there is no evidence of added attack surface or supply-chain risk in this change.

@@ -1,9 +1,9 @@
 # Maintainer: w568w <w568w at outlook dot com>
 
-_corever=0.1.0
+_corever=0.1.1
 
 pkgname=fvs2
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='Standalone CLI for FVS v2'
 arch=('x86_64' 'aarch64')
Risk 0/5 · Safe PKGBUILD
Result #637

Comment

The change only bumps pkgver/_corever and refreshes source checksums. The sources are fetched over HTTPS from the upstream GitHub repositories, there are no new build steps, no added scripts, and no packaging/persistence changes. I did not see any integrity red flags in the diff itself beyond the normal trust in upstream release tarballs.

@@ -15,8 +15,8 @@ source=(
   "$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
   "core-${_corever}.tar.gz::https://github.com/fvs-lab/core/archive/refs/tags/v${_corever}.tar.gz"
 )
-sha256sums=('18e8a51e6df3068c05b95e4595f194bf095d760aa37a06a205a543154ffe7b1a'
-            'f9cbdc707a8c090b5c57e1ebd7283170586cf2dc910792daba01f4024496d8da')
+sha256sums=('adcc2e0e5130b4bb8c18ffdcc3c63522b36894d32dbae508d5c90dbeeabb1837'
+            '91b417276815752ab7608659b33d09d8d4b3e4d03303c2314685440808a52eb6')
 
 prepare() {
   local builddir="$srcdir/$pkgname-$pkgver"