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 BD1811384B4 for ; Mon, 7 Dec 2015 14:08:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B80221C025; Mon, 7 Dec 2015 14:08:18 +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 DE3CD21C025 for ; Mon, 7 Dec 2015 14:08:17 +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 797AA3409D7 for ; Mon, 7 Dec 2015 14:08:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9C1F9A1 for ; Mon, 7 Dec 2015 14:08:08 +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: <1449497254.27f68d74269798db11371fa643014c6b7f4740d2.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-memcached/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-memcached/pecl-memcached-2.2.0-r1.ebuild X-VCS-Directories: dev-php/pecl-memcached/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 27f68d74269798db11371fa643014c6b7f4740d2 X-VCS-Branch: master Date: Mon, 7 Dec 2015 14:08:08 +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: f1b27847-4b81-4d83-a629-f226c1200c34 X-Archives-Hash: 6d3832cccf4e1b293733f226643580e7 commit: 27f68d74269798db11371fa643014c6b7f4740d2 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Sep 26 19:53:11 2015 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Mon Dec 7 14:07:34 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f68d74 dev-php/pecl-memcached: revbump to fix incorrect DOCS. The main reason for a revision bump is to update the DOCS string (which pointed to a missing file). This is a prerequisite for fixing the buggy eclass that allows junk in DOCS. In the process, some other cleanup was done: * Change from EAPI=4 to EAPI=5. * Add ChangeLog and README.markdown as DOCS. * Reorder the USE_PHP flags. * Drop the base.eclass inherit (this was used to apply patches). * Drop the custom src_prepare (used to call base.eclass to apply patches). * Add an "any slot" dependency on dev-lang/php. * Shorten the description a little to fit in 80 chars. Package-Manager: portage-2.2.20.1 .../pecl-memcached/pecl-memcached-2.2.0-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-php/pecl-memcached/pecl-memcached-2.2.0-r1.ebuild b/dev-php/pecl-memcached/pecl-memcached-2.2.0-r1.ebuild new file mode 100644 index 0000000..cb650d7 --- /dev/null +++ b/dev-php/pecl-memcached/pecl-memcached-2.2.0-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PHP_EXT_NAME="memcached" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="ChangeLog README.markdown" + +USE_PHP="php5-4 php5-5 php5-6" + +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="Interface PHP with memcached via libmemcached library" +LICENSE="PHP-3" +SLOT="0" +IUSE="+session igbinary json sasl" + +DEPEND="|| ( >=dev-libs/libmemcached-1.0.14 >=dev-libs/libmemcached-1.0[sasl?] ) + sys-libs/zlib + dev-lang/php:*[session?,json?] + igbinary? ( dev-php/igbinary[php_targets_php5-4?,php_targets_php5-5?,php_targets_php5-6?] )" +RDEPEND="${DEPEND}" + +src_configure() { + my_conf="--enable-memcached + $(use_enable session memcached-session) + $(use_enable sasl memcached-sasl) + $(use_enable json memcached-json) + $(use_enable igbinary memcached-igbinary)" + + php-ext-source-r2_src_configure +}