Gentoo Archives: gentoo-commits

From: "Ole Markus With (olemarkus)" <olemarkus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/igbinary: igbinary-1.1.1-r2.ebuild ChangeLog
Date: Thu, 28 Mar 2013 12:23:16
Message-Id: 20130328122313.BB7982171D@flycatcher.gentoo.org
1 olemarkus 13/03/28 12:23:13
2
3 Modified: ChangeLog
4 Added: igbinary-1.1.1-r2.ebuild
5 Log:
6 Revbump supporting php 5.5
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
9
10 Revision Changes Path
11 1.6 dev-php/igbinary/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 5 Mar 2013 10:21:26 -0000 1.5
24 +++ ChangeLog 28 Mar 2013 12:23:13 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/igbinary
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.5 2013/03/05 10:21:26 olemarkus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.6 2013/03/28 12:23:13 olemarkus Exp $
30 +
31 +*igbinary-1.1.1-r2 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Ole Markus With <olemarkus@g.o> +igbinary-1.1.1-r2.ebuild:
34 + Revbump supporting php 5.5
35
36 05 Mar 2013; Ole Markus With <olemarkus@g.o> igbinary-1.1.1-r1.ebuild:
37 EAPI bump
38
39
40
41 1.1 dev-php/igbinary/igbinary-1.1.1-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/igbinary-1.1.1-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/igbinary-1.1.1-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: igbinary-1.1.1-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $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 $
51
52 EAPI="5"
53 PHP_EXT_NAME="igbinary"
54 PHP_EXT_INI="yes"
55 PHP_EXT_ZENDEXT="no"
56 DOCS="README"
57
58 USE_PHP="php5-5 php5-3 php5-4"
59
60 inherit php-ext-source-r2
61
62 KEYWORDS="~amd64 ~x86"
63
64 DESCRIPTION="A fast drop in replacement for the standard PHP serialize"
65 HOMEPAGE="http://opensource.dynamoid.com/"
66 SRC_URI="http://opensource.dynamoid.com/${P}.tar.gz"
67
68 LICENSE="BSD"
69 SLOT="0"
70 IUSE=""
71
72 DEPEND=""
73 RDEPEND="${DEPEND}"
74
75 src_configure() {
76 my_conf="--enable-igbinary"
77 php-ext-source-r2_src_configure
78 }
79
80 src_test() {
81 for slot in $(php_get_slots); do
82 php_init_slot_env ${slot}
83 NO_INTERACTION="yes" emake test || die "emake test failed for slot ${slot}"
84 done
85 }