Gentoo Archives: gentoo-commits

From: "Ole Markus With (olemarkus)" <olemarkus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/pecl-memcache: pecl-memcache-3.0.7.ebuild ChangeLog
Date: Mon, 04 Mar 2013 09:22:26
Message-Id: 20130304092221.A4AB72171D@flycatcher.gentoo.org
1 olemarkus 13/03/04 09:22:21
2
3 Modified: ChangeLog
4 Added: pecl-memcache-3.0.7.ebuild
5 Log:
6 Version bump. Fixes bug 456800
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
9
10 Revision Changes Path
11 1.7 dev-php/pecl-memcache/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-memcache/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-memcache/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-memcache/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-memcache/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 27 Aug 2012 08:27:13 -0000 1.6
24 +++ ChangeLog 4 Mar 2013 09:22:21 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-php/pecl-memcache
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcache/ChangeLog,v 1.6 2012/08/27 08:27:13 olemarkus Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcache/ChangeLog,v 1.7 2013/03/04 09:22:21 olemarkus Exp $
31 +
32 +*pecl-memcache-3.0.7 (04 Mar 2013)
33 +
34 + 04 Mar 2013; Ole Markus With <olemarkus@g.o>
35 + +pecl-memcache-3.0.7.ebuild:
36 + Version bump. Fixes bug 456800
37
38 27 Aug 2012; Ole Markus With <olemarkus@g.o>
39 pecl-memcache-3.0.5-r1.ebuild:
40
41
42
43 1.1 dev-php/pecl-memcache/pecl-memcache-3.0.7.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-memcache/pecl-memcache-3.0.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-memcache/pecl-memcache-3.0.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pecl-memcache-3.0.7.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcache/pecl-memcache-3.0.7.ebuild,v 1.1 2013/03/04 09:22:21 olemarkus Exp $
53
54 EAPI="5"
55 PHP_EXT_NAME="memcache"
56 PHP_EXT_INI="yes"
57 PHP_EXT_ZENDEXT="no"
58 DOCS="README"
59
60 USE_PHP="php5-3 php5-4"
61
62 inherit php-ext-pecl-r2
63
64 KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
65
66 DESCRIPTION="PHP extension for using memcached."
67 LICENSE="PHP-3"
68 SLOT="0"
69 IUSE="+session"
70
71 DEPEND="sys-libs/zlib
72 dev-lang/php[session?]"
73 RDEPEND="${DEPEND}"
74
75 # upstream does not ship any testsuite, so the PHPize test-runner fails.
76 RESTRICT='test'
77
78 src_configure() {
79 my_conf="--enable-memcache --with-zlib-dir=/usr $(use_enable session memcache-session)"
80 php-ext-source-r2_src_configure
81 }
82
83 src_install() {
84 php-ext-pecl-r2_src_install
85
86 php-ext-source-r2_addtoinifiles "memcache.allow_failover" "true"
87 php-ext-source-r2_addtoinifiles "memcache.max_failover_attempts" "20"
88 php-ext-source-r2_addtoinifiles "memcache.chunk_size" "32768"
89 php-ext-source-r2_addtoinifiles "memcache.default_port" "11211"
90 php-ext-source-r2_addtoinifiles "memcache.hash_strategy" "consistent"
91 php-ext-source-r2_addtoinifiles "memcache.hash_function" "crc32"
92 php-ext-source-r2_addtoinifiles "memcache.redundancy" "1"
93 php-ext-source-r2_addtoinifiles "memcache.session_redundancy" "2"
94 php-ext-source-r2_addtoinifiles "memcache.protocol" "ascii"
95 }