Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/xdebug/
Date: Wed, 13 Feb 2019 20:02:20
Message-Id: 1550088123.d00de09138f221babd82d857a888e4dd1a9cbe3b.whissi@gentoo
1 commit: d00de09138f221babd82d857a888e4dd1a9cbe3b
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 13 18:41:47 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 13 20:02:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d00de091
7
8 dev-php/xdebug: bump to v2.7.0 RC1
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/xdebug/Manifest | 1 +
14 dev-php/xdebug/xdebug-2.7.0_rc1.ebuild | 42 ++++++++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-php/xdebug/Manifest b/dev-php/xdebug/Manifest
18 index ac7f273e765..996174b1e52 100644
19 --- a/dev-php/xdebug/Manifest
20 +++ b/dev-php/xdebug/Manifest
21 @@ -1,3 +1,4 @@
22 DIST xdebug-2.5.3.tgz 279085 BLAKE2B cbbfb15e92c3f80cda502340396a6137e2234442fd98bc3fe4b2e08e76cba6292fb5176992aadba7193308ec4c9ab32356922a4416a21b23603e9b48a0d73c06 SHA512 b301a5abb92e123bbe2b36f7838b56d370a0f2c0c4d3c350b5014f4b86d31daa66e9bff995eed67a570558f6a72ca46a097266e6ab94c413f1dcb99c0fbd4f22
23 DIST xdebug-2.5.5.tgz 279491 BLAKE2B 2492911db7afca2bc96761788c4ec7eac92cb22a6d65b69070b74f702df2bae1ba7dff9f5edfe83542229dbb7ebb3850b6ed1cf19a5e5969413aac3f2d39fc73 SHA512 9faab421bd90c03734c047d8c6dcc021c8bc665eb36781c692f194d04c7dca24fe1eb920ca8dc407e5bf4ae0912c4b917587f940f34b07171a8881d4cf8695d1
24 DIST xdebug-2.6.1.tgz 283961 BLAKE2B 4478d591591102a9efa248820831e4d43d89eb9b80379c92fe85c888377a31d855ac4ea98c13ad87da68f7e7f659483cfa36fd4651f245d5603fcada2e2fcf73 SHA512 31f26e592b3888d7cc74c6a7c51e0cc1151cf8a32100dda78098fb5b3e307cf8d0445b97247986c75b303a787f89b3937bc042dc52f19ca995753a6843bbd80b
25 +DIST xdebug-2.7.0_rc1.tar.gz 383009 BLAKE2B f8ec78ea1214089fb59cafa8be2f8e4f90c0dbda326a707bd768238da42d23d04cc0dc8e448444e764a1bd474e3bcb98c4b6491d131a28799a01670174e8755a SHA512 38cf59f02953331f16efffa6e6cd9d730fe4b000fe6ae6e364076ae57387b01270b60b0925a516f022bed82165ab448c5c2f52d2108e0231be7a49f1e78a7dbb
26
27 diff --git a/dev-php/xdebug/xdebug-2.7.0_rc1.ebuild b/dev-php/xdebug/xdebug-2.7.0_rc1.ebuild
28 new file mode 100644
29 index 00000000000..a8568aa85f5
30 --- /dev/null
31 +++ b/dev-php/xdebug/xdebug-2.7.0_rc1.ebuild
32 @@ -0,0 +1,42 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +PHP_EXT_NAME="xdebug"
38 +PHP_EXT_INI="yes"
39 +PHP_EXT_ZENDEXT="yes"
40 +PHP_EXT_INIFILE="2.6.0-xdebug.ini"
41 +
42 +USE_PHP="php7-1 php7-2 php7-3"
43 +
44 +MY_PV="${PV/_/}"
45 +MY_PV="${MY_PV/rc/RC}"
46 +
47 +S="${WORKDIR}/${PN}-${MY_PV}"
48 +
49 +inherit php-ext-source-r3
50 +
51 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
52 +
53 +DESCRIPTION="A PHP debugging and profiling extension"
54 +HOMEPAGE="https://xdebug.org/"
55 +# Using tarball from GitHub for tests
56 +#SRC_URI="https://pecl.php.net/get/${PN}-${MY_PV}.tgz"
57 +SRC_URI="https://github.com/xdebug/xdebug/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
58 +LICENSE="Xdebug"
59 +SLOT="0"
60 +IUSE=""
61 +
62 +DEPEND=""
63 +RDEPEND="${DEPEND}
64 + ~dev-php/xdebug-client-${PV}"
65 +DOCS=( README.rst CREDITS )
66 +PHP_EXT_ECONF_ARGS=()
67 +
68 +pkg_postinst() {
69 + ewarn "We have set xdebug.default_enable to 0 (off), as xdebug can be"
70 + ewarn "installed as a dependency, and not all users will want xdebug to be"
71 + ewarn "enabled by default. If you want to enable it, you should edit the"
72 + ewarn "ini file and set xdebug.default_enable to 1. Alternatively you can"
73 + ewarn "call xdebug_enable() in your code."
74 +}