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/pecl-stomp: pecl-stomp-1.0.5-r1.ebuild ChangeLog pecl-stomp-1.0.5.ebuild
Date: Mon, 29 Sep 2014 18:25:01
Message-Id: 20140929182458.6B4E9596@oystercatcher.gentoo.org
1 grknight 14/09/29 18:24:58
2
3 Modified: ChangeLog
4 Added: pecl-stomp-1.0.5-r1.ebuild
5 Removed: pecl-stomp-1.0.5.ebuild
6 Log:
7 Revbump to increase valid PHP compatibility
8
9 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
10
11 Revision Changes Path
12 1.4 dev-php/pecl-stomp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 5 Mar 2013 10:50:44 -0000 1.3
25 +++ ChangeLog 29 Sep 2014 18:24:58 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php/pecl-stomp
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v 1.3 2013/03/05 10:50:44 olemarkus Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v 1.4 2014/09/29 18:24:58 grknight Exp $
32 +
33 +*pecl-stomp-1.0.5-r1 (29 Sep 2014)
34 +
35 + 29 Sep 2014; <grknight@g.o> +pecl-stomp-1.0.5-r1.ebuild,
36 + -pecl-stomp-1.0.5.ebuild:
37 + Revbump to increase valid PHP compatibility
38
39 *pecl-stomp-1.0.5 (05 Mar 2013)
40
41
42
43
44 1.1 dev-php/pecl-stomp/pecl-stomp-1.0.5-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/pecl-stomp-1.0.5-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/pecl-stomp-1.0.5-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pecl-stomp-1.0.5-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/pecl-stomp-1.0.5-r1.ebuild,v 1.1 2014/09/29 18:24:58 grknight Exp $
54
55 EAPI="5"
56
57 USE_PHP="php5-4 php5-5 php5-6"
58 PHP_EXT_NAME="stomp"
59 PHP_EXT_INI="yes"
60 PHP_EXT_ZENDEXT="no"
61 DOCS="CREDITS EXPERIMENTAL README"
62
63 inherit php-ext-pecl-r2
64
65 KEYWORDS="~amd64 ~x86"
66
67 DESCRIPTION="PHP extension to communicate with any Stomp compliant Message Brokers"
68 LICENSE="PHP-3"
69 SLOT="0"
70 IUSE="+ssl"
71
72 DEPEND="${DEPEND}
73 ssl? ( dev-lang/php[ssl] )
74 "
75
76 RDEPEND="${DEPEND}"
77
78 src_compile() {
79 my_conf="--enable-stomp
80 $(use_with ssl openssl-dir=/usr)"
81 php-ext-pecl-r2_src_compile
82 }