git: 487ee7109c5c - main - lang/php81: Update version 8.1.31=>8.1.32

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Fri, 14 Mar 2025 07:56:00 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=487ee7109c5cdb52157e076adb45acb76462db98

commit 487ee7109c5cdb52157e076adb45acb76462db98
Author:     Christos Chatzaras <chris@cretaforce.gr>
AuthorDate: 2025-03-14 07:47:00 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2025-03-14 07:55:45 +0000

    lang/php81: Update version 8.1.31=>8.1.32
    
    - Make rc script prefix safe for profiles [1]
    
    Changelog: https://www.php.net/ChangeLog-8.php#8.1.32
    
    PR:             285379, 284468 [1]
    Reported by:    andrew@neptune-one.net [1]
    Co-authored-by: Andrew Fyfe <andrew@neptune-one.net>
---
 lang/php81/Makefile         | 4 ++--
 lang/php81/distinfo         | 6 +++---
 lang/php81/files/php_fpm.in | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lang/php81/Makefile b/lang/php81/Makefile
index e98968b4b910..12c5e7c03456 100644
--- a/lang/php81/Makefile
+++ b/lang/php81/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	php81
-DISTVERSION=	8.1.31
-PORTREVISION?=	1
+DISTVERSION=	8.1.32
+PORTREVISION?=	0
 CATEGORIES?=	lang devel www
 MASTER_SITES=	PHP/distributions
 DISTNAME=	php-${DISTVERSION}
diff --git a/lang/php81/distinfo b/lang/php81/distinfo
index 14c1fe4e3a88..0cf4c6ddb11b 100644
--- a/lang/php81/distinfo
+++ b/lang/php81/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1732354131
-SHA256 (php-8.1.31.tar.xz) = c4f244d46ba51c72f7d13d4f66ce6a9e9a8d6b669c51be35e01765ba58e7afca
-SIZE (php-8.1.31.tar.xz) = 11916684
+TIMESTAMP = 1741933806
+SHA256 (php-8.1.32.tar.xz) = c582ac682a280bbc69bc2186c21eb7e3313cc73099be61a6bc1d2cd337cbf383
+SIZE (php-8.1.32.tar.xz) = 11893516
diff --git a/lang/php81/files/php_fpm.in b/lang/php81/files/php_fpm.in
index 12253b537b2e..72c26bc40f55 100644
--- a/lang/php81/files/php_fpm.in
+++ b/lang/php81/files/php_fpm.in
@@ -53,7 +53,7 @@ else
         if [ "x${php_fpm_profiles}" != "x" -a "x$1" != "x" ]; then
                 for profile in ${php_fpm_profiles}; do
                         echo "===> php_fpm profile: ${profile}"
-                        /usr/local/etc/rc.d/php-fpm $1 ${profile}
+                        %%PREFIX%%/etc/rc.d/php_fpm $1 ${profile}
                         retcode="$?"
                         if [ "0${retcode}" -ne 0 ]; then
                                 failed="${profile} (${retcode}) ${failed:-}"