diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2013-03-28 12:23:13 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2013-03-28 12:23:13 +0000 |
commit | 978c903b6cb6200711b5511c8da5b9a301cab618 (patch) | |
tree | 4f79241ccb283ea15db8ed87bc8440822e9b4b1a /dev-php | |
parent | Version bump to 347a. EAPI 5. Non maintainer commit. (diff) | |
download | gentoo-2-978c903b6cb6200711b5511c8da5b9a301cab618.tar.gz gentoo-2-978c903b6cb6200711b5511c8da5b9a301cab618.tar.bz2 gentoo-2-978c903b6cb6200711b5511c8da5b9a301cab618.zip |
Revbump supporting php 5.5
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/igbinary/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/igbinary/igbinary-1.1.1-r2.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-php/igbinary/ChangeLog b/dev-php/igbinary/ChangeLog index 6f069a290c89..d79407ec1ca7 100644 --- a/dev-php/igbinary/ChangeLog +++ b/dev-php/igbinary/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/igbinary # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.5 2013/03/05 10:21:26 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.6 2013/03/28 12:23:13 olemarkus Exp $ + +*igbinary-1.1.1-r2 (28 Mar 2013) + + 28 Mar 2013; Ole Markus With <olemarkus@gentoo.org> +igbinary-1.1.1-r2.ebuild: + Revbump supporting php 5.5 05 Mar 2013; Ole Markus With <olemarkus@gentoo.org> igbinary-1.1.1-r1.ebuild: EAPI bump diff --git a/dev-php/igbinary/igbinary-1.1.1-r2.ebuild b/dev-php/igbinary/igbinary-1.1.1-r2.ebuild new file mode 100644 index 000000000000..53d6d11fe579 --- /dev/null +++ b/dev-php/igbinary/igbinary-1.1.1-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/igbinary-1.1.1-r2.ebuild,v 1.1 2013/03/28 12:23:13 olemarkus Exp $ + +EAPI="5" +PHP_EXT_NAME="igbinary" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="README" + +USE_PHP="php5-5 php5-3 php5-4" + +inherit php-ext-source-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="A fast drop in replacement for the standard PHP serialize" +HOMEPAGE="http://opensource.dynamoid.com/" +SRC_URI="http://opensource.dynamoid.com/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + my_conf="--enable-igbinary" + php-ext-source-r2_src_configure +} + +src_test() { + for slot in $(php_get_slots); do + php_init_slot_env ${slot} + NO_INTERACTION="yes" emake test || die "emake test failed for slot ${slot}" + done +} |