AUR AI Reviewer

Review Results

Version #2053 of python-gevent-eventemitter · commit 8e97ec7d24a9 · status Reviewed

Risk 0/5 · Safe .SRCINFO
Result #1776

Comment

The only change is a pkgrel bump in .SRCINFO from 5 to 6. This is metadata-only and does not alter sources, build steps, dependencies, install scripts, or shipped artifacts. No security-relevant behavior is introduced by this diff.

@@ -1,7 +1,7 @@
 pkgbase = python-gevent-eventemitter
 	pkgdesc = EventEmitter using gevent
 	pkgver = 2.1
-	pkgrel = 5
+	pkgrel = 6
 	url = https://github.com/rossengeorgiev/gevent-eventemitter
 	arch = any
 	license = MIT
Risk 0/5 · Safe PKGBUILD
Result #1777

Comment

The change only bumps pkgrel from 5 to 6 in PKGBUILD and does not alter sources, build steps, dependencies, install scripts, or packaging behavior. No security-relevant functionality is introduced by this diff.

@@ -2,7 +2,7 @@
 pkgname=python-gevent-eventemitter
 _name=${pkgname#python-}
 pkgver=2.1
-pkgrel=5
+pkgrel=6
 pkgdesc="EventEmitter using gevent"
 arch=('any')
 url="https://github.com/rossengeorgiev/gevent-eventemitter"
Risk 0/5 · Safe PKGBUILD
Result #1778

Comment

The change only alters the test invocation in check() from Python's -P (don't prepend potentially unsafe paths) to -I (isolated mode). This is a hardening change for tests, not a supply-chain or packaging risk. It does not affect sources, build outputs, install scripts, permissions, or runtime package contents.

@@ -30,7 +30,7 @@ check() {
   cd "$_name-$pkgver"
   python -m venv --clear --without-pip --system-site-packages test-env
   test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python -P -m pytest
+  test-env/bin/python -I -m pytest
 }
 
 package() {