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-memcache/
Date: Thu, 14 Jul 2016 21:03:56
Message-Id: 1468530192.059e60d5ee433b24db0d2020bad7cce7a72789f2.grknight@gentoo
1 commit: 059e60d5ee433b24db0d2020bad7cce7a72789f2
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 14 20:48:12 2016 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 14 21:03:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=059e60d5
7
8 dev-php/pecl-memcache: Drop old
9
10 Package-Manager: portage-2.3.0
11
12 dev-php/pecl-memcache/pecl-memcache-3.0.8.ebuild | 46 ------------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/dev-php/pecl-memcache/pecl-memcache-3.0.8.ebuild b/dev-php/pecl-memcache/pecl-memcache-3.0.8.ebuild
16 deleted file mode 100644
17 index ef3b70e..0000000
18 --- a/dev-php/pecl-memcache/pecl-memcache-3.0.8.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="5"
26 -PHP_EXT_NAME="memcache"
27 -PHP_EXT_INI="yes"
28 -PHP_EXT_ZENDEXT="no"
29 -DOCS="README"
30 -
31 -USE_PHP="php5-5 php5-4"
32 -
33 -inherit php-ext-pecl-r2
34 -
35 -KEYWORDS="amd64 hppa ppc64 x86"
36 -
37 -DESCRIPTION="PHP extension for using memcached"
38 -LICENSE="PHP-3"
39 -SLOT="0"
40 -IUSE="+session"
41 -
42 -DEPEND="sys-libs/zlib
43 - dev-lang/php:*[session?]"
44 -RDEPEND="${DEPEND}"
45 -
46 -# upstream does not ship any testsuite, so the PHPize test-runner fails.
47 -RESTRICT='test'
48 -
49 -src_configure() {
50 - my_conf="--enable-memcache --with-zlib-dir=/usr $(use_enable session memcache-session)"
51 - php-ext-source-r2_src_configure
52 -}
53 -
54 -src_install() {
55 - php-ext-pecl-r2_src_install
56 -
57 - php-ext-source-r2_addtoinifiles "memcache.allow_failover" "true"
58 - php-ext-source-r2_addtoinifiles "memcache.max_failover_attempts" "20"
59 - php-ext-source-r2_addtoinifiles "memcache.chunk_size" "32768"
60 - php-ext-source-r2_addtoinifiles "memcache.default_port" "11211"
61 - php-ext-source-r2_addtoinifiles "memcache.hash_strategy" "consistent"
62 - php-ext-source-r2_addtoinifiles "memcache.hash_function" "crc32"
63 - php-ext-source-r2_addtoinifiles "memcache.redundancy" "1"
64 - php-ext-source-r2_addtoinifiles "memcache.session_redundancy" "2"
65 - php-ext-source-r2_addtoinifiles "memcache.protocol" "ascii"
66 -}