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-Mail/
Date: Mon, 19 Feb 2018 21:57:15
Message-Id: 1519076735.d852c2d46e73d6bae3ce1ae4eb1d6d94bf115b54.grknight@gentoo
1 commit: d852c2d46e73d6bae3ce1ae4eb1d6d94bf115b54
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 21:45:35 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 21:45:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d852c2d4
7
8 dev-php/PEAR-Mail: Revbump to include tests
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 .../{PEAR-Mail-1.4.1.ebuild => PEAR-Mail-1.4.1-r1.ebuild} | 9 +++++++--
13 1 file changed, 7 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-php/PEAR-Mail/PEAR-Mail-1.4.1.ebuild b/dev-php/PEAR-Mail/PEAR-Mail-1.4.1-r1.ebuild
16 similarity index 67%
17 rename from dev-php/PEAR-Mail/PEAR-Mail-1.4.1.ebuild
18 rename to dev-php/PEAR-Mail/PEAR-Mail-1.4.1-r1.ebuild
19 index 35429d9eafa..122fdc24a33 100644
20 --- a/dev-php/PEAR-Mail/PEAR-Mail-1.4.1.ebuild
21 +++ b/dev-php/PEAR-Mail/PEAR-Mail-1.4.1-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28 @@ -10,6 +10,11 @@ DESCRIPTION="Class that provides multiple interfaces for sending emails"
29 LICENSE="BSD"
30 SLOT="0"
31 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
32 -IUSE=""
33 +IUSE="test"
34
35 RDEPEND=">=dev-php/PEAR-Net_SMTP-1.4.1"
36 +DEPEND="test? ( ${RDEPEND} dev-php/PEAR-PEAR )"
37 +
38 +src_test() {
39 + peardev run-tests tests || die
40 +}