Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-redis/
Date: Tue, 08 Dec 2015 21:45:26
Message-Id: 1449610677.e286291b9c1c4285f34634273d35ff381e09a1ed.mjo@gentoo
1 commit: e286291b9c1c4285f34634273d35ff381e09a1ed
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 01:50:17 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 8 21:37:57 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e286291b
7
8 dev-php/pecl-redis: revision bump to fix incorrect DOCS.
9
10 Update the DOCS array to contain accurate filenames. Due to a bug in
11 php-ext-source-r2.eclass, it currently is not an error when DOCS
12 contains bad values. Before that can change, we need to fix the
13 existing ebuilds.
14
15 As part of the revbump, a few other cosmetic issues were fixed.
16
17 Package-Manager: portage-2.2.20.1
18
19 dev-php/pecl-redis/pecl-redis-2.2.7-r1.ebuild | 35 +++++++++++++++++++++++++++
20 1 file changed, 35 insertions(+)
21
22 diff --git a/dev-php/pecl-redis/pecl-redis-2.2.7-r1.ebuild b/dev-php/pecl-redis/pecl-redis-2.2.7-r1.ebuild
23 new file mode 100644
24 index 0000000..276b547
25 --- /dev/null
26 +++ b/dev-php/pecl-redis/pecl-redis-2.2.7-r1.ebuild
27 @@ -0,0 +1,35 @@
28 +# Copyright 1999-2015 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +
34 +PHP_EXT_NAME="redis"
35 +PHP_EXT_INI="yes"
36 +PHP_EXT_ZENDEXT="no"
37 +
38 +USE_PHP="php5-4 php5-5 php5-6"
39 +
40 +DOCS="arrays.markdown README.markdown"
41 +
42 +inherit php-ext-pecl-r2
43 +
44 +KEYWORDS="~amd64"
45 +
46 +DESCRIPTION="PHP extension for interfacing with Redis"
47 +LICENSE="PHP-3.01"
48 +SLOT="0"
49 +IUSE="igbinary"
50 +
51 +DEPEND="igbinary? (
52 + php_targets_php5-4? ( dev-php/igbinary[php_targets_php5-4] )
53 + php_targets_php5-5? ( dev-php/igbinary[php_targets_php5-5] )
54 + php_targets_php5-6? ( dev-php/igbinary[php_targets_php5-6] ) )"
55 +RDEPEND="${DEPEND}"
56 +
57 +src_configure() {
58 + my_conf="--enable-redis
59 + $(use_enable igbinary redis-igbinary)"
60 +
61 + php-ext-source-r2_src_configure
62 +}