commit: 18ac7b8ae16c520519df2c10a6404b0b018f3e27
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 07:01:09 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 07:53:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ac7b8a
dev-python/doublex: Drop unnecessary die
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/doublex/doublex-1.7.ebuild | 7 ++++---
dev-python/doublex/doublex-1.8.1.ebuild | 7 ++++---
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/dev-python/doublex/doublex-1.7.ebuild
b/dev-python/doublex/doublex-1.7.ebuild
index 414cc62..4fbe1c8 100644
--- a/dev-python/doublex/doublex-1.7.ebuild
+++ b/dev-python/doublex/doublex-1.7.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
+
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
@@ -25,11 +26,11 @@ DEPEND="
RDEPEND=""
python_test() {
- esetup.py test || die "Tests failed under ${EPYTHON}"
+ esetup.py test
}
python_install_all() {
distutils-r1_python_install_all
- rm "${D}"/usr/README.rst || die "Couldn't remove spurious README.rst"
+ rm "${ED}"/usr/README.rst || die "Couldn't remove spurious README.rst"
}
diff --git a/dev-python/doublex/doublex-1.8.1.ebuild
b/dev-python/doublex/doublex-1.8.1.ebuild
index 84fe635..d803de8 100644
--- a/dev-python/doublex/doublex-1.8.1.ebuild
+++ b/dev-python/doublex/doublex-1.8.1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
+
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
inherit distutils-r1 vcs-snapshot
@@ -32,7 +33,7 @@ python_compile_all() {
}
python_test() {
- esetup.py test || die "Tests failed under ${EPYTHON}"
+ esetup.py test
}
python_install_all() {
@@ -40,5 +41,5 @@ python_install_all() {
distutils-r1_python_install_all
- rm "${D}"/usr/README.rst || die "Couldn't remove spurious README.rst"
+ rm "${ED}"/usr/README.rst || die "Couldn't remove spurious README.rst"
}