diff options
author | 2021-06-14 08:16:52 +0200 | |
---|---|---|
committer | 2021-06-14 08:21:14 +0200 | |
commit | 0148c8925bc9f84298fdd5c704ec4b49126f40c9 (patch) | |
tree | a4f42529443d7bfd541e3d87abd50bd8baf2ac9d /sys-apps | |
parent | app-doc/pms-bin: EAPI 8 (diff) | |
download | gentoo-0148c8925bc9f84298fdd5c704ec4b49126f40c9.tar.gz gentoo-0148c8925bc9f84298fdd5c704ec4b49126f40c9.tar.bz2 gentoo-0148c8925bc9f84298fdd5c704ec4b49126f40c9.zip |
sys-apps/pkgcore: Add an explicit dep on bash-5.0+
EAPI 8 support requires bash-5.0+ to be present. For this reason,
pkgcore explicitly refuses to run on systems with older bash. Add a dep
to ensure that everything keeps working.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild (renamed from sys-apps/pkgcore/pkgcore-0.12.1.ebuild) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys-apps/pkgcore/pkgcore-0.12.1.ebuild b/sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild index 1f9f32fa44e3..7b0ac140b608 100644 --- a/sys-apps/pkgcore/pkgcore-0.12.1.ebuild +++ b/sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild @@ -20,7 +20,9 @@ HOMEPAGE="https://github.com/pkgcore/pkgcore" LICENSE="BSD MIT" SLOT="0" -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" +RDEPEND=" + >=app-shells/bash-5.0 + dev-python/lxml[${PYTHON_USEDEP}]" if [[ ${PV} == *9999 ]]; then RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]" else |