AUR AI Reviewer

Review Results

Version #2437 of hyprland-git · commit b681df79e31a · status Reviewed

Risk 0/5 · Safe .gitignore
Result #3360

Comment

The change only updates .gitignore to stop ignoring the package install script (`hyprland-git.install`). This is a repository hygiene change and does not itself introduce executable behavior or alter build/package logic. I found no security-relevant content in the diff hunk provided.

@@ -2,3 +2,4 @@
 !.gitignore
 !.SRCINFO
 !PKGBUILD
+!hyprland-git.install
Risk 0/5 · Safe hyprland-git.install
Result #3361

Comment

The change only adds a benign pacman install/upgrade message informing users that hyprpm was split into a separate package. It performs no network access, no privilege changes, no file modifications, and no systemd/sudoers/user-management actions. The wrapper post_install -> post_upgrade is standard and safe here.

@@ -0,0 +1,11 @@
+post_install() {
+  post_upgrade "$@"
+}
+
+post_upgrade() {
+  printf "\n"
+  printf "\e[1;33m==>\e[0m \e[1mNotice regarding hyprpm:\e[0m\n"
+  printf "    \e[1;36mhyprpm\e[0m has been split out of \e[1mhyprland-git\e[0m and moved into its own package.\n"
+  printf "    If you use Hyprland plugins, please install \e[1;32mhyprpm-git\e[0m separately:\n"
+  printf "\n"
+}
\ No newline at end of file