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-File/
Date: Fri, 16 Feb 2018 22:00:32
Message-Id: 1518818393.8653e35b0d514f667684a8ea3d106f08a0c4b1ed.grknight@gentoo
1 commit: 8653e35b0d514f667684a8ea3d106f08a0c4b1ed
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 16 19:50:47 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 16 21:59:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8653e35b
7
8 dev-php/PEAR-File: Revbump adding tests, EAPI and eclass changes
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-php/PEAR-File/PEAR-File-1.4.1-r1.ebuild | 18 ++++++++++++++++++
13 1 file changed, 18 insertions(+)
14
15 diff --git a/dev-php/PEAR-File/PEAR-File-1.4.1-r1.ebuild b/dev-php/PEAR-File/PEAR-File-1.4.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..e8b7c9181ee
18 --- /dev/null
19 +++ b/dev-php/PEAR-File/PEAR-File-1.4.1-r1.ebuild
20 @@ -0,0 +1,18 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit php-pear-r2
27 +
28 +DESCRIPTION="Common file and directory routines"
29 +
30 +LICENSE="PHP-3"
31 +SLOT="0"
32 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
33 +IUSE="test"
34 +DEPEND="test? ( dev-php/PEAR-PEAR )"
35 +
36 +src_test() {
37 + peardev run-tests -r tests || die
38 +}