From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 765601382C5 for ; Mon, 14 Jun 2021 06:21:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92FB0E0E78; Mon, 14 Jun 2021 06:21:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74A12E0E78 for ; Mon, 14 Jun 2021 06:21:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 24C9E335CD8 for ; Mon, 14 Jun 2021 06:21:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B5CC75B for ; Mon, 14 Jun 2021 06:21:17 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1623651674.0148c8925bc9f84298fdd5c704ec4b49126f40c9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild sys-apps/pkgcore/pkgcore-0.12.1.ebuild X-VCS-Directories: sys-apps/pkgcore/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0148c8925bc9f84298fdd5c704ec4b49126f40c9 X-VCS-Branch: master Date: Mon, 14 Jun 2021 06:21:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 57b859aa-949f-40c6-a2e3-662b2f702e64 X-Archives-Hash: 60acf7b1f2cafb00ca9abcd197571d22 commit: 0148c8925bc9f84298fdd5c704ec4b49126f40c9 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 14 06:16:52 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 14 06:21:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0148c892 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 gentoo.org> sys-apps/pkgcore/{pkgcore-0.12.1.ebuild => pkgcore-0.12.1-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-apps/pkgcore/pkgcore-0.12.1.ebuild b/sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild similarity index 93% rename from sys-apps/pkgcore/pkgcore-0.12.1.ebuild rename to sys-apps/pkgcore/pkgcore-0.12.1-r1.ebuild index 1f9f32fa44e..7b0ac140b60 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