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 59211138334 for ; Tue, 31 Dec 2019 06:31:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09A67E0D71; Tue, 31 Dec 2019 06:31:25 +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 E21DFE0D71 for ; Tue, 31 Dec 2019 06:31:24 +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 C9EBB34DD43 for ; Tue, 31 Dec 2019 06:31:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7533079 for ; Tue, 31 Dec 2019 06:31:20 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1577773856.81a7a1b371526581bcc6d5671c8952d5a412ea57.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ripgrep/ripgrep-11.0.2.ebuild X-VCS-Directories: sys-apps/ripgrep/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 81a7a1b371526581bcc6d5671c8952d5a412ea57 X-VCS-Branch: master Date: Tue, 31 Dec 2019 06:31:20 +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: 67528862-e75e-481a-abb0-83ff7d6953b1 X-Archives-Hash: 05e5a77bf920c0171024eceff73fe160 commit: 81a7a1b371526581bcc6d5671c8952d5a412ea57 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Dec 31 06:23:46 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Dec 31 06:30:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a7a1b3 sys-apps/ripgrep: allow building on musl Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Georgy Yakovlev gentoo.org> sys-apps/ripgrep/ripgrep-11.0.2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-apps/ripgrep/ripgrep-11.0.2.ebuild b/sys-apps/ripgrep/ripgrep-11.0.2.ebuild index fb7f5349baa..b01fadb1650 100644 --- a/sys-apps/ripgrep/ripgrep-11.0.2.ebuild +++ b/sys-apps/ripgrep/ripgrep-11.0.2.ebuild @@ -95,6 +95,9 @@ BDEPEND="${RDEPEND} QA_FLAGS_IGNORED="usr/bin/rg" src_compile() { + # allow building on musl with dynamic linking support + # https://github.com/BurntSushi/rust-pcre2/issues/7 + use elibc_musl && export PCRE2_SYS_STATIC=0 cargo_src_compile $(usex pcre "--features pcre2" "") }