Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-apcu/
Date: Thu, 15 Aug 2019 16:39:32
Message-Id: 1565885781.10a34379bcc3a5f05d20827747f79708b65ad94a.grknight@gentoo
1 commit: 10a34379bcc3a5f05d20827747f79708b65ad94a
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 15 16:16:21 2019 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 15 16:16:21 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a34379
7
8 dev-php/pecl-apcu: 4.0.x - Fix double EPREFIX, drop 7.0 reference
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
12
13 dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild b/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild
17 index 42b9c3615bf..f755261e918 100644
18 --- a/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild
19 +++ b/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild
20 @@ -8,7 +8,7 @@ PHP_EXT_INI="yes"
21 PHP_EXT_ZENDEXT="no"
22 DOCS=( NOTICE README.md TECHNOTES.txt TODO )
23
24 -USE_PHP="php5-6 php7-0 php7-1"
25 +USE_PHP="php5-6 php7-1 php7-2 php7-3"
26
27 inherit php-ext-pecl-r3
28
29 @@ -23,8 +23,9 @@ IUSE="+mmap"
30
31 DEPEND=""
32 PDEPEND="
33 -php_targets_php7-0? ( dev-php/pecl-apcu:7[php_targets_php7-0] )
34 php_targets_php7-1? ( dev-php/pecl-apcu:7[php_targets_php7-1] )
35 +php_targets_php7-2? ( dev-php/pecl-apcu:7[php_targets_php7-2] )
36 +php_targets_php7-3? ( dev-php/pecl-apcu:7[php_targets_php7-3] )
37 "
38
39 LOCKS="pthreadmutex pthreadrw spinlock semaphore"
40 @@ -63,7 +64,7 @@ src_install() {
41 if use php_targets_php5-6 ; then
42 php-ext-pecl-r3_src_install
43
44 - insinto "${PHP_EXT_SHARED_DIR}"
45 + insinto "${PHP_EXT_SHARED_DIR#$EPREFIX}"
46 doins apc.php
47 fi
48 }