public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php5/xcache: ChangeLog xcache-1.2.2.ebuild
@ 2008-01-04 13:30 Markus Ullmann (jokey)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Ullmann (jokey) @ 2008-01-04 13:30 UTC (permalink / raw
  To: gentoo-commits

jokey       08/01/04 13:30:55

  Modified:             ChangeLog
  Added:                xcache-1.2.2.ebuild
  Log:
  Version bump from project overlay
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.13                 dev-php5/xcache/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	7 Sep 2007 12:10:43 -0000	1.12
+++ ChangeLog	4 Jan 2008 13:30:54 -0000	1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-php5/xcache
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.12 2007/09/07 12:10:43 angelos Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.13 2008/01/04 13:30:54 jokey Exp $
+
+*xcache-1.2.2 (04 Jan 2008)
+
+  04 Jan 2008; Markus Ullmann <jokey@gentoo.org> +xcache-1.2.2.ebuild:
+  Version bump from project overlay
 
   07 Sep 2007; Christoph Mende <angelos@gentoo.org> xcache-1.2.1.ebuild:
   Stable on amd64 wrt bug #189531



1.1                  dev-php5/xcache/xcache-1.2.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.1&content-type=text/plain

Index: xcache-1.2.2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.1 2008/01/04 13:30:54 jokey Exp $

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

inherit php-ext-source-r1 confutils

KEYWORDS="~amd64 ~x86"

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"
IUSE=""

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

DEPEND="!dev-php5/eaccelerator !dev-php5/pecl-apc !dev-php5/ZendOptimizer"
RDEPEND="${DEPEND}"

need_php_by_category

pkg_setup() {
	has_php
	require_php_sapi_from cgi apache2
}

src_compile() {
	has_php

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

	enable_extension_with_built_with =${PHP_PKG} apache2 apxs2 /usr/sbin/apxs2 "optimisation for apache2"

	php-ext-source-r1_src_compile
}

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

	php-ext-base-r1_addtoinifiles "auto_globals_jit" '"0"'
	php-ext-base-r1_addtoinifiles "xcache.cacher" '"1"'
	php-ext-base-r1_addtoinifiles "xcache.size" '"10M"'
	php-ext-base-r1_addtoinifiles "xcache.count" '"2"'
	php-ext-base-r1_addtoinifiles "xcache.slots" '"8k"'
	php-ext-base-r1_addtoinifiles "xcache.var_size" '"0"'
	php-ext-base-r1_addtoinifiles "xcache.var_count" '"1"'
	php-ext-base-r1_addtoinifiles "xcache.readonly_protection" '"0"'
	php-ext-base-r1_addtoinifiles "xcache.mmap_path" '"/dev/zero"'
	php-ext-base-r1_addtoinifiles "xcache.stat" '"1"'
	php-ext-base-r1_addtoinifiles "xcache.coverager" '"0"'
	php-ext-base-r1_addtoinifiles "xcache.coveragedump_directory" '""'
	php-ext-base-r1_addtoinifiles "xcache.admin.enable_auth" '"1"'

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

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



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-php5/xcache: ChangeLog xcache-1.2.2.ebuild
@ 2008-02-01 16:50 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2008-02-01 16:50 UTC (permalink / raw
  To: gentoo-commits

maekke      08/02/01 16:50:24

  Modified:             ChangeLog xcache-1.2.2.ebuild
  Log:
  x86 stable, bug #208295
  (Portage version: 2.1.4)

Revision  Changes    Path
1.14                 dev-php5/xcache/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	4 Jan 2008 13:30:54 -0000	1.13
+++ ChangeLog	1 Feb 2008 16:50:23 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php5/xcache
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.13 2008/01/04 13:30:54 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.14 2008/02/01 16:50:23 maekke Exp $
+
+  01 Feb 2008; Markus Meier <maekke@gentoo.org> xcache-1.2.2.ebuild:
+  x86 stable, bug #208295
 
 *xcache-1.2.2 (04 Jan 2008)
 



1.2                  dev-php5/xcache/xcache-1.2.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?r1=1.1&r2=1.2

Index: xcache-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xcache-1.2.2.ebuild	4 Jan 2008 13:30:54 -0000	1.1
+++ xcache-1.2.2.ebuild	1 Feb 2008 16:50:23 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.1 2008/01/04 13:30:54 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.2 2008/02/01 16:50:23 maekke Exp $
 
 PHP_EXT_NAME="xcache"
 PHP_EXT_INI="yes"
@@ -9,7 +9,7 @@
 
 inherit php-ext-source-r1 confutils
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 DESCRIPTION="A fast and stable PHP opcode cacher"
 HOMEPAGE="http://xcache.lighttpd.net/"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-php5/xcache: ChangeLog xcache-1.2.2.ebuild
@ 2008-03-08 19:42 Peter Volkov (pva)
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Volkov (pva) @ 2008-03-08 19:42 UTC (permalink / raw
  To: gentoo-commits

pva         08/03/08 19:42:07

  Modified:             ChangeLog xcache-1.2.2.ebuild
  Log:
  amd64 stable.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.15                 dev-php5/xcache/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	1 Feb 2008 16:50:23 -0000	1.14
+++ ChangeLog	8 Mar 2008 19:42:07 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php5/xcache
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.14 2008/02/01 16:50:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.15 2008/03/08 19:42:07 pva Exp $
+
+  08 Mar 2008; <pva@gentoo.org> xcache-1.2.2.ebuild:
+  amd64 stable.
 
   01 Feb 2008; Markus Meier <maekke@gentoo.org> xcache-1.2.2.ebuild:
   x86 stable, bug #208295



1.3                  dev-php5/xcache/xcache-1.2.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild?r1=1.2&r2=1.3

Index: xcache-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xcache-1.2.2.ebuild	1 Feb 2008 16:50:23 -0000	1.2
+++ xcache-1.2.2.ebuild	8 Mar 2008 19:42:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.2 2008/02/01 16:50:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.3 2008/03/08 19:42:07 pva Exp $
 
 PHP_EXT_NAME="xcache"
 PHP_EXT_INI="yes"
@@ -9,7 +9,7 @@
 
 inherit php-ext-source-r1 confutils
 
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="A fast and stable PHP opcode cacher"
 HOMEPAGE="http://xcache.lighttpd.net/"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-php5/xcache: ChangeLog xcache-1.2.2.ebuild
@ 2011-01-05 20:26 Ole Markus With (olemarkus)
  0 siblings, 0 replies; 4+ messages in thread
From: Ole Markus With (olemarkus) @ 2011-01-05 20:26 UTC (permalink / raw
  To: gentoo-commits

olemarkus    11/01/05 20:26:37

  Modified:             ChangeLog
  Removed:              xcache-1.2.2.ebuild
  Log:
  Removed old versions
  
  (Portage version: 2.1.9.28/cvs/Linux i686)

Revision  Changes    Path
1.24                 dev-php5/xcache/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	4 Jan 2011 15:22:15 -0000	1.23
+++ ChangeLog	5 Jan 2011 20:26:37 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php5/xcache
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.23 2011/01/04 15:22:15 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.24 2011/01/05 20:26:37 olemarkus Exp $
+
+  05 Jan 2011; Ole Markus With <olemarkus@gentoo.org> -xcache-1.2.2.ebuild:
+  Removed old versions
 
   04 Jan 2011; Markos Chandras <hwoarang@gentoo.org> xcache-1.3.0-r2.ebuild:
   Stable on amd64 wrt bug #349659






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

end of thread, other threads:[~2011-01-05 20:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-05 20:26 [gentoo-commits] gentoo-x86 commit in dev-php5/xcache: ChangeLog xcache-1.2.2.ebuild Ole Markus With (olemarkus)
  -- strict thread matches above, loose matches on Subject: below --
2008-03-08 19:42 Peter Volkov (pva)
2008-02-01 16:50 Markus Meier (maekke)
2008-01-04 13:30 Markus Ullmann (jokey)

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