diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2022-07-04 14:06:48 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2022-07-04 14:07:25 -0700 |
commit | c9bb6b7a34d3a72208e9cbfa9e6e3b8120e365fa (patch) | |
tree | cfcc86a6c2ea1f6eabbbaf793a349e4d36a16635 /app-shells | |
parent | app-shells/fish: add 3.5.0 (diff) | |
download | gentoo-c9bb6b7a34d3a72208e9cbfa9e6e3b8120e365fa.tar.gz gentoo-c9bb6b7a34d3a72208e9cbfa9e6e3b8120e365fa.tar.bz2 gentoo-c9bb6b7a34d3a72208e9cbfa9e6e3b8120e365fa.zip |
app-shells/fish: sync live ebuild
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/fish/fish-9999.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app-shells/fish/fish-9999.ebuild b/app-shells/fish/fish-9999.ebuild index de44bf1d4092..d0328d498838 100644 --- a/app-shells/fish/fish-9999.ebuild +++ b/app-shells/fish/fish-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit cmake python-any-r1 readme.gentoo-r1 @@ -94,7 +94,13 @@ src_test() { rm -v tests/pexpects/terminal.py || die fi + # zfs completion test will fail with "Permission denied the ZFS utilities must be run as root." + mv "${S}"/share/completions/zfs.{fish,disabled} || die + cmake_build test + + # now restore zfs completions + mv "${S}"/share/completions/zfs.{disabled,fish} || die } pkg_postinst() { |