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 331E3158086 for ; Tue, 11 Jan 2022 04:33:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A8B12BC025; Tue, 11 Jan 2022 04:33:30 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6B022BC025 for ; Tue, 11 Jan 2022 04:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 65B09343226 for ; Tue, 11 Jan 2022 04:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C035E287 for ; Tue, 11 Jan 2022 04:33:25 +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: <1641875597.7b00b0d50adbead8ba39f90f90fe27d0b8a4aac6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/nlohmann_json/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild X-VCS-Directories: dev-cpp/nlohmann_json/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7b00b0d50adbead8ba39f90f90fe27d0b8a4aac6 X-VCS-Branch: master Date: Tue, 11 Jan 2022 04:33:25 +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: 35e6ece9-6598-4c6b-b8ce-d8485bbf5d81 X-Archives-Hash: 09466a71f65d90ea8d5b51b9f7dfda78 commit: 7b00b0d50adbead8ba39f90f90fe27d0b8a4aac6 Author: Sam James gentoo org> AuthorDate: Tue Jan 11 04:32:45 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 11 04:33:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b00b0d5 dev-cpp/nlohmann_json: disable docs in 3.10.5 I tried to package the needed bits but they end up needing network at runtime, it seems. Closes: https://bugs.gentoo.org/830862 Signed-off-by: Sam James gentoo.org> dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild b/dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild index 0ac3b7c9dd07..8bc260638ed9 100644 --- a/dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild +++ b/dev-cpp/nlohmann_json/nlohmann_json-3.10.5.ebuild @@ -3,6 +3,11 @@ EAPI=8 +#DOCS_BUILDER="mkdocs" +# Needs unpackaged plantuml-markdown too +# ... but plantuml (Python bindings anyway) need network access to generate bits at runtime. +#DOCS_DEPEND="dev-python/mkdocs-material-extensions dev-python/mkdocs-minify-plugin" +#DOCS_DIR="doc/mkdocs" inherit cmake # Check https://github.com/nlohmann/json/blob/develop/cmake/download_test_data.cmake to find test archive version @@ -17,13 +22,11 @@ S="${WORKDIR}/json-${PV}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" -IUSE="doc test" +IUSE="test" # Need to report failing tests upstream # Tests only just added, large test suite, majority pass RESTRICT="test" -BDEPEND="doc? ( app-doc/doxygen )" - DOCS=( ChangeLog.md README.md ) src_configure() { @@ -41,11 +44,6 @@ src_configure() { src_compile() { cmake_src_compile - - if use doc; then - emake -C doc - HTML_DOCS=( doc/html/. ) - fi } src_test() {