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 1D74C138334 for ; Mon, 14 Oct 2019 07:51:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 574FAE086E; Mon, 14 Oct 2019 07:51:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3F86CE086E for ; Mon, 14 Oct 2019 07:51:17 +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 0C23134BCE5 for ; Mon, 14 Oct 2019 07:51:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21F0171A for ; Mon, 14 Oct 2019 07:51:14 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1571039457.3e3fa64d749106dca66d1c4b486833f1d3df28c8.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/readline/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/readline/readline-7.0_p5-r1.ebuild sys-libs/readline/readline-7.0_p5.ebuild X-VCS-Directories: sys-libs/readline/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3e3fa64d749106dca66d1c4b486833f1d3df28c8 X-VCS-Branch: master Date: Mon, 14 Oct 2019 07:51:14 +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: 5a623d38-e75b-4ebe-9c6f-a610bee28928 X-Archives-Hash: 2aa4b83834a850bc980c573387277169 commit: 3e3fa64d749106dca66d1c4b486833f1d3df28c8 Author: Lars Wendler gentoo org> AuthorDate: Mon Oct 14 07:50:57 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Oct 14 07:50:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e3fa64d sys-libs/readline: Introduced "unicode" USE flag in stable as well Bug: https://bugs.gentoo.org/669214 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Lars Wendler gentoo.org> .../readline/{readline-7.0_p5.ebuild => readline-7.0_p5-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-libs/readline/readline-7.0_p5.ebuild b/sys-libs/readline/readline-7.0_p5-r1.ebuild similarity index 96% rename from sys-libs/readline/readline-7.0_p5.ebuild rename to sys-libs/readline/readline-7.0_p5-r1.ebuild index 04e6ade437a..0facdfe5f11 100644 --- a/sys-libs/readline/readline-7.0_p5.ebuild +++ b/sys-libs/readline/readline-7.0_p5-r1.ebuild @@ -42,9 +42,9 @@ esac LICENSE="GPL-3" SLOT="0/7" # subslot matches SONAME major KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sparc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs utils" +IUSE="static-libs +unicode utils" -RDEPEND=">=sys-libs/ncurses-5.9-r3:0=[static-libs?,${MULTILIB_USEDEP}]" +RDEPEND=">=sys-libs/ncurses-5.9-r3:0=[static-libs?,unicode?,${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -70,7 +70,7 @@ src_prepare() { # Force ncurses linking. #71420 # Use pkg-config to get the right values. #457558 - local ncurses_libs=$($(tc-getPKG_CONFIG) ncurses --libs) + local ncurses_libs=$($(tc-getPKG_CONFIG) ncurses$(usex unicode w '') --libs) sed -i \ -e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \ support/shobj-conf || die