Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/igbinary: igbinary-1.2.1.ebuild ChangeLog
Date: Wed, 01 Oct 2014 03:11:21
Message-Id: 20141001031115.9AFFC6A01@oystercatcher.gentoo.org
1 grknight 14/10/01 03:11:15
2
3 Modified: ChangeLog
4 Added: igbinary-1.2.1.ebuild
5 Log:
6 Version bump; update HOMEPAGE; support 5.6; wrt bug 521926
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
9
10 Revision Changes Path
11 1.11 dev-php/igbinary/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 30 Sep 2014 15:05:43 -0000 1.10
24 +++ ChangeLog 1 Oct 2014 03:11:15 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/igbinary
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.10 2014/09/30 15:05:43 grknight Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/ChangeLog,v 1.11 2014/10/01 03:11:15 grknight Exp $
30 +
31 +*igbinary-1.2.1 (01 Oct 2014)
32 +
33 + 01 Oct 2014; Brian Evans <grknight@g.o> +igbinary-1.2.1.ebuild:
34 + Version bump; update HOMEPAGE; support 5.6; wrt bug 521926
35
36 30 Sep 2014; <grknight@g.o> -igbinary-1.1.1-r1.ebuild:
37 Cleanup old
38
39
40
41 1.1 dev-php/igbinary/igbinary-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/igbinary-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/igbinary/igbinary-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: igbinary-1.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.2.1.ebuild,v 1.1 2014/10/01 03:11:15 grknight 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-6 php5-5 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="https://github.com/igbinary/igbinary"
66 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PF}.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 }