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 5DD151388C1 for ; Fri, 1 Jan 2016 03:55:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B265E089F; Fri, 1 Jan 2016 03:55:54 +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 D10D9E089F for ; Fri, 1 Jan 2016 03:55:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D92F3408EA for ; Fri, 1 Jan 2016 03:55:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65AA8CE8 for ; Fri, 1 Jan 2016 03:55:50 +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: <1451620537.7944bffd21f5a174e9a33ad7588a53251951a659.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-apcu_bc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-apcu_bc/Manifest dev-php/pecl-apcu_bc/metadata.xml dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.0.ebuild X-VCS-Directories: dev-php/pecl-apcu_bc/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 7944bffd21f5a174e9a33ad7588a53251951a659 X-VCS-Branch: master Date: Fri, 1 Jan 2016 03:55:50 +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: 656cc672-3def-4ed6-bbeb-72deb0ca91a4 X-Archives-Hash: 80bb95bbcb7015b10b1a0c1ae0ad8ba3 commit: 7944bffd21f5a174e9a33ad7588a53251951a659 Author: Brian Evans gentoo org> AuthorDate: Fri Jan 1 03:55:37 2016 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Jan 1 03:55:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7944bffd dev-php/pecl-apcu_bc: Initial commit This package was split off from dev-php/pecl-apcu upstream It provides all of the backwards compatible functions that the old APC object storage (apc_*) once provided Package-Manager: portage-2.2.26 dev-php/pecl-apcu_bc/Manifest | 1 + dev-php/pecl-apcu_bc/metadata.xml | 5 +++++ dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/dev-php/pecl-apcu_bc/Manifest b/dev-php/pecl-apcu_bc/Manifest new file mode 100644 index 0000000..a8f7905 --- /dev/null +++ b/dev-php/pecl-apcu_bc/Manifest @@ -0,0 +1 @@ +DIST apcu_bc-1.0.0.tgz 5893 SHA256 3e683aa5c284075e16bc2603849c11e8ed51d2c1da213b877f429b44af91500c SHA512 eb7946692a1f3aa11a23031226e0d99bc68eee92972a359ce27714ea35fcb2a225c8da09b860b891b7c291d57cbf1b858a05adfdb99731307b484b0096014e5c WHIRLPOOL 3cf77319f3086892836592d9c2e1fe5ae5dca7b95462ef2d60e4cb055872f3a30212e751f363901f0e1781c89c0ca222d9879970e787a06bb8c7bbc2b818c65b diff --git a/dev-php/pecl-apcu_bc/metadata.xml b/dev-php/pecl-apcu_bc/metadata.xml new file mode 100644 index 0000000..fd3dbe3 --- /dev/null +++ b/dev-php/pecl-apcu_bc/metadata.xml @@ -0,0 +1,5 @@ + + + + php + diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.0.ebuild b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.0.ebuild new file mode 100644 index 0000000..5c135d0 --- /dev/null +++ b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PHP_EXT_NAME="apc" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="README.md" + +USE_PHP="php7-0" + +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="Provides APC backwards compatibility functions via APCu" +LICENSE="PHP-3.01" +SLOT="0" +IUSE="" + +DEPEND="dev-php/pecl-apcu[php_targets_php7-0]" +RDEPEND="${DEPEND}"