git: bcd490923e01 - main - lang/php84: Update version 8.4.3=>8.4.4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 14 Feb 2025 14:14:42 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=bcd490923e01256b14c1f1f2a7bf627ba722951f
commit bcd490923e01256b14c1f1f2a7bf627ba722951f
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2025-02-14 14:13:47 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2025-02-14 14:14:25 +0000
lang/php84: Update version 8.4.3=>8.4.4
- Make rc script prefix safe for profiles [1]
Changelog: https://www.php.net/ChangeLog-8.php#8.4.4
PR: 284468 [1]
Reported by: andrew@neptune-one.net [1]
---
lang/php84/Makefile | 2 +-
lang/php84/distinfo | 6 +++---
lang/php84/files/php_fpm.in | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/lang/php84/Makefile b/lang/php84/Makefile
index 667ff476a74c..f87b538be573 100644
--- a/lang/php84/Makefile
+++ b/lang/php84/Makefile
@@ -1,5 +1,5 @@
PORTNAME= php84
-DISTVERSION= 8.4.3
+DISTVERSION= 8.4.4
PORTREVISION?= 0
CATEGORIES?= lang devel www
MASTER_SITES= PHP/distributions
diff --git a/lang/php84/distinfo b/lang/php84/distinfo
index 493c8fc91bfe..3b362c36b7eb 100644
--- a/lang/php84/distinfo
+++ b/lang/php84/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1737402586
-SHA256 (php-8.4.3.tar.xz) = 5c42173cbde7d0add8249c2e8a0c19ae271f41d8c47d67d72bdf91a88dcc7e4b
-SIZE (php-8.4.3.tar.xz) = 13569728
+TIMESTAMP = 1739516564
+SHA256 (php-8.4.4.tar.xz) = 05a6c9a2cc894dd8be719ecab221b311886d5e0c02cb6fac648dd9b3459681ac
+SIZE (php-8.4.4.tar.xz) = 13588560
diff --git a/lang/php84/files/php_fpm.in b/lang/php84/files/php_fpm.in
index 12253b537b2e..104dcf10261a 100644
--- a/lang/php84/files/php_fpm.in
+++ b/lang/php84/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:-}"