Date: Mon, 12 Jan 2026 13:49:18 +0000 From: Michael Gmelin <grembo@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: c24dd07e384d - main - devel/arcanist-lib: Update to 20230530 Message-ID: <6964fbde.b5db.4674a097@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by grembo: URL: https://cgit.FreeBSD.org/ports/commit/?id=c24dd07e384d79af3f0424fb7ad007b518b13499 commit c24dd07e384d79af3f0424fb7ad007b518b13499 Author: Michael Gmelin <grembo@FreeBSD.org> AuthorDate: 2026-01-12 09:28:54 +0000 Commit: Michael Gmelin <grembo@FreeBSD.org> CommitDate: 2026-01-12 13:43:40 +0000 devel/arcanist-lib: Update to 20230530 --- devel/arcanist-lib/Makefile | 5 ++--- devel/arcanist-lib/distinfo | 6 +++--- devel/arcanist-lib/files/patch-src_utils_utf8.php | 17 ----------------- 3 files changed, 5 insertions(+), 23 deletions(-) diff --git a/devel/arcanist-lib/Makefile b/devel/arcanist-lib/Makefile index d9f729e30fc4..c9060a121758 100644 --- a/devel/arcanist-lib/Makefile +++ b/devel/arcanist-lib/Makefile @@ -1,6 +1,5 @@ PORTNAME?= arcanist -PORTVERSION?= 20220518 -PORTREVISION?= 11 +PORTVERSION?= 20230530 CATEGORIES?= devel PKGNAMESUFFIX= ${SLAVE_PKGNAMESUFFIX}${PHP_PKGNAMESUFFIX} @@ -15,7 +14,7 @@ USES= php:cli,flavors python:env shebangfix IGNORE_WITH_PHP= 85 USE_GITHUB= yes GH_ACCOUNT= phacility -GH_TAGNAME= 85c953e +GH_TAGNAME= e50d1bc USE_PHP= curl dom simplexml zlib SHEBANG_FILES= bin/arc bin/phage scripts/*.php scripts/hgdaemon/*.php \ diff --git a/devel/arcanist-lib/distinfo b/devel/arcanist-lib/distinfo index 32a852b67821..ff94ca5601b0 100644 --- a/devel/arcanist-lib/distinfo +++ b/devel/arcanist-lib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1656002343 -SHA256 (phacility-arcanist-20220518-85c953e_GH0.tar.gz) = a9bfc625e480ab02f8ad01f07b0e8741fb3e0db01e26c9295c1725dd799e6cb2 -SIZE (phacility-arcanist-20220518-85c953e_GH0.tar.gz) = 2273237 +TIMESTAMP = 1766842580 +SHA256 (phacility-arcanist-20230530-e50d1bc_GH0.tar.gz) = 27b7b16b19d296ed8b25d5c1ac403b1a10a2f162cac5e4d0827746180edf06a3 +SIZE (phacility-arcanist-20230530-e50d1bc_GH0.tar.gz) = 2273735 diff --git a/devel/arcanist-lib/files/patch-src_utils_utf8.php b/devel/arcanist-lib/files/patch-src_utils_utf8.php deleted file mode 100644 index c08303b6b5f0..000000000000 --- a/devel/arcanist-lib/files/patch-src_utils_utf8.php +++ /dev/null @@ -1,17 +0,0 @@ ---- src/utils/utf8.php.orig 2022-05-17 23:20:14 UTC -+++ src/utils/utf8.php -@@ -288,8 +288,12 @@ function phutil_utf8_strlen($string) { - * @return int The character length of the string. - */ - function phutil_utf8_strlen($string) { -- if (function_exists('utf8_decode')) { -- return strlen(utf8_decode($string)); -+ if (function_exists('mb_strlen')) { -+ // Historically, this was just a call to strlen(utf8_decode( -+ // but, since PHP 8.2, that function is deprecated, so this is -+ // the current equivalent. -+ // https://we.phorge.it/T15188 -+ return mb_strlen($string, 'UTF-8'); - } - return count(phutil_utf8v($string)); - }home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6964fbde.b5db.4674a097>
