commit: a46e68ce01a88185686db7e1bbd0b95f43b8ee0c
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 16 20:08:09 2018 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Fri Feb 16 22:00:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a46e68ce
dev-php/PEAR-File_Fortune: Revbump to add tests and for EAPI/eclass
Package-Manager: Portage-2.3.24, Repoman-2.3.6
...ne-1.0.0.ebuild => PEAR-File_Fortune-1.0.0-r1.ebuild} | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0.ebuild
b/dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0-r1.ebuild
similarity index 53%
rename from dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0.ebuild
rename to dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0-r1.ebuild
index 1e33656d0fe..ec5a405cb60 100644
--- a/dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0.ebuild
+++ b/dev-php/PEAR-File_Fortune/PEAR-File_Fortune-1.0.0-r1.ebuild
@@ -1,16 +1,20 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-inherit php-pear-r1
+inherit php-pear-r2
DESCRIPTION="Interface for reading from and writing to fortune files"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
+IUSE="test"
-DEPEND=">=dev-lang/php-5.1.4:*"
-RDEPEND="${DEPEND}"
+RDEPEND=">=dev-lang/php-5.1.4:*"
+DEPEND="test? ( ${RDEPEND} dev-php/phpunit )"
+
+src_test(){
+ phpunit tests || die
+}