Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_Getargs/
Date: Tue, 13 Feb 2018 16:18:03
Message-Id: 1518538656.87fdf733c9aa35a17faae23f78156c62bb2fcce6.grknight@gentoo
1 commit: 87fdf733c9aa35a17faae23f78156c62bb2fcce6
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 13 16:03:57 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 13 16:17:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87fdf733
7
8 dev-php/PEAR-Console_Getargs: Version bump to 1.4.0 with PHP 7 support
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-php/PEAR-Console_Getargs/Manifest | 1 +
13 .../PEAR-Console_Getargs-1.4.0.ebuild | 19 +++++++++++++++++++
14 2 files changed, 20 insertions(+)
15
16 diff --git a/dev-php/PEAR-Console_Getargs/Manifest b/dev-php/PEAR-Console_Getargs/Manifest
17 index 93c8bd57419..2558677dcd3 100644
18 --- a/dev-php/PEAR-Console_Getargs/Manifest
19 +++ b/dev-php/PEAR-Console_Getargs/Manifest
20 @@ -1 +1,2 @@
21 DIST Console_Getargs-1.3.5.tgz 18207 BLAKE2B d68ea1220700d43a9d7a0844d8659f9e95b377f9a9c609501d0b325083013ac220367c98b545917066e952a8c304703dddf920cdb80c129f222873934895822e SHA512 2e79bfc3947dbce928ae592d825ea16414de147a10f7c41a896d9a557c40a1e83842e39de6e6a78918d91235da73307f84b837a3d049b36cacd202c4b8aa7fd6
22 +DIST Console_Getargs-1.4.0.tgz 18267 BLAKE2B c0aab73414a0b6dec9818faa2eae4a4f54d70168d089bb64497599e88f4b8ff86e4195e3705a75bece25f6c7d1054759b846be75f7fc749f1d50b4447ad9ec50 SHA512 927777f48599f64e2cdb05b80a473741718493e9efc20988f2993e6b092852f1432e2e9732c1470f7d580fc7e4000d563b7915a94305fe572b7f6dc27da0858e
23
24 diff --git a/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.4.0.ebuild b/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.4.0.ebuild
25 new file mode 100644
26 index 00000000000..58692f2f12e
27 --- /dev/null
28 +++ b/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.4.0.ebuild
29 @@ -0,0 +1,19 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +inherit php-pear-r2
36 +
37 +DESCRIPTION="A command-line arguments parser"
38 +
39 +LICENSE="PHP-3"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
42 +IUSE="test"
43 +
44 +DEPEND="test? ( dev-php/phpunit )"
45 +
46 +src_test() {
47 + phpunit tests/ || die
48 +}