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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 42D0F15800A for ; Thu, 16 Jan 2025 18:59:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 680D8E0784; Thu, 16 Jan 2025 18:59:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2083E0784 for ; Thu, 16 Jan 2025 18:59:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22ED5343173 for ; Thu, 16 Jan 2025 18:59:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E621231C for ; Thu, 16 Jan 2025 18:59:29 +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: <1737053965.84c8e0daded778d9929266e30244055283902bf6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/fractal/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/fractal/fractal-10_rc-r1.ebuild net-im/fractal/fractal-10_rc.ebuild X-VCS-Directories: net-im/fractal/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 84c8e0daded778d9929266e30244055283902bf6 X-VCS-Branch: master Date: Thu, 16 Jan 2025 18:59:29 +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: f3368a0f-f4d0-43b4-b677-740d939f6e81 X-Archives-Hash: d203d8a3f5f165e1f70ef86108df35a4 commit: 84c8e0daded778d9929266e30244055283902bf6 Author: Michał Górny gentoo org> AuthorDate: Thu Jan 16 18:28:50 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 16 18:59:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c8e0da net-im/fractal: Force linking libwebp dynamically Bug: https://bugs.gentoo.org/947693 Signed-off-by: Michał Górny gentoo.org> net-im/fractal/{fractal-10_rc.ebuild => fractal-10_rc-r1.ebuild} | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/net-im/fractal/fractal-10_rc.ebuild b/net-im/fractal/fractal-10_rc-r1.ebuild similarity index 95% rename from net-im/fractal/fractal-10_rc.ebuild rename to net-im/fractal/fractal-10_rc-r1.ebuild index 34c61c462b8b..432f1735f3d2 100644 --- a/net-im/fractal/fractal-10_rc.ebuild +++ b/net-im/fractal/fractal-10_rc-r1.ebuild @@ -100,6 +100,14 @@ src_prepare() { # ignore upstream settings, they force debug symbols for release # and disable them for dev builds sed -i -e 's:profile\.:ignored.&:' Cargo.toml || die + + # force linking against libwebp dynamically + # https://github.com/NoXF/libwebp-sys/issues/17 + cat > "${ECARGO_VENDOR}/libwebp-sys-0.9.6/build.rs" <<-EOF || die + fn main() { + println!("cargo:rustc-link-lib=dylib=webp"); + } + EOF } src_configure() {