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 98B1D138334 for ; Thu, 15 Aug 2019 16:39:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A747CE0C22; Thu, 15 Aug 2019 16:16:32 +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 8C40BE0C22 for ; Thu, 15 Aug 2019 16:16:32 +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 B3D71349BE8 for ; Thu, 15 Aug 2019 16:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CEC82A5 for ; Thu, 15 Aug 2019 16:16:30 +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: <1565885781.10a34379bcc3a5f05d20827747f79708b65ad94a.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-apcu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild X-VCS-Directories: dev-php/pecl-apcu/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 10a34379bcc3a5f05d20827747f79708b65ad94a X-VCS-Branch: master Date: Thu, 15 Aug 2019 16:16:30 +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: 34623c8a-715d-4788-ab15-326ba7c03af5 X-Archives-Hash: cb5b9b86ea8d571fd4d02ef8ace06751 commit: 10a34379bcc3a5f05d20827747f79708b65ad94a Author: Brian Evans gentoo org> AuthorDate: Thu Aug 15 16:16:21 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Aug 15 16:16:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a34379 dev-php/pecl-apcu: 4.0.x - Fix double EPREFIX, drop 7.0 reference Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Brian Evans gentoo.org> dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild b/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild index 42b9c3615bf..f755261e918 100644 --- a/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild @@ -8,7 +8,7 @@ PHP_EXT_INI="yes" PHP_EXT_ZENDEXT="no" DOCS=( NOTICE README.md TECHNOTES.txt TODO ) -USE_PHP="php5-6 php7-0 php7-1" +USE_PHP="php5-6 php7-1 php7-2 php7-3" inherit php-ext-pecl-r3 @@ -23,8 +23,9 @@ IUSE="+mmap" DEPEND="" PDEPEND=" -php_targets_php7-0? ( dev-php/pecl-apcu:7[php_targets_php7-0] ) php_targets_php7-1? ( dev-php/pecl-apcu:7[php_targets_php7-1] ) +php_targets_php7-2? ( dev-php/pecl-apcu:7[php_targets_php7-2] ) +php_targets_php7-3? ( dev-php/pecl-apcu:7[php_targets_php7-3] ) " LOCKS="pthreadmutex pthreadrw spinlock semaphore" @@ -63,7 +64,7 @@ src_install() { if use php_targets_php5-6 ; then php-ext-pecl-r3_src_install - insinto "${PHP_EXT_SHARED_DIR}" + insinto "${PHP_EXT_SHARED_DIR#$EPREFIX}" doins apc.php fi }