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/xdebug: xdebug-2.2.7.ebuild ChangeLog
Date: Sun, 01 Feb 2015 23:26:53
Message-Id: 20150201232650.0BBD810DAE@oystercatcher.gentoo.org
1 grknight 15/02/01 23:26:50
2
3 Modified: ChangeLog
4 Added: xdebug-2.2.7.ebuild
5 Log:
6 Version bump wrt bug 538452
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
9
10 Revision Changes Path
11 1.69 dev-php/xdebug/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/xdebug/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 15 Jan 2015 09:03:30 -0000 1.68
24 +++ ChangeLog 1 Feb 2015 23:26:50 -0000 1.69
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/xdebug
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug/ChangeLog,v 1.68 2015/01/15 09:03:30 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug/ChangeLog,v 1.69 2015/02/01 23:26:50 grknight Exp $
30 +
31 +*xdebug-2.2.7 (01 Feb 2015)
32 +
33 + 01 Feb 2015; Brian Evans <grknight@g.o> +xdebug-2.2.7.ebuild:
34 + Version bump wrt bug 538452
35
36 15 Jan 2015; Michał Górny <mgorny@g.o> xdebug-2.2.6.ebuild:
37 Enable php5-6, requested in https://github.com/funtoo/ports-2012/pull/11.
38
39
40
41 1.1 dev-php/xdebug/xdebug-2.2.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug/xdebug-2.2.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/xdebug/xdebug-2.2.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xdebug-2.2.7.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php/xdebug/xdebug-2.2.7.ebuild,v 1.1 2015/02/01 23:26:50 grknight Exp $
51
52 EAPI="5"
53 PHP_EXT_NAME="xdebug"
54 PHP_EXT_INI="yes"
55 PHP_EXT_ZENDEXT="yes"
56
57 USE_PHP="php5-6 php5-5 php5-4"
58
59 MY_PV="${PV/_/}"
60 MY_PV="${MY_PV/rc/RC}"
61
62 S="${WORKDIR}/${PN}-${MY_PV}"
63
64 inherit php-ext-source-r2
65
66 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
67
68 DESCRIPTION="A PHP debugging and profiling extension"
69 HOMEPAGE="http://www.xdebug.org/"
70 SRC_URI="http://pecl.php.net/get/${PN}-${MY_PV}.tgz"
71 LICENSE="Xdebug"
72 SLOT="0"
73 IUSE=""
74
75 DEPEND=""
76 RDEPEND="${DEPEND}
77 ~dev-php/xdebug-client-${PV}"
78
79 src_install() {
80 dodoc NEWS README CREDITS
81 php-ext-source-r2_src_install
82
83 php-ext-source-r2_addtoinifiles "xdebug.auto_trace" '"0"'
84 php-ext-source-r2_addtoinifiles "xdebug.trace_output_dir" '"/tmp"'
85 php-ext-source-r2_addtoinifiles "xdebug.trace_output_name" '"trace.%c"'
86 php-ext-source-r2_addtoinifiles "xdebug.trace_format" '"0"'
87 php-ext-source-r2_addtoinifiles "xdebug.trace_options" '"0"'
88 php-ext-source-r2_addtoinifiles "xdebug.collect_includes" '"1"'
89 php-ext-source-r2_addtoinifiles "xdebug.collect_params" '"0"'
90 php-ext-source-r2_addtoinifiles "xdebug.collect_return" '"0"'
91 php-ext-source-r2_addtoinifiles "xdebug.collect_vars" '"0"'
92 php-ext-source-r2_addtoinifiles "xdebug.default_enable" '"1"'
93 php-ext-source-r2_addtoinifiles "xdebug.extended_info" '"1"'
94 php-ext-source-r2_addtoinifiles "xdebug.manual_url" '"http://www.php.net"'
95 php-ext-source-r2_addtoinifiles "xdebug.max_nesting_level" '"100"'
96 php-ext-source-r2_addtoinifiles "xdebug.show_exception_trace" '"0"'
97 php-ext-source-r2_addtoinifiles "xdebug.show_local_vars" '"0"'
98 php-ext-source-r2_addtoinifiles "xdebug.show_mem_delta" '"0"'
99 php-ext-source-r2_addtoinifiles "xdebug.dump.COOKIE" '"NULL"'
100 php-ext-source-r2_addtoinifiles "xdebug.dump.ENV" '"NULL"'
101 php-ext-source-r2_addtoinifiles "xdebug.dump.FILES" '"NULL"'
102 php-ext-source-r2_addtoinifiles "xdebug.dump.GET" '"NULL"'
103 php-ext-source-r2_addtoinifiles "xdebug.dump.POST" '"NULL"'
104 php-ext-source-r2_addtoinifiles "xdebug.dump.REQUEST" '"NULL"'
105 php-ext-source-r2_addtoinifiles "xdebug.dump.SERVER" '"NULL"'
106 php-ext-source-r2_addtoinifiles "xdebug.dump.SESSION" '"NULL"'
107 php-ext-source-r2_addtoinifiles "xdebug.dump_globals" '"1"'
108 php-ext-source-r2_addtoinifiles "xdebug.dump_once" '"1"'
109 php-ext-source-r2_addtoinifiles "xdebug.dump_undefined" '"0"'
110 php-ext-source-r2_addtoinifiles "xdebug.profiler_enable" '"0"'
111 php-ext-source-r2_addtoinifiles "xdebug.profiler_output_dir" '"/tmp"'
112 php-ext-source-r2_addtoinifiles "xdebug.profiler_output_name" '"cachegrind.out.%p"'
113 php-ext-source-r2_addtoinifiles "xdebug.profiler_enable_trigger" '"0"'
114 php-ext-source-r2_addtoinifiles "xdebug.profiler_append" '"0"'
115 php-ext-source-r2_addtoinifiles "xdebug.profiler_aggregate" '"0"'
116 php-ext-source-r2_addtoinifiles "xdebug.remote_enable" '"0"'
117 php-ext-source-r2_addtoinifiles "xdebug.remote_handler" '"dbgp"'
118 php-ext-source-r2_addtoinifiles "xdebug.remote_host" '"localhost"'
119 php-ext-source-r2_addtoinifiles "xdebug.remote_mode" '"req"'
120 php-ext-source-r2_addtoinifiles "xdebug.remote_port" '"9000"'
121 php-ext-source-r2_addtoinifiles "xdebug.remote_autostart" '"0"'
122 php-ext-source-r2_addtoinifiles "xdebug.remote_log" '""'
123 php-ext-source-r2_addtoinifiles "xdebug.idekey" '""'
124 php-ext-source-r2_addtoinifiles "xdebug.var_display_max_data" '"512"'
125 php-ext-source-r2_addtoinifiles "xdebug.var_display_max_depth" '"2"'
126 php-ext-source-r2_addtoinifiles "xdebug.var_display_max_children" '"128"'
127
128 }
129
130 pkg_postinst() {
131 ewarn "We have set xdebug.default_enable to 0 (off), as xdebug can be"
132 ewarn "installed as a dependency, and not all users will want xdebug to be"
133 ewarn "enabled by default. If you want to enable it, you should edit the"
134 ewarn "ini file and set xdebug.default_enable to 1. Alternatively you can"
135 ewarn "call xdebug_enable() in your code."
136 }