From: Michał Górny Date: Thu, 16 Nov 2017 18:40:28 +0000 (+0100) Subject: sys-devel/clang: Stop enforcing external lit for tests (in <9999) X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=36760bd16adda87265f594b93d0eccb91b7b7f79;p=gentoo.git sys-devel/clang: Stop enforcing external lit for tests (in <9999) Modify the ebuild to no longer enforce externally installed dev-python/lit for tests, effectively causing the build system to use the bundled copy of lit (along with llvm-lit). While using the external package is more canonical, its disadvantages outweight the gain. Most notably, lit is not slotted in Gentoo and the behavior of lit frequently changes subtly which caused us to require a major version match between LLVM and lit. As a result, attempting to build multiple slots of LLVM with tests enabled cause package collisions. Building both LLVM and lit simultaneously causes a circular dependency. Since lit comes from the same package as LLVM and clang requires it anyway for gtest, using the bundled copy has no added cost. However, the live ebuild is currently broken as it requires llvm-lit that is not created in the stand-alone build. This will be fixed upstream. --- diff --git a/sys-devel/clang/clang-4.0.1.ebuild b/sys-devel/clang/clang-4.0.1.ebuild index 1c7814d237e0..03fb42db1de0 100644 --- a/sys-devel/clang/clang-4.0.1.ebuild +++ b/sys-devel/clang/clang-4.0.1.ebuild @@ -38,7 +38,6 @@ RDEPEND=" # configparser-3.2 breaks the build (3.3 or none at all are fine) DEPEND="${RDEPEND} doc? ( dev-python/sphinx ) - test? ( ~dev-python/lit-${PV}[${PYTHON_USEDEP}] ) xml? ( virtual/pkgconfig ) !!