diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-06-29 17:08:42 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-06-29 17:08:54 +0200 |
commit | 213fddaa1190e65aba34fb8ddcd5d719aa05ddb1 (patch) | |
tree | 53bd5531858216b23e32388d1e2dae35c4746c7f /dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild | |
parent | dev-php/composer: bump to v1.10.8 (diff) | |
download | gentoo-213fddaa1190e65aba34fb8ddcd5d719aa05ddb1.tar.gz gentoo-213fddaa1190e65aba34fb8ddcd5d719aa05ddb1.tar.bz2 gentoo-213fddaa1190e65aba34fb8ddcd5d719aa05ddb1.zip |
dev-php/PEAR-Mail_Mime: bump to v1.10.9
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild')
-rw-r--r-- | dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild new file mode 100644 index 000000000000..a88d469a1fcd --- /dev/null +++ b/dev-php/PEAR-Mail_Mime/PEAR-Mail_Mime-1.10.9.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit php-pear-r2 + +DESCRIPTION="Create and manipulate mime messages with PHP" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-php/PEAR-PEAR )" + +src_test() { + # Requires the "pear" executable from dev-php/PEAR-PEAR. + pear run-tests tests || die + + # The command succeeds regardless of whether or not the test suite + # passed, but this file is only written when there was a failure. + [[ -f run-tests.log ]] && die "test suite failed" +} |