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 8768F15813A for ; Mon, 13 Jan 2025 11:38:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D412DE07FE; Mon, 13 Jan 2025 11:38:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B7BF7E0829 for ; Mon, 13 Jan 2025 11:38:34 +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 0962834164C for ; Mon, 13 Jan 2025 11:38:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EC1220E0 for ; Mon, 13 Jan 2025 11:38:31 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1736702891.5958bfb28afe8914b4b798f53ad10941b42220ca.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/swift/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/swift/swift-6.0.1-r1.ebuild dev-lang/swift/swift-6.0.1.ebuild dev-lang/swift/swift-6.0.2.ebuild dev-lang/swift/swift-6.0.3.ebuild X-VCS-Directories: dev-lang/swift/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 5958bfb28afe8914b4b798f53ad10941b42220ca X-VCS-Branch: master Date: Mon, 13 Jan 2025 11:38:31 +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: f18dabae-43b2-48a0-a9a0-d36b200329a3 X-Archives-Hash: ad502fbf0055675eaeabeb14e989bf07 commit: 5958bfb28afe8914b4b798f53ad10941b42220ca Author: Itai Ferber itaiferber net> AuthorDate: Sun Jan 12 17:28:11 2025 +0000 Commit: David Roman gmail com> CommitDate: Sun Jan 12 17:28:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5958bfb2 dev-lang/swift: add dev-cpp/tbb as a strong blocker for Swift 6 See https://bugs.gentoo.org/947141 Signed-off-by: Itai Ferber itaiferber.net> dev-lang/swift/swift-6.0.1-r1.ebuild | 12 ++++++++++++ dev-lang/swift/swift-6.0.1.ebuild | 12 ++++++++++++ dev-lang/swift/swift-6.0.2.ebuild | 12 ++++++++++++ dev-lang/swift/swift-6.0.3.ebuild | 12 ++++++++++++ 4 files changed, 48 insertions(+) diff --git a/dev-lang/swift/swift-6.0.1-r1.ebuild b/dev-lang/swift/swift-6.0.1-r1.ebuild index c3a52bc8d..86dc9abab 100644 --- a/dev-lang/swift/swift-6.0.1-r1.ebuild +++ b/dev-lang/swift/swift-6.0.1-r1.ebuild @@ -109,6 +109,18 @@ BDEPEND=" ' python3_{12..13}) " +# Swift 6 upstream currently doesn't build with oneTBB installed because Swift's +# `libstdcxx.h` includes ``, which, in combination with recent +# `libstdc++` versions, causes `tbb/execution` to get picked up; this results in +# a circular dependency back on the stdlib, failing the build. +# +# See: +# * https://bugs.gentoo.org/947141 +# * https://github.com/swiftlang/swift/issues/76166 +BDEPEND+=" + !!dev-cpp/tbb +" + # Adapted from `flag-o-matic.eclass`'s `raw-ldflags`: turns GCC-style flags # (`-Wl,-foo`) into Clang-style flags (`-Xlinker -foo`). clang-ldflags() { diff --git a/dev-lang/swift/swift-6.0.1.ebuild b/dev-lang/swift/swift-6.0.1.ebuild index 3b5cdb311..085c043de 100644 --- a/dev-lang/swift/swift-6.0.1.ebuild +++ b/dev-lang/swift/swift-6.0.1.ebuild @@ -108,6 +108,18 @@ BDEPEND=" ' python3_{12..13}) " +# Swift 6 upstream currently doesn't build with oneTBB installed because Swift's +# `libstdcxx.h` includes ``, which, in combination with recent +# `libstdc++` versions, causes `tbb/execution` to get picked up; this results in +# a circular dependency back on the stdlib, failing the build. +# +# See: +# * https://bugs.gentoo.org/947141 +# * https://github.com/swiftlang/swift/issues/76166 +BDEPEND+=" + !!dev-cpp/tbb +" + # Adapted from `flag-o-matic.eclass`'s `raw-ldflags`: turns GCC-style flags # (`-Wl,-foo`) into Clang-style flags (`-Xlinker -foo`). clang-ldflags() { diff --git a/dev-lang/swift/swift-6.0.2.ebuild b/dev-lang/swift/swift-6.0.2.ebuild index c3a52bc8d..86dc9abab 100644 --- a/dev-lang/swift/swift-6.0.2.ebuild +++ b/dev-lang/swift/swift-6.0.2.ebuild @@ -109,6 +109,18 @@ BDEPEND=" ' python3_{12..13}) " +# Swift 6 upstream currently doesn't build with oneTBB installed because Swift's +# `libstdcxx.h` includes ``, which, in combination with recent +# `libstdc++` versions, causes `tbb/execution` to get picked up; this results in +# a circular dependency back on the stdlib, failing the build. +# +# See: +# * https://bugs.gentoo.org/947141 +# * https://github.com/swiftlang/swift/issues/76166 +BDEPEND+=" + !!dev-cpp/tbb +" + # Adapted from `flag-o-matic.eclass`'s `raw-ldflags`: turns GCC-style flags # (`-Wl,-foo`) into Clang-style flags (`-Xlinker -foo`). clang-ldflags() { diff --git a/dev-lang/swift/swift-6.0.3.ebuild b/dev-lang/swift/swift-6.0.3.ebuild index c3a52bc8d..86dc9abab 100644 --- a/dev-lang/swift/swift-6.0.3.ebuild +++ b/dev-lang/swift/swift-6.0.3.ebuild @@ -109,6 +109,18 @@ BDEPEND=" ' python3_{12..13}) " +# Swift 6 upstream currently doesn't build with oneTBB installed because Swift's +# `libstdcxx.h` includes ``, which, in combination with recent +# `libstdc++` versions, causes `tbb/execution` to get picked up; this results in +# a circular dependency back on the stdlib, failing the build. +# +# See: +# * https://bugs.gentoo.org/947141 +# * https://github.com/swiftlang/swift/issues/76166 +BDEPEND+=" + !!dev-cpp/tbb +" + # Adapted from `flag-o-matic.eclass`'s `raw-ldflags`: turns GCC-style flags # (`-Wl,-foo`) into Clang-style flags (`-Xlinker -foo`). clang-ldflags() {