From: "Ole Markus With (olemarkus)" <olemarkus@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/pecl-memcache: ChangeLog pecl-memcache-3.0.5.ebuild pecl-memcache-2.2.6.ebuild
Date: Mon, 4 Oct 2010 04:59:28 +0000 (UTC) [thread overview]
Message-ID: <20101004045928.85E0D2004C@flycatcher.gentoo.org> (raw)
olemarkus 10/10/04 04:59:28
Modified: ChangeLog
Added: pecl-memcache-3.0.5.ebuild
pecl-memcache-2.2.6.ebuild
Log:
Version bump of both stable 2.2 branch and unstable 3.0 branch
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.34 dev-php5/pecl-memcache/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 7 Feb 2010 15:57:39 -0000 1.33
+++ ChangeLog 4 Oct 2010 04:59:28 -0000 1.34
@@ -1,6 +1,13 @@
# ChangeLog for dev-php5/pecl-memcache
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/ChangeLog,v 1.33 2010/02/07 15:57:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/ChangeLog,v 1.34 2010/10/04 04:59:28 olemarkus Exp $
+
+*pecl-memcache-3.0.5 (04 Oct 2010)
+*pecl-memcache-2.2.6 (04 Oct 2010)
+
+ 04 Oct 2010; <olemarkus@gentoo.org> +pecl-memcache-2.2.6.ebuild,
+ +pecl-memcache-3.0.5.ebuild:
+ Version bump of both stable 2.2 branch and unstable 3.0 branch
07 Feb 2010; Raúl Porcel <armin76@gentoo.org> pecl-memcache-2.2.5.ebuild:
sparc stable wrt #299655
1.1 dev-php5/pecl-memcache/pecl-memcache-3.0.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-3.0.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-3.0.5.ebuild?rev=1.1&content-type=text/plain
Index: pecl-memcache-3.0.5.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-3.0.5.ebuild,v 1.1 2010/10/04 04:59:28 olemarkus Exp $
EAPI="1"
PHP_EXT_NAME="memcache"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="README"
inherit php-ext-pecl-r1 php-ext-base-r1
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="PHP extension for using memcached."
LICENSE="PHP-3"
SLOT="0"
IUSE="+session"
DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"
# upstream does not ship any testsuite, so the PHPize test-runner fails.
RESTRICT='test'
need_php_by_category
pkg_setup() {
use session && require_php_with_use session
}
src_compile() {
my_conf="--enable-memcache --with-zlib-dir=/usr $(use_enable session memcache-session)"
php-ext-pecl-r1_src_compile
}
src_install() {
php-ext-pecl-r1_src_install
php-ext-base-r1_addtoinifiles "memcache.allow_failover" "true"
php-ext-base-r1_addtoinifiles "memcache.max_failover_attempts" "20"
php-ext-base-r1_addtoinifiles "memcache.chunk_size" "32768"
php-ext-base-r1_addtoinifiles "memcache.default_port" "11211"
php-ext-base-r1_addtoinifiles "memcache.hash_strategy" "consistent"
php-ext-base-r1_addtoinifiles "memcache.hash_function" "crc32"
php-ext-base-r1_addtoinifiles "memcache.redundancy" "1"
php-ext-base-r1_addtoinifiles "memcache.session_redundancy" "2"
php-ext-base-r1_addtoinifiles "memcache.protocol" "ascii"
}
1.1 dev-php5/pecl-memcache/pecl-memcache-2.2.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-2.2.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-2.2.6.ebuild?rev=1.1&content-type=text/plain
Index: pecl-memcache-2.2.6.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-memcache/pecl-memcache-2.2.6.ebuild,v 1.1 2010/10/04 04:59:28 olemarkus Exp $
EAPI="1"
PHP_EXT_NAME="memcache"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="README"
inherit php-ext-pecl-r1 php-ext-base-r1 depend.php
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="PHP extension for using memcached."
LICENSE="PHP-3"
SLOT="0"
IUSE="+session"
DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"
# upstream does not ship any testsuite, so the PHPize test-runner fails.
RESTRICT='test'
need_php_by_category
pkg_setup() {
use session && require_php_with_use session
}
src_compile() {
my_conf="--enable-memcache --with-zlib-dir=/usr $(use_enable session memcache-session)"
php-ext-pecl-r1_src_compile
}
src_install() {
php-ext-pecl-r1_src_install
php-ext-base-r1_addtoinifiles "memcache.allow_failover" "true"
php-ext-base-r1_addtoinifiles "memcache.max_failover_attempts" "20"
php-ext-base-r1_addtoinifiles "memcache.chunk_size" "32768"
php-ext-base-r1_addtoinifiles "memcache.default_port" "11211"
php-ext-base-r1_addtoinifiles "memcache.hash_strategy" "standard"
php-ext-base-r1_addtoinifiles "memcache.hash_function" "crc32"
}
reply other threads:[~2010-10-04 4:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101004045928.85E0D2004C@flycatcher.gentoo.org \
--to=olemarkus@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox