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 05BA81382C5 for ; Fri, 6 Apr 2018 17:32:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25278E081E; Fri, 6 Apr 2018 17:32:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 F1464E0835 for ; Fri, 6 Apr 2018 17:32:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 36B0B335C0A for ; Fri, 6 Apr 2018 17:32:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72EB8233 for ; Fri, 6 Apr 2018 17:31:59 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1523035890.ae67dc262a42bbbfe720eff3f552ed257530ed69.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-oauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-oauth/pecl-oauth-2.0.2-r1.ebuild dev-php/pecl-oauth/pecl-oauth-2.0.2-r2.ebuild X-VCS-Directories: dev-php/pecl-oauth/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: ae67dc262a42bbbfe720eff3f552ed257530ed69 X-VCS-Branch: master Date: Fri, 6 Apr 2018 17:31:59 +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-Archives-Salt: c24da3e6-20cc-4f45-8f13-b3ad2928f4cb X-Archives-Hash: 17d656ce3f89ec1b40d257555703af0a commit: ae67dc262a42bbbfe720eff3f552ed257530ed69 Author: Brian Evans gentoo org> AuthorDate: Fri Apr 6 17:31:30 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Apr 6 17:31:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae67dc26 dev-php/pecl-oauth: Revbump for 7.2 support Package-Manager: Portage-2.3.28, Repoman-2.3.9 ...cl-oauth-2.0.2-r1.ebuild => pecl-oauth-2.0.2-r2.ebuild} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-php/pecl-oauth/pecl-oauth-2.0.2-r1.ebuild b/dev-php/pecl-oauth/pecl-oauth-2.0.2-r2.ebuild similarity index 67% rename from dev-php/pecl-oauth/pecl-oauth-2.0.2-r1.ebuild rename to dev-php/pecl-oauth/pecl-oauth-2.0.2-r2.ebuild index 988ba351a82..987a87b85ee 100644 --- a/dev-php/pecl-oauth/pecl-oauth-2.0.2-r1.ebuild +++ b/dev-php/pecl-oauth/pecl-oauth-2.0.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -6,12 +6,12 @@ PHP_EXT_NAME="oauth" PHP_EXT_INI="yes" PHP_EXT_ZENDEXT="no" -USE_PHP="php5-6 php7-0 php7-1" +USE_PHP="php5-6 php7-0 php7-1 php7-2" inherit php-ext-pecl-r3 # Really only build for 7.0 -USE_PHP="php7-0 php7-1" +USE_PHP="php7-0 php7-1 php7-2" KEYWORDS="~amd64 ~x86" @@ -24,11 +24,13 @@ DEPEND="php_targets_php7-0? ( dev-lang/php:7.0[hash] dev-libs/libpcre:3= curl? ( net-misc/curl:0= ) ) php_targets_php7-1? ( dev-lang/php:7.1[hash] dev-libs/libpcre:3= curl? ( net-misc/curl:0= ) ) + php_targets_php7-2? ( dev-lang/php:7.2[hash] + dev-libs/libpcre:3= curl? ( net-misc/curl:0= ) ) " RDEPEND="${DEPEND} php_targets_php5-6? ( ${CATEGORY}/${PN}:0[php_targets_php5-6(-)?] )" src_prepare() { - if use php_targets_php7-0 || use php_targets_php7-1 ; then + if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2; then local PATCHES=( "${FILESDIR}/${PV}-compare_segfault.patch" ) php-ext-source-r3_src_prepare else @@ -37,7 +39,7 @@ src_prepare() { } src_configure() { - if use php_targets_php7-0 || use php_targets_php7-1 ; then + if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2; then local PHP_EXT_ECONF_ARGS=( --enable-oauth $(use_with curl) @@ -48,7 +50,7 @@ src_configure() { } src_install() { - if use php_targets_php7-0 || use php_targets_php7-1 ; then + if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2; then php-ext-pecl-r3_src_install fi }