commit: 40036849cf873f3a043289217a91da2e7561e55e
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 3 08:43:05 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 3 08:43:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40036849
dev-python/redbaron: use python_prepare_all
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/redbaron/redbaron-0.9.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild
b/dev-python/redbaron/redbaron-0.9.ebuild
index 1623ecc..c323226 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -28,12 +28,12 @@ distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/ipython
-src_prepare() {
- default
-
+python_prepare_all() {
# Remove "__pycache__". Reason: unique basename
rm -rfd "${S}"/tests/__pycache__ || die
# Skip tests. Reason: calls fixture "red" directly
rm "${S}"/tests/test_bounding_box.py || die
+
+ distutils-r1_python_prepare_all
}