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 7289F1382C5 for ; Fri, 6 Apr 2018 20:48:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B99D9E083E; Fri, 6 Apr 2018 20:48:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8D66CE083E for ; Fri, 6 Apr 2018 20:48:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8B194335C07 for ; Fri, 6 Apr 2018 20:48:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05E22278 for ; Fri, 6 Apr 2018 20:48:30 +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: <1523047695.6121cffabfd54dbcd2f1a9f481ee726f804d0338.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-eio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild X-VCS-Directories: dev-php/pecl-eio/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 6121cffabfd54dbcd2f1a9f481ee726f804d0338 X-VCS-Branch: master Date: Fri, 6 Apr 2018 20:48:30 +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: 1213dfcd-d0bd-4e52-bbe1-6d8c3afc3a22 X-Archives-Hash: 61f43b427f868ec2a19393fe7a03001a commit: 6121cffabfd54dbcd2f1a9f481ee726f804d0338 Author: Brian Evans gentoo org> AuthorDate: Fri Apr 6 19:42:28 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Apr 6 20:48:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6121cffa dev-php/pecl-eio: Revbump for php 7.2 Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild b/dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild new file mode 100644 index 00000000000..ed19c8deb05 --- /dev/null +++ b/dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PHP_EXT_NAME="eio" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS=( README.md ) + +USE_PHP="php5-6 php7-0 php7-1 php7-2" +inherit php-ext-pecl-r3 + +KEYWORDS="~amd64 ~x86" +LICENSE="PHP-3.01" + +DESCRIPTION="PHP wrapper for libeio library" +LICENSE="PHP-3" +SLOT="0" +IUSE="debug" + +src_configure() { + local PHP_EXT_ECONF_ARGS="--with-eio $(use_enable debug eio-debug)" + php-ext-source-r3_src_configure +}