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 0983B138335 for ; Tue, 1 Oct 2019 19:05:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EB4BE094F; Tue, 1 Oct 2019 19:05:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 16F77E094F for ; Tue, 1 Oct 2019 19:05:20 +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 906FC34B75B for ; Tue, 1 Oct 2019 19:05:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6A5F802 for ; Tue, 1 Oct 2019 19:05:16 +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: <1569956707.5d54c1127dca5e68dbf71d512217e3b66825ae62.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/metadata.xml dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild X-VCS-Directories: dev-php/pecl-apcu/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 5d54c1127dca5e68dbf71d512217e3b66825ae62 X-VCS-Branch: master Date: Tue, 1 Oct 2019 19:05:16 +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: 54ac804c-c3ca-473f-b244-6fff14c427ca X-Archives-Hash: 02c16bfc910b325d868d65aa05df11b8 commit: 5d54c1127dca5e68dbf71d512217e3b66825ae62 Author: Brian Evans gentoo org> AuthorDate: Tue Oct 1 18:15:05 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Oct 1 19:05:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d54c112 dev-php/pecl-apcu: Fix USE naming to not include an underscore Closes: https://bugs.gentoo.org/695080 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Brian Evans gentoo.org> dev-php/pecl-apcu/metadata.xml | 8 ++++---- dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild | 8 ++++---- dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild | 10 +++++----- dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild | 8 ++++---- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/dev-php/pecl-apcu/metadata.xml b/dev-php/pecl-apcu/metadata.xml index 4d7374447c6..6344b62d774 100644 --- a/dev-php/pecl-apcu/metadata.xml +++ b/dev-php/pecl-apcu/metadata.xml @@ -6,9 +6,9 @@ PHP - Enable semaphore locks instead of fcntl - Enable pthread mutex locking - Enable pthread read/write locking - Enable spin locks (EXPERIMENTAL) + Enable semaphore locks instead of fcntl + Enable pthread mutex locking + Enable pthread read/write locking + Enable spin locks (EXPERIMENTAL) 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 f755261e918..c808e24e787 100644 --- a/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-4.0.11.ebuild @@ -32,10 +32,10 @@ LOCKS="pthreadmutex pthreadrw spinlock semaphore" LUSE="" for l in ${LOCKS}; do - LUSE+="lock_${l} " + LUSE+="lock-${l} " done -IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}" +IUSE+=" ${LUSE/lock-pthreadrw/+lock-pthreadrw}" REQUIRED_USE="^^ ( $LUSE )" @@ -52,8 +52,8 @@ src_configure() { local PHP_EXT_ECONF_ARGS=( --enable-apcu $(use_enable mmap apcu-mmap) - $(use_enable lock_pthreadrw apcu-rwlocks) - $(use_enable lock_spinlock apcu-spinlocks) + $(use_enable lock-pthreadrw apcu-rwlocks) + $(use_enable lock-spinlock apcu-spinlocks) ) php-ext-source-r3_src_configure diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild b/dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild index 675490a1e85..da6a7f85c52 100644 --- a/dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-5.1.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -31,10 +31,10 @@ LOCKS="pthreadmutex pthreadrw spinlock semaphore" LUSE="" for l in ${LOCKS}; do - LUSE+="lock_${l} " + LUSE+="lock-${l} " done -IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}" +IUSE+=" ${LUSE/lock-pthreadrw/+lock-pthreadrw}" REQUIRED_USE="^^ ( $LUSE )" @@ -51,8 +51,8 @@ src_configure() { local PHP_EXT_ECONF_ARGS=( --enable-apcu $(use_enable mmap apcu-mmap) - $(use_enable lock_pthreadrw apcu-rwlocks) - $(use_enable lock_spinlock apcu-spinlocks) + $(use_enable lock-pthreadrw apcu-rwlocks) + $(use_enable lock-spinlock apcu-spinlocks) ) php-ext-source-r3_src_configure diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild b/dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild index 39a64219bf7..f204ffcad33 100644 --- a/dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-5.1.17.ebuild @@ -31,10 +31,10 @@ LOCKS="pthreadmutex pthreadrw spinlock semaphore" LUSE="" for l in ${LOCKS}; do - LUSE+="lock_${l} " + LUSE+="lock-${l} " done -IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}" +IUSE+=" ${LUSE/lock-pthreadrw/+lock-pthreadrw}" REQUIRED_USE="^^ ( $LUSE )" @@ -51,8 +51,8 @@ src_configure() { local PHP_EXT_ECONF_ARGS=( --enable-apcu $(use_enable mmap apcu-mmap) - $(use_enable lock_pthreadrw apcu-rwlocks) - $(use_enable lock_spinlock apcu-spinlocks) + $(use_enable lock-pthreadrw apcu-rwlocks) + $(use_enable lock-spinlock apcu-spinlocks) ) php-ext-source-r3_src_configure