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 4B64F1581F3 for ; Tue, 26 Nov 2024 06:57:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F074E07EA; Tue, 26 Nov 2024 06:57:57 +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 9B0D6E07EA for ; Tue, 26 Nov 2024 06:57:56 +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 79C5034306B for ; Tue, 26 Nov 2024 06:57:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA92E11DF for ; Tue, 26 Nov 2024 06:57:53 +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: <1732604244.47a1659756941700c8c6103722100bb4fb70533e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblogging/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liblogging/liblogging-1.0.7.ebuild X-VCS-Directories: dev-libs/liblogging/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 47a1659756941700c8c6103722100bb4fb70533e X-VCS-Branch: master Date: Tue, 26 Nov 2024 06:57:53 +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: 8aa41b9e-faea-4426-a2c6-5058e55bb401 X-Archives-Hash: 05085784f3917a1f299356b5266a347c commit: 47a1659756941700c8c6103722100bb4fb70533e Author: Z. Liu gmail com> AuthorDate: Tue Nov 26 06:46:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 26 06:57:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a16597 dev-libs/liblogging: add BDEPEND on dev-python/docutils otherwise, configure will failed with error: rst2man is required to build man pages. You can use the release tarball with pregenerated man pages to avoid this depedency. Alternatively, use --disable-man-pages to build without them. [sam: Unfortunately, AFAICT, the release tarball doesn't exist for 1.0.7.] Closes: https://bugs.gentoo.org/944743 Signed-off-by: Z. Liu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39477 Signed-off-by: Sam James gentoo.org> dev-libs/liblogging/liblogging-1.0.7.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/liblogging/liblogging-1.0.7.ebuild b/dev-libs/liblogging/liblogging-1.0.7.ebuild index 9d945e871e28..768ab4bc3c6d 100644 --- a/dev-libs/liblogging/liblogging-1.0.7.ebuild +++ b/dev-libs/liblogging/liblogging-1.0.7.ebuild @@ -17,7 +17,10 @@ IUSE="systemd" RDEPEND="systemd? ( sys-apps/systemd )" DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" +BDEPEND=" + dev-python/docutils + virtual/pkgconfig +" DOCS=( ChangeLog )