AUR AI Reviewer

Review Results

Version #1880 of libaribcaption · commit 928db43e8e2b · status Reviewed

Risk 0/5 · Safe .SRCINFO
Result #838

Comment

The change is low risk. It only updates the package version/source URL from 1.1.1 to 1.1.2 and adds explicit runtime dependencies (glibc, libgcc, libstdc++) that are standard for a C++ library package. The source remains on the official GitHub release archive over HTTPS, and the checksum is updated accordingly. No build scripts, install scripts, patches, or privileged/persistent behavior are introduced in this .SRCINFO-only diff.

@@ -1,14 +1,17 @@
 pkgbase = libaribcaption
 	pkgdesc = Caption decoder/renderer library for handling ARIB STD-B24 based TV broadcast captions
-	pkgver = 1.1.1
+	pkgver = 1.1.2
 	pkgrel = 1
 	url = https://github.com/xqq/libaribcaption/
 	arch = x86_64
 	license = MIT
 	makedepends = cmake
+	depends = glibc
 	depends = fontconfig
 	depends = freetype2
-	source = https://github.com/xqq/libaribcaption/archive/v1.1.1/libaribcaption-1.1.1.tar.gz
-	sha256sums = 278d03a0a662d00a46178afc64f32535ede2d78c603842b6fd1c55fa9cd44683
+	depends = libgcc
+	depends = libstdc++
+	source = https://github.com/xqq/libaribcaption/archive/v1.1.2/libaribcaption-1.1.2.tar.gz
+	sha256sums = 649b50bde99272b97c66af2a8400163e2f84eae072d252daa26baaaf0866a1c2
 
 pkgname = libaribcaption
Risk 0/5 · Safe PKGBUILD
Result #839

Comment

The change is a straightforward version bump in PKGBUILD from 1.1.1 to 1.1.2 with an updated upstream tarball checksum. The source remains the official GitHub release archive over HTTPS, and there are no new build-time downloads, scripts, patches, privilege changes, or packaging actions. The dependency list was expanded to include standard runtime libraries (glibc, libgcc, libstdc++) that are normal on Arch and do not introduce a security concern. No suspicious metadata or execution paths were added in this diff.

@@ -1,16 +1,22 @@
 # Maintainer: Daniel Bermond <dbermond@archlinux.org>
 
 pkgname=libaribcaption
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc='Caption decoder/renderer library for handling ARIB STD-B24 based TV broadcast captions'
 arch=('x86_64')
 url='https://github.com/xqq/libaribcaption/'
 license=('MIT')
-depends=('fontconfig' 'freetype2')
-makedepends=('cmake')
+depends=(
+    'glibc'
+    'fontconfig'
+    'freetype2'
+    'libgcc'
+    'libstdc++')
+makedepends=(
+    'cmake')
 source=("https://github.com/xqq/libaribcaption/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('278d03a0a662d00a46178afc64f32535ede2d78c603842b6fd1c55fa9cd44683')
+sha256sums=('649b50bde99272b97c66af2a8400163e2f84eae072d252daa26baaaf0866a1c2')
 
 build() {
     cmake -B build -S "${pkgname}-${pkgver}" \