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 B750215808B for ; Sun, 18 Feb 2024 13:23:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96D49E2CA5; Sun, 18 Feb 2024 13:23:44 +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 7373DE2CA1 for ; Sun, 18 Feb 2024 13:23:44 +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 8051B34312B for ; Sun, 18 Feb 2024 13:23:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 191061065 for ; Sun, 18 Feb 2024 13:23:42 +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: <1708262608.615c3f47433f84628219a8fb54dd9835600069f5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/llvm.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 615c3f47433f84628219a8fb54dd9835600069f5 X-VCS-Branch: master Date: Sun, 18 Feb 2024 13:23:42 +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: 3ce90171-dd00-4dbc-8ed1-9865cb480cbc X-Archives-Hash: e9479c606c69e421f349361293beb087 commit: 615c3f47433f84628219a8fb54dd9835600069f5 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 17 17:10:26 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 18 13:23:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615c3f47 llvm.org.eclass: Stop defaulting to +doc for 18+ Signed-off-by: Michał Górny gentoo.org> eclass/llvm.org.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass index e3728a827710..ff10a4384789 100644 --- a/eclass/llvm.org.eclass +++ b/eclass/llvm.org.eclass @@ -268,17 +268,17 @@ llvm.org_set_globals() { fi if [[ ${LLVM_MANPAGES} ]]; then + IUSE+=" doc" + # use pregenerated tarball if available local manpage_dist=$(llvm_manpage_get_dist) if [[ -n ${manpage_dist} ]]; then - IUSE+=" doc" SRC_URI+=" !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/${manpage_dist} ) " else - IUSE+=" +doc" # NB: this is not always the correct dep but it does no harm BDEPEND+=" dev-python/sphinx" fi