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.6.ebuild ChangeLog pecl-stomp-1.0.5-r1.ebuild
Date: Wed, 29 Apr 2015 01:40:40
Message-Id: 20150429014030.4A81C98D@oystercatcher.gentoo.org
1 grknight 15/04/29 01:40:29
2
3 Modified: ChangeLog
4 Added: pecl-stomp-1.0.6.ebuild
5 Removed: pecl-stomp-1.0.5-r1.ebuild
6 Log:
7 Version bump and silence repoman warnings
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
10
11 Revision Changes Path
12 1.6 dev-php/pecl-stomp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 9 Oct 2014 20:32:58 -0000 1.5
25 +++ ChangeLog 29 Apr 2015 01:40:29 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php/pecl-stomp
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v 1.5 2014/10/09 20:32:58 grknight Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-stomp/ChangeLog,v 1.6 2015/04/29 01:40:29 grknight Exp $
32 +
33 +*pecl-stomp-1.0.6 (29 Apr 2015)
34 +
35 + 29 Apr 2015; Brian Evans <grknight@g.o> +pecl-stomp-1.0.6.ebuild,
36 + -pecl-stomp-1.0.5-r1.ebuild:
37 + Version bump and silence repoman warnings
38
39 *pecl-stomp-1.0.5-r1 (29 Sep 2014)
40
41
42
43
44 1.1 dev-php/pecl-stomp/pecl-stomp-1.0.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/pecl-stomp-1.0.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-stomp/pecl-stomp-1.0.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pecl-stomp-1.0.6.ebuild
50 ===================================================================
51 # Copyright 1999-2015 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.6.ebuild,v 1.1 2015/04/29 01:40:29 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 for target in ${USE_PHP}; do
73 slot=${target/php}
74 slot=${slot/-/.}
75 PHPUSEDEPEND="${PHPUSEDEPEND}
76 php_targets_${target}? ( dev-lang/php:${slot}[ssl?] )"
77 done
78
79 DEPEND="${DEPEND}
80 ${PHPUSEDEPEND}
81 "
82
83 RDEPEND="${DEPEND}"
84
85 src_compile() {
86 my_conf="--enable-stomp
87 $(use_with ssl openssl-dir=/usr)"
88 php-ext-pecl-r2_src_compile
89 }