public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-1.3.2.ebuild ChangeLog
@ 2011-10-12 16:00 Ole Markus With (olemarkus)
  0 siblings, 0 replies; 3+ messages in thread
From: Ole Markus With (olemarkus) @ 2011-10-12 16:00 UTC (permalink / raw
  To: gentoo-commits

olemarkus    11/10/12 16:00:34

  Modified:             ChangeLog
  Added:                xcache-1.3.2.ebuild
  Log:
  Version bump (issue 386147)
  
  (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-php/xcache/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	10 Apr 2011 17:34:26 -0000	1.1
+++ ChangeLog	12 Oct 2011 16:00:34 -0000	1.2
@@ -1,6 +1,11 @@
-# ChangeLog for dev-php5/xcache
+# ChangeLog for dev-php/xcache
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.1 2011/04/10 17:34:26 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.2 2011/10/12 16:00:34 olemarkus Exp $
+
+*xcache-1.3.2 (12 Oct 2011)
+
+  12 Oct 2011; Ole Markus With <olemarkus@gentoo.org> +xcache-1.3.2.ebuild:
+  Version bump (issue 386147)
 
   11 Mar 2011; Thomas Kahle <tomka@gentoo.org> xcache-1.3.1.ebuild:
   x86 stable per bug 355487



1.1                  dev-php/xcache/xcache-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.1&content-type=text/plain

Index: xcache-1.3.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v 1.1 2011/10/12 16:00:34 olemarkus Exp $

PHP_EXT_NAME="xcache"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="yes"
PHPSAPILIST="apache2 cgi fpm"

EAPI="2"
inherit php-ext-source-r2 confutils

DESCRIPTION="A fast and stable PHP opcode cacher"
HOMEPAGE="http://xcache.lighttpd.net/"
SRC_URI="http://xcache.lighttpd.net/pub/Releases/${PV}/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# make test would just run php's test and as such need the full php source
RESTRICT="test"

DEPEND="virtual/httpd-php
!dev-php/eaccelerator !dev-php/pecl-apc"
RDEPEND="${DEPEND}"

src_configure() {

	my_conf="--enable-xcache=shared   \
			--enable-xcache-constant  \
			--enable-xcache-optimizer \
			--enable-xcache-coverager \
			--enable-xcache-assembler \
			--enable-xcache-encoder   \
			--enable-xcache-decoder"

	php-ext-source-r2_src_configure
}

src_install() {
	php-ext-source-r2_src_install
	dodoc AUTHORS ChangeLog NEWS README THANKS

	php-ext-source-r2_addtoinifiles "xcache.admin.enable_auth" '"On"'
	php-ext-source-r2_addtoinifiles "xcache.admin.user" '"admin"'
	php-ext-source-r2_addtoinifiles "xcache.admin.pass" '""'

	php-ext-source-r2_addtoinifiles "xcache.cacher" '"On"'
	php-ext-source-r2_addtoinifiles "xcache.size" '"64M"'
	php-ext-source-r2_addtoinifiles "xcache.count" '"2"'
	php-ext-source-r2_addtoinifiles "xcache.slots" '"8k"'
	php-ext-source-r2_addtoinifiles "xcache.ttl" '"0"'
	php-ext-source-r2_addtoinifiles "xcache.gc_interval" '"0"'
	php-ext-source-r2_addtoinifiles "xcache.var_size" '"8M"'
	php-ext-source-r2_addtoinifiles "xcache.var_count" '"1"'
	php-ext-source-r2_addtoinifiles "xcache.var_slots" '"8K"'
	php-ext-source-r2_addtoinifiles "xcache.var_ttl" '"0"'
	php-ext-source-r2_addtoinifiles "xcache.var_maxttl" '"0"'
	php-ext-source-r2_addtoinifiles "xcache.var_gc_interval" '"600"'
	php-ext-source-r2_addtoinifiles "xcache.readonly_protection" '"Off"'
	php-ext-source-r2_addtoinifiles "xcache.mmap_path" '"/dev/zero"'

	php-ext-source-r2_addtoinifiles "xcache.coverager" '"Off"'
	php-ext-source-r2_addtoinifiles "xcache.coveragedump_directory" '""'

	php-ext-source-r2_addtoinifiles "xcache.optimizer" '"Off"'

	insinto "${PHP_EXT_SHARED_DIR}"
	doins Decompiler.class.php
	insinto "${PHP_EXT_SHARED_DIR}/admin"
	doins admin/*
	insinto "${PHP_EXT_SHARED_DIR}/coverager"
	doins coverager/*
}

pkg_postinst() {
	elog "Decompiler.class.php, the admin/ and the coverager/ directory shipped with this"
	elog "release were installed into ${ROOT}usr/share/php5/xcache/."
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-1.3.2.ebuild ChangeLog
@ 2012-01-18 12:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-01-18 12:22 UTC (permalink / raw
  To: gentoo-commits

ago         12/01/18 12:22:02

  Modified:             xcache-1.3.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #398537
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-php/xcache/xcache-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?r1=1.1&r2=1.2

Index: xcache-1.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xcache-1.3.2.ebuild	12 Oct 2011 16:00:34 -0000	1.1
+++ xcache-1.3.2.ebuild	18 Jan 2012 12:22:02 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v 1.1 2011/10/12 16:00:34 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v 1.2 2012/01/18 12:22:02 ago Exp $
 
 PHP_EXT_NAME="xcache"
 PHP_EXT_INI="yes"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 # make test would just run php's test and as such need the full php source



1.3                  dev-php/xcache/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	12 Oct 2011 16:00:34 -0000	1.2
+++ ChangeLog	18 Jan 2012 12:22:02 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/xcache
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.2 2011/10/12 16:00:34 olemarkus Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.3 2012/01/18 12:22:02 ago Exp $
+
+  18 Jan 2012; Agostino Sarubbo <ago@gentoo.org> xcache-1.3.2.ebuild:
+  Stable for amd64, wrt bug #398537
 
 *xcache-1.3.2 (12 Oct 2011)
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-1.3.2.ebuild ChangeLog
@ 2012-01-21 16:21 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 3+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-01-21 16:21 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/01/21 16:21:24

  Modified:             xcache-1.3.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #398537
  
  (Portage version: 2.1.10.41/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-php/xcache/xcache-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild?r1=1.2&r2=1.3

Index: xcache-1.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xcache-1.3.2.ebuild	18 Jan 2012 12:22:02 -0000	1.2
+++ xcache-1.3.2.ebuild	21 Jan 2012 16:21:24 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v 1.2 2012/01/18 12:22:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-1.3.2.ebuild,v 1.3 2012/01/21 16:21:24 phajdan.jr Exp $
 
 PHP_EXT_NAME="xcache"
 PHP_EXT_INI="yes"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 # make test would just run php's test and as such need the full php source



1.4                  dev-php/xcache/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xcache/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	18 Jan 2012 12:22:02 -0000	1.3
+++ ChangeLog	21 Jan 2012 16:21:24 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/xcache
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.3 2012/01/18 12:22:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.4 2012/01/21 16:21:24 phajdan.jr Exp $
+
+  21 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> xcache-1.3.2.ebuild:
+  x86 stable wrt bug #398537
 
   18 Jan 2012; Agostino Sarubbo <ago@gentoo.org> xcache-1.3.2.ebuild:
   Stable for amd64, wrt bug #398537






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-21 16:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-21 16:21 [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-1.3.2.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-18 12:22 Agostino Sarubbo (ago)
2011-10-12 16:00 Ole Markus With (olemarkus)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox