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: Sun, 17 Nov 2019 21:01:52
Message-Id: 1574024494.037150d148d09bef02018cb155bef1bb90424702.whissi@gentoo
1 commit: 037150d148d09bef02018cb155bef1bb90424702
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 21:00:00 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 21:01:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=037150d1
7
8 dev-php/xdebug: bump to v2.8.0
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/xdebug/Manifest | 1 +
14 dev-php/xdebug/xdebug-2.8.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-php/xdebug/Manifest b/dev-php/xdebug/Manifest
18 index 6a503d22f37..f0f69510aff 100644
19 --- a/dev-php/xdebug/Manifest
20 +++ b/dev-php/xdebug/Manifest
21 @@ -3,3 +3,4 @@ DIST xdebug-2.5.5.tgz 279491 BLAKE2B 2492911db7afca2bc96761788c4ec7eac92cb22a6d6
22 DIST xdebug-2.6.1.tgz 283961 BLAKE2B 4478d591591102a9efa248820831e4d43d89eb9b80379c92fe85c888377a31d855ac4ea98c13ad87da68f7e7f659483cfa36fd4651f245d5603fcada2e2fcf73 SHA512 31f26e592b3888d7cc74c6a7c51e0cc1151cf8a32100dda78098fb5b3e307cf8d0445b97247986c75b303a787f89b3937bc042dc52f19ca995753a6843bbd80b
23 DIST xdebug-2.7.0.tar.gz 411943 BLAKE2B d01ad4f84a93356d0ce885cd0b3fb4e72bb55c7df0cb264750f91711e25955c3c5941ca40d5374ead6f4a0c2c70ec30c4133e626d5a925fe0c539541567692de SHA512 44ba3a1e7ca111250c53369df603851d84cb1ea91b691ef9f7695a6565369bf20a30e8bd2b9398ecc4440df4a566674876dd47ad8e60fe116c6784167461d5db
24 DIST xdebug-2.7.2.tar.gz 416082 BLAKE2B c84e8a7b5e2fbc0989c47d9dff8c8d52d6e44a9fea1f7be483cec60b8b75e8665c71a536d0ca0c1b835990f747cadb29900d64b5ab0f47a4be172e7e1c0d38b2 SHA512 b099904b552750b9ff09181f068deddb155c820d20f6a4dcc37579771607e4e9c43af1cf226e74c012abd188b240c46b13207b9e55bdf010a696b739f1ea5e88
25 +DIST xdebug-2.8.0.tar.gz 440563 BLAKE2B a90fd84a56635fe4c7036b517da8c980affe5307d0f27c471e792d75c1fae45effabb4fff4954340920cb259baae7d8268274a3f2eec7490a9b84920438e6a49 SHA512 ec97de4c092a9256cc0c22ed87c59ac41b60103c82c7e57d1be66c4e6b098dfa82bedde9a9a0856cce34b83711f2d6719154aad45a688e9eaa5ad014abeff58b
26
27 diff --git a/dev-php/xdebug/xdebug-2.8.0.ebuild b/dev-php/xdebug/xdebug-2.8.0.ebuild
28 new file mode 100644
29 index 00000000000..a95298dda05
30 --- /dev/null
31 +++ b/dev-php/xdebug/xdebug-2.8.0.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 php7-4"
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 +}