public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-3.1.2.ebuild xcache-3.0.4.ebuild xcache-3.2.0.ebuild ChangeLog
@ 2014-09-19 14:12 Jorge Manuel B. S. Vicetto (jmbsvicetto)
  0 siblings, 0 replies; only message in thread
From: Jorge Manuel B. S. Vicetto (jmbsvicetto) @ 2014-09-19 14:12 UTC (permalink / raw
  To: gentoo-commits

jmbsvicetto    14/09/19 14:12:32

  Modified:             ChangeLog
  Added:                xcache-3.1.2.ebuild xcache-3.0.4.ebuild
                        xcache-3.2.0.ebuild
  Log:
  dev-php/xcache add 3.0.4, 3.1.2 and 3.2.0 releases - fixes bug 491358.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key BB0E6E98)

Revision  Changes    Path
1.20                 dev-php/xcache/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	25 Aug 2013 02:46:00 -0000	1.19
+++ ChangeLog	19 Sep 2014 14:12:32 -0000	1.20
@@ -1,6 +1,14 @@
 # ChangeLog for dev-php/xcache
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.19 2013/08/25 02:46:00 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/ChangeLog,v 1.20 2014/09/19 14:12:32 jmbsvicetto Exp $
+
+*xcache-3.1.2 (19 Sep 2014)
+*xcache-3.0.4 (19 Sep 2014)
+*xcache-3.2.0 (19 Sep 2014)
+
+  19 Sep 2014; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+  +xcache-3.0.4.ebuild, +xcache-3.1.2.ebuild, +xcache-3.2.0.ebuild:
+  dev-php/xcache add 3.0.4, 3.1.2 and 3.2.0 releases - fixes bug 491358.
 
   25 Aug 2013; Patrick Lauer <patrick@gentoo.org> xcache-3.0.3-r1.ebuild:
   Whitespace



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

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

Index: xcache-3.1.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-3.1.2.ebuild,v 1.1 2014/09/19 14:12:32 jmbsvicetto Exp $

EAPI="5"

PHP_EXT_NAME="xcache"
PHP_EXT_INI="yes"
PHPSAPILIST="apache2 cgi fpm"
USE_PHP="php5-4 php5-5"

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="
	!dev-php/eaccelerator
	!dev-php/pecl-apc
	virtual/httpd-php
	php_targets_php5-5? ( !dev-lang/php:5.5[opcache] )
"
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

	insinto "${PHP_EXT_SHARED_DIR}"
	doins lib/Decompiler.class.php
	insinto "${PHP_EXT_SHARED_DIR}"
	doins -r htdocs
}

pkg_postinst() {
	elog "lib/Decompiler.class.php, and the htdocs/ directory shipped with this"
	elog "release were installed into ${PHP_EXT_SHARED_DIR}."
}



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

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

Index: xcache-3.0.4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-3.0.4.ebuild,v 1.1 2014/09/19 14:12:32 jmbsvicetto Exp $

EAPI="5"

PHP_EXT_NAME="xcache"
PHP_EXT_INI="yes"
PHPSAPILIST="apache2 cgi fpm"
USE_PHP="php5-4"

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="
	!dev-php/eaccelerator
	!dev-php/pecl-apc
	virtual/httpd-php
"
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

	insinto "${PHP_EXT_SHARED_DIR}"
	doins lib/Decompiler.class.php
	insinto "${PHP_EXT_SHARED_DIR}"
	doins -r htdocs
}

pkg_postinst() {
	elog "lib/Decompiler.class.php, and the htdocs/ directory shipped with this"
	elog "release were installed into ${PHP_EXT_SHARED_DIR}."
}



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

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

Index: xcache-3.2.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/xcache/xcache-3.2.0.ebuild,v 1.1 2014/09/19 14:12:32 jmbsvicetto Exp $

EAPI="5"

PHP_EXT_NAME="xcache"
PHP_EXT_INI="yes"
PHPSAPILIST="apache2 cgi fpm"
USE_PHP="php5-4 php5-5 php5-6"

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="
	!dev-php/eaccelerator
	!dev-php/pecl-apc
	virtual/httpd-php
	php_targets_php5-5? ( !dev-lang/php:5.5[opcache] )
"
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

	insinto "${PHP_EXT_SHARED_DIR}"
	doins lib/Decompiler.class.php
	insinto "${PHP_EXT_SHARED_DIR}"
	doins -r htdocs
}

pkg_postinst() {
	elog "lib/Decompiler.class.php, and the htdocs/ directory shipped with this"
	elog "release were installed into ${PHP_EXT_SHARED_DIR}."
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-09-19 14:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 14:12 [gentoo-commits] gentoo-x86 commit in dev-php/xcache: xcache-3.1.2.ebuild xcache-3.0.4.ebuild xcache-3.2.0.ebuild ChangeLog Jorge Manuel B. S. Vicetto (jmbsvicetto)

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