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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F438158020 for ; Fri, 11 Nov 2022 11:39:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60C18E08F4; Fri, 11 Nov 2022 11:39:09 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48FF0E08F4 for ; Fri, 11 Nov 2022 11:39:09 +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 6B689340F5D for ; Fri, 11 Nov 2022 11:39:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF3455F7 for ; Fri, 11 Nov 2022 11:39:06 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1668166603.675a146d9e0476478e62e8e647cc3d3bcdde8991.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/mold/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/mold/mold-9999.ebuild X-VCS-Directories: sys-devel/mold/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 675a146d9e0476478e62e8e647cc3d3bcdde8991 X-VCS-Branch: master Date: Fri, 11 Nov 2022 11:39:06 +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: fd9d173f-7a9e-473a-8c06-3c2d95a9b43a X-Archives-Hash: dab084ec88da3463b206bc4c135ce74f commit: 675a146d9e0476478e62e8e647cc3d3bcdde8991 Author: Matthew Smith gentoo org> AuthorDate: Fri Nov 11 11:36:43 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Fri Nov 11 11:36:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=675a146d sys-devel/mold: update live ebuild Signed-off-by: Matthew Smith gentoo.org> sys-devel/mold/mold-9999.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/sys-devel/mold/mold-9999.ebuild b/sys-devel/mold/mold-9999.ebuild index 34d7e10e3bf1..45c7fd085eb8 100644 --- a/sys-devel/mold/mold-9999.ebuild +++ b/sys-devel/mold/mold-9999.ebuild @@ -12,20 +12,18 @@ if [[ ${PV} == 9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~riscv" + KEYWORDS="~amd64 ~riscv ~x86" fi # mold (AGPL-3) # - xxhash (BSD-2) -# - tbb (Apache-2.0) -LICENSE="AGPL-3 Apache-2.0 BSD-2" +LICENSE="AGPL-3 BSD-2" SLOT="0" -IUSE="system-tbb" RDEPEND=" app-arch/zstd:= + >=dev-cpp/tbb-2021.7.0:= sys-libs/zlib - system-tbb? ( >=dev-cpp/tbb-2021.4.0:= ) !kernel_Darwin? ( >=dev-libs/mimalloc-2:= dev-libs/openssl:= @@ -75,7 +73,7 @@ src_configure() { -DMOLD_ENABLE_QEMU_TESTS=OFF -DMOLD_LTO=OFF # Should be up to the user to decide this with CXXFLAGS. -DMOLD_USE_SYSTEM_MIMALLOC=ON - -DMOLD_USE_SYSTEM_TBB=$(usex system-tbb) + -DMOLD_USE_SYSTEM_TBB=ON ) cmake_src_configure }