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 C91661581FB for ; Sun, 1 Dec 2024 11:47:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A29DE0801; Sun, 1 Dec 2024 11:47:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 11B3BE0801 for ; Sun, 1 Dec 2024 11:47:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35745341939 for ; Sun, 1 Dec 2024 11:47:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C23BFF96 for ; Sun, 1 Dec 2024 11:47:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1733053550.314887d18d26fd62e8021b7093d8e7cd1f9681f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/folly/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/folly/folly-2024.11.04.00-r1.ebuild dev-cpp/folly/folly-2024.11.04.00-r2.ebuild X-VCS-Directories: dev-cpp/folly/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 314887d18d26fd62e8021b7093d8e7cd1f9681f9 X-VCS-Branch: master Date: Sun, 1 Dec 2024 11:47: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: 6e7446a1-4d7a-42c2-b18d-e8d64e35c88a X-Archives-Hash: af6600492edd733978d42db89276af20 commit: 314887d18d26fd62e8021b7093d8e7cd1f9681f9 Author: sin-ack protonmail com> AuthorDate: Sat Nov 23 21:54:32 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 11:45:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314887d1 dev-cpp/folly: install cmake files in the correct libdir All Facebook packages unconditionally install libraries to PREFIX/lib, which triggers multilib checks. The checks don't trigger for stuff like CMake files though, so this was missed. This matches the other Facebook packages like Watchman and its dependencies. Signed-off-by: sin-ack protonmail.com> Signed-off-by: Sam James gentoo.org> .../{folly-2024.11.04.00-r1.ebuild => folly-2024.11.04.00-r2.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild b/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild similarity index 97% rename from dev-cpp/folly/folly-2024.11.04.00-r1.ebuild rename to dev-cpp/folly/folly-2024.11.04.00-r2.ebuild index fd2b8493af92..44a95b28d09a 100644 --- a/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild +++ b/dev-cpp/folly/folly-2024.11.04.00-r2.ebuild @@ -67,6 +67,7 @@ src_unpack() { src_configure() { # TODO: liburing could in theory be optional but fails to link local mycmakeargs=( + -DCMAKE_INSTALL_DIR="$(get_libdir)/cmake/${PN}" -DLIB_INSTALL_DIR="$(get_libdir)" -DBUILD_TESTS=$(usex test)