git: 0b42dd240a0b - 2025Q1 - lang/php81: Update version 8.1.31=>8.1.32

From: Torsten Zuehlsdorff <tz_at_FreeBSD.org>
Date: Sat, 22 Mar 2025 09:06:49 UTC
The branch 2025Q1 has been updated by tz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0b42dd240a0b0b6934a06ec920d711e9dbac0a5a

commit 0b42dd240a0b0b6934a06ec920d711e9dbac0a5a
Author:     Christos Chatzaras <chris@cretaforce.gr>
AuthorDate: 2025-03-14 07:47:00 +0000
Commit:     Torsten Zuehlsdorff <tz@FreeBSD.org>
CommitDate: 2025-03-22 09:00:19 +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>
    
    (cherry picked from commit 487ee7109c5cdb52157e076adb45acb76462db98)
---
 lang/php81/Makefile         | 2 +-
 lang/php81/distinfo         | 6 +++---
 lang/php81/files/php_fpm.in | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lang/php81/Makefile b/lang/php81/Makefile
index 86f730d539a2..12c5e7c03456 100644
--- a/lang/php81/Makefile
+++ b/lang/php81/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	php81
-DISTVERSION=	8.1.31
+DISTVERSION=	8.1.32
 PORTREVISION?=	0
 CATEGORIES?=	lang devel www
 MASTER_SITES=	PHP/distributions
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:-}"