summaryrefslogtreecommitdiff
path: root/dev-python/ipython/ipython-8.4.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/ipython/ipython-8.4.0.ebuild')
-rw-r--r--dev-python/ipython/ipython-8.4.0.ebuild8
1 files changed, 8 insertions, 0 deletions
diff --git a/dev-python/ipython/ipython-8.4.0.ebuild b/dev-python/ipython/ipython-8.4.0.ebuild
index bf72d46c9cb2..867a05be8b5c 100644
--- a/dev-python/ipython/ipython-8.4.0.ebuild
+++ b/dev-python/ipython/ipython-8.4.0.ebuild
@@ -89,6 +89,14 @@ python_prepare_all() {
# https://github.com/ipython/ipython/issues/12892
mv IPython/extensions/{,ipython_}tests || die
+ if ! grep -q __legacy__ pyproject.toml; then
+ die "pyproject.toml changed, please recheck"
+ fi
+
+ # remove pyproject.toml that specifies incorrect backend; since
+ # the package actually requires the legacy backend, force it implicitly
+ rm pyproject.toml || die
+
distutils-r1_python_prepare_all
}