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 B8C55138334 for ; Sat, 13 Apr 2019 04:14:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2104E07D4; Sat, 13 Apr 2019 04:14:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A50CEE07D4 for ; Sat, 13 Apr 2019 04:14:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 241C6340D3A for ; Sat, 13 Apr 2019 04:14:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9761359F for ; Sat, 13 Apr 2019 04:14:09 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1555128841.5cfed9ef168f047ff675081482302d5506061caa.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jq/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jq/jq-1.6-r3.ebuild X-VCS-Directories: app-misc/jq/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 5cfed9ef168f047ff675081482302d5506061caa X-VCS-Branch: master Date: Sat, 13 Apr 2019 04:14:09 +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: 9d2276bf-e3e7-4898-8396-441fedca41de X-Archives-Hash: afadf877e1c131de2500505a7c4385d2 commit: 5cfed9ef168f047ff675081482302d5506061caa Author: Robin H. Johnson gentoo org> AuthorDate: Sat Apr 13 04:14:01 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat Apr 13 04:14:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfed9ef app-misc/jq: ensure min version of oniguruma Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Robin H. Johnson gentoo.org> app-misc/jq/jq-1.6-r3.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-misc/jq/jq-1.6-r3.ebuild b/app-misc/jq/jq-1.6-r3.ebuild index 036113cf531..47148ec39ad 100644 --- a/app-misc/jq/jq-1.6-r3.ebuild +++ b/app-misc/jq/jq-1.6-r3.ebuild @@ -14,14 +14,15 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos" IUSE="oniguruma static-libs" +ONIGURUMA_MINPV='>=dev-libs/oniguruma-6.1.3' # Keep this in sync with bundled modules/oniguruma/ DEPEND=" >=sys-devel/bison-3.0 sys-devel/flex - oniguruma? ( dev-libs/oniguruma:=[static-libs?] ) + oniguruma? ( ${ONIGURUMA_MINPV}:=[static-libs?] ) " RDEPEND=" !static-libs? ( - oniguruma? ( dev-libs/oniguruma[static-libs?] ) + oniguruma? ( ${ONIGURUMA_MINPV}[static-libs?] ) ) "