From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 94D941581FB for ; Mon, 25 Nov 2024 00:03:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD914E08CA; Mon, 25 Nov 2024 00:02:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7B5AE08CA for ; Mon, 25 Nov 2024 00:02:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F4193343017 for ; Mon, 25 Nov 2024 00:02:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14C341F64 for ; Mon, 25 Nov 2024 00:02:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732492917.6d534e80896149a5f7b1c35f4fed2100ef202d1d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-radius/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-radius/pecl-radius-1.4.0_beta1-r4.ebuild X-VCS-Directories: dev-php/pecl-radius/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6d534e80896149a5f7b1c35f4fed2100ef202d1d X-VCS-Branch: master Date: Mon, 25 Nov 2024 00:02:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b3607f49-23b1-410a-a403-df6184738726 X-Archives-Hash: 11e77273360cb3436fd8882dbfbe0731 commit: 6d534e80896149a5f7b1c35f4fed2100ef202d1d Author: Tomáš Mózes gmail com> AuthorDate: Mon Nov 18 14:03:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 25 00:01:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d534e80 dev-php/pecl-radius: add php 8.3 support Bug: https://bugs.gentoo.org/943650 Signed-off-by: Tomáš Mózes gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39358 Signed-off-by: Sam James gentoo.org> .../pecl-radius/pecl-radius-1.4.0_beta1-r4.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-php/pecl-radius/pecl-radius-1.4.0_beta1-r4.ebuild b/dev-php/pecl-radius/pecl-radius-1.4.0_beta1-r4.ebuild new file mode 100644 index 000000000000..187662b880a8 --- /dev/null +++ b/dev-php/pecl-radius/pecl-radius-1.4.0_beta1-r4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +PHP_EXT_NAME="radius" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" + +USE_PHP="php8-2 php8-3" +PHP_EXT_PECL_FILENAME="${PN/pecl-/}-${PV/_beta/b}.tgz" +PHP_EXT_S="${WORKDIR}/${PHP_EXT_PECL_FILENAME%.tgz}" +PHP_EXT_NEEDED_USE="pcntl(-),sockets(-)" + +inherit php-ext-pecl-r3 + +DESCRIPTION="Provides support for RADIUS authentication (RFC 2865) and accounting (RFC 2866)" +HOMEPAGE="https://pecl.php.net/package/radius" +S="${PHP_EXT_S}" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +PATCHES=( "${FILESDIR}/1.4.0-php8.patch" ) + +src_unpack() { + default + # Non-portable test + rm "${S}/tests/radius_close.phpt" || die +}