From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1693801-garchives=archives.gentoo.org@lists.gentoo.org> 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 CEE461581FB for <garchives@archives.gentoo.org>; 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 56C26E08D0; Mon, 25 Nov 2024 00:03:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3A218E08D0 for <gentoo-commits@lists.gentoo.org>; Mon, 25 Nov 2024 00:03:00 +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 5D9C6343014 for <gentoo-commits@lists.gentoo.org>; Mon, 25 Nov 2024 00:02:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B9931F9A for <gentoo-commits@lists.gentoo.org>; Mon, 25 Nov 2024 00:02:56 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1732492926.02f3059f8b50e26695b94dab56ea162f63021fff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-yaz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-yaz/pecl-yaz-1.2.4-r1.ebuild X-VCS-Directories: dev-php/pecl-yaz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 02f3059f8b50e26695b94dab56ea162f63021fff X-VCS-Branch: master Date: Mon, 25 Nov 2024 00:02:56 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5db5f904-2e42-43ff-89a7-c544b9c24f39 X-Archives-Hash: a161d20c226605842aaf581910f84809 commit: 02f3059f8b50e26695b94dab56ea162f63021fff Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com> AuthorDate: Mon Nov 18 14:23:23 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Nov 25 00:02:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f3059f dev-php/pecl-yaz: add php 8.3 support Bug: https://bugs.gentoo.org/943650 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39361 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-php/pecl-yaz/pecl-yaz-1.2.4-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-php/pecl-yaz/pecl-yaz-1.2.4-r1.ebuild b/dev-php/pecl-yaz/pecl-yaz-1.2.4-r1.ebuild new file mode 100644 index 000000000000..e4d5f45b5344 --- /dev/null +++ b/dev-php/pecl-yaz/pecl-yaz-1.2.4-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PHP_EXT_NAME="yaz" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS=( README ) + +USE_PHP="php8-2 php8-3" + +inherit php-ext-pecl-r3 + +DESCRIPTION="This extension implements a Z39.50 client for PHP using the YAZ toolkit" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~s390 ~sparc ~x86" +RESTRICT="test" + +DEPEND=">=dev-libs/yaz-3.0.2:0=" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +# Needs network access to z3950.indexdata.com +PROPERTIES="test_network" + +PHP_EXT_ECONF_ARGS="--with-yaz=/usr"