Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-eio/
Date: Fri, 06 Apr 2018 20:48:33
Message-Id: 1523047695.6121cffabfd54dbcd2f1a9f481ee726f804d0338.grknight@gentoo
1 commit: 6121cffabfd54dbcd2f1a9f481ee726f804d0338
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 6 19:42:28 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 6 20:48:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6121cffa
7
8 dev-php/pecl-eio: Revbump for php 7.2
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild | 24 ++++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 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
16 new file mode 100644
17 index 00000000000..ed19c8deb05
18 --- /dev/null
19 +++ b/dev-php/pecl-eio/pecl-eio-2.0.2-r1.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +PHP_EXT_NAME="eio"
26 +PHP_EXT_INI="yes"
27 +PHP_EXT_ZENDEXT="no"
28 +DOCS=( README.md )
29 +
30 +USE_PHP="php5-6 php7-0 php7-1 php7-2"
31 +inherit php-ext-pecl-r3
32 +
33 +KEYWORDS="~amd64 ~x86"
34 +LICENSE="PHP-3.01"
35 +
36 +DESCRIPTION="PHP wrapper for libeio library"
37 +LICENSE="PHP-3"
38 +SLOT="0"
39 +IUSE="debug"
40 +
41 +src_configure() {
42 + local PHP_EXT_ECONF_ARGS="--with-eio $(use_enable debug eio-debug)"
43 + php-ext-source-r3_src_configure
44 +}