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-handler/
Date: Fri, 28 May 2021 08:59:05
Message-Id: 1622192335.d5ebd6bf4c1d4cdce4f09ae744249840eb6a345a.whissi@gentoo
1 commit: d5ebd6bf4c1d4cdce4f09ae744249840eb6a345a
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 28 08:56:29 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri May 28 08:58:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ebd6bf
7
8 dev-php/xdebug-handler: bump to v2.0.1
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/xdebug-handler/Manifest | 1 +
14 dev-php/xdebug-handler/xdebug-handler-2.0.1.ebuild | 23 ++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-php/xdebug-handler/Manifest b/dev-php/xdebug-handler/Manifest
18 index 6f80b3a797a..7e641018ea3 100644
19 --- a/dev-php/xdebug-handler/Manifest
20 +++ b/dev-php/xdebug-handler/Manifest
21 @@ -1 +1,2 @@
22 DIST xdebug-handler-1.4.3.tar.gz 13660 BLAKE2B 2edbd2755102ced0183e6d7ade341ed830b4c1d923f453868d29f39aa7de5159758fd162a369246adf4551a8a06c0bc6f1a29921369e47ba645f9aed2707a5b3 SHA512 ed92ca769276e66611de3cf9d44a03fd163516b973486ac5339dfe9cd9fbab8fb5f754799f59505f03aa5eb4ad175e804c6e61d0a5db63a558edf7ef1aff438c
23 +DIST xdebug-handler-2.0.1.tar.gz 14212 BLAKE2B 01200a86794145132a4c8d1b851a3131d73c23ca33d27fa9da26988f48a6c0df3552322f8fad0559ac00adf1605f35a65aa21591bc221d239ad2d8cbf4c303cd SHA512 6cc1d336a82f1edf6fb9dd317d0275c79754eb7a01fa34e0cc85c24b0a02363ccb2ff42e8b692d90077745f4db8409e7e66bef64f30a89b364eff71a4af7f4f1
24
25 diff --git a/dev-php/xdebug-handler/xdebug-handler-2.0.1.ebuild b/dev-php/xdebug-handler/xdebug-handler-2.0.1.ebuild
26 new file mode 100644
27 index 00000000000..ad9f7604ad5
28 --- /dev/null
29 +++ b/dev-php/xdebug-handler/xdebug-handler-2.0.1.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Restart a CLI process without loading the xdebug extension"
37 +HOMEPAGE="https://github.com/composer/xdebug-handler"
38 +SRC_URI="https://github.com/composer/xdebug-handler/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +RDEPEND="
45 + dev-lang/php:*
46 + dev-php/fedora-autoloader
47 + >=dev-php/psr-log-1.0.2"
48 +
49 +src_install() {
50 + insinto /usr/share/php/Composer/XdebugHandler
51 + doins src/*.php "${FILESDIR}/autoload.php"
52 + dodoc README.md
53 +}