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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03583138334 for ; Fri, 7 Jun 2019 14:14:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C100FE087D; Fri, 7 Jun 2019 14:14:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3DADE087D for ; Fri, 7 Jun 2019 14:14:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11516345910 for ; Fri, 7 Jun 2019 14:14:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CB8F61D for ; Fri, 7 Jun 2019 14:14:10 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1559916481.bad55f6b2493fa4e24f94c2a2329aa5c6c935618.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-raphf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild X-VCS-Directories: dev-php/pecl-raphf/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: bad55f6b2493fa4e24f94c2a2329aa5c6c935618 X-VCS-Branch: master Date: Fri, 7 Jun 2019 14:14:10 +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: 327e59f2-c5aa-4b9e-8312-4d936b1520a6 X-Archives-Hash: 6069e433017f282e0ea6838e070e0fe0 commit: bad55f6b2493fa4e24f94c2a2329aa5c6c935618 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Jun 7 13:07:46 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Jun 7 14:08:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad55f6b dev-php/pecl-raphf: add PHP 7.3 support Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Thomas Deutschmann gentoo.org> dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild b/dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild index 51817913cb6..f28c7a6bb55 100644 --- a/dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild +++ b/dev-php/pecl-raphf/pecl-raphf-2.0.0-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" PHP_EXT_NAME="raphf" PHP_EXT_INI="yes" @@ -9,12 +9,12 @@ PHP_EXT_ZENDEXT="no" PHP_EXT_ECONF_ARGS="" PHP_INI_NAME="30-${PHP_EXT_NAME}" -USE_PHP="php5-6 php7-0 php7-1 php7-2" +USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3" inherit php-ext-pecl-r3 # Only really build for 7.x -USE_PHP="php7-0 php7-1 php7-2" +USE_PHP="php7-1 php7-2 php7-3" KEYWORDS="~amd64 ~x86" @@ -26,7 +26,7 @@ IUSE="" RDEPEND="php_targets_php5-6? ( ${CATEGORY}/${PN}:0[php_targets_php5-6] )" src_prepare() { - if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2; then + if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3; then php-ext-source-r3_src_prepare else default_src_prepare @@ -34,7 +34,7 @@ src_prepare() { } src_install() { - if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2; then + if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3; then php-ext-pecl-r3_src_install fi }