From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 27F9A58973 for ; Sat, 23 Jan 2016 16:58:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 833D5E0876; Sat, 23 Jan 2016 16:58:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A3B7E0876 for ; Sat, 23 Jan 2016 16:58:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 143C7340A3D for ; Sat, 23 Jan 2016 16:58:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A559A1021 for ; Sat, 23 Jan 2016 16:58:32 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1453568288.1ce3d8debeaa91def389121093ec978ae31c7ba8.mjo@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.7.ebuild X-VCS-Directories: dev-php/pecl-apcu/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1ce3d8debeaa91def389121093ec978ae31c7ba8 X-VCS-Branch: master Date: Sat, 23 Jan 2016 16:58:32 +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: b26a48f8-5db0-41cc-a12d-be22f812cfe6 X-Archives-Hash: 9037f8c6c0ec734527df26fe23d6ee8d commit: 1ce3d8debeaa91def389121093ec978ae31c7ba8 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Jan 23 16:57:27 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Jan 23 16:58:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce3d8de dev-php/pecl-apcu: remove old revision with incorrect DOCS. Gentoo-Bug: 512184 Package-Manager: portage-2.2.26 dev-php/pecl-apcu/pecl-apcu-4.0.7.ebuild | 63 -------------------------------- 1 file changed, 63 deletions(-) diff --git a/dev-php/pecl-apcu/pecl-apcu-4.0.7.ebuild b/dev-php/pecl-apcu/pecl-apcu-4.0.7.ebuild deleted file mode 100644 index 7a0d5e4..0000000 --- a/dev-php/pecl-apcu/pecl-apcu-4.0.7.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PHP_EXT_NAME="apcu" -PHP_EXT_PECL_PKG="APCu" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -DOCS="CHANGELOG INSTALL NOTICE TECHNOTES.txt TODO" - -USE_PHP="php5-6 php5-5 php5-4" - -S="${WORKDIR}/apcu-${PV}" -PHP_EXT_S="${WORKDIR}/apcu-${PV}" - -inherit php-ext-pecl-r2 confutils eutils - -S="${WORKDIR}/apcu-${PV}" - -KEYWORDS="amd64 x86" - -DESCRIPTION="Stripped down version of APC supporting only user cache" -LICENSE="PHP-3.01" -SLOT="0" -IUSE="+mmap" - -DEPEND="" -RDEPEND="${DEPEND}" - -LOCKS="pthreadmutex pthreadrw spinlock semaphore" - -LUSE="" -for l in ${LOCKS}; do - LUSE+="lock_${l} " -done - -IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}" - -REQUIRED_USE="^^ ( $LUSE )" - -src_configure() { - my_conf="--enable-apcu" - use mmap || my_conf+=" --disable-apcu-mmap" - - enable_extension_enable "apcu-rwlocks" "lock_pthreadrw" 0 - - php-ext-source-r2_src_configure -} - -src_install() { - php-ext-pecl-r2_src_install - - dodir "${PHP_EXT_SHARED_DIR}" - insinto "${PHP_EXT_SHARED_DIR}" - doins apc.php -} - -pkg_postinst() { - elog "The apc.php file shipped with this release of pecl-apcu was" - elog "installed into ${PHP_EXT_SHARED_DIR}/." -}