git: 9f573393e075 - 2025Q1 - lang/php82: Update version 8.2.27=>8.2.28

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

URL: https://cgit.FreeBSD.org/ports/commit/?id=9f573393e07553a51352f5e8fe29fdb267618ffa

commit 9f573393e07553a51352f5e8fe29fdb267618ffa
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2025-03-14 07:52:02 +0000
Commit:     Torsten Zuehlsdorff <tz@FreeBSD.org>
CommitDate: 2025-03-22 08:57:28 +0000

    lang/php82: Update version 8.2.27=>8.2.28
    
    - Make rc script prefix safe for profiles [1]
    
    Changelog: https://www.php.net/ChangeLog-8.php#8.2.28
    
    PR:             284468 [1]
    Co-authored-by: Andrew Fyfe <andrew@neptune-one.net>
    (cherry picked from commit f875a9c4193848464baccd82c71ce75ac9d27330)
---
 lang/php82/Makefile         | 2 +-
 lang/php82/distinfo         | 6 +++---
 lang/php82/files/php_fpm.in | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lang/php82/Makefile b/lang/php82/Makefile
index 80ce5b9c19e1..f09eb476318b 100644
--- a/lang/php82/Makefile
+++ b/lang/php82/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	php82
-DISTVERSION=	8.2.27
+DISTVERSION=	8.2.28
 PORTREVISION?=	0
 CATEGORIES?=	lang devel www
 MASTER_SITES=	PHP/distributions
diff --git a/lang/php82/distinfo b/lang/php82/distinfo
index 88692c59d5c1..fc18d5152f06 100644
--- a/lang/php82/distinfo
+++ b/lang/php82/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1734729045
-SHA256 (php-8.2.27.tar.xz) = 3eec91294d8c09b3df80b39ec36d574ed9b05de4c8afcb25fa215d48f9ecbc6b
-SIZE (php-8.2.27.tar.xz) = 12150992
+TIMESTAMP = 1741934026
+SHA256 (php-8.2.28.tar.xz) = af8c9153153a7f489153b7a74f2f29a5ee36f5cb2c6c6929c98411a577e89c91
+SIZE (php-8.2.28.tar.xz) = 12147756
diff --git a/lang/php82/files/php_fpm.in b/lang/php82/files/php_fpm.in
index 12253b537b2e..72c26bc40f55 100644
--- a/lang/php82/files/php_fpm.in
+++ b/lang/php82/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:-}"