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 B07F3158096 for ; Thu, 18 Aug 2022 18:43:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 899FBE0837; Thu, 18 Aug 2022 18:43:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35501E07EF for ; Thu, 18 Aug 2022 18:43:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 373ED34146F for ; Thu, 18 Aug 2022 18:43:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2CE0576 for ; Thu, 18 Aug 2022 18:43:17 +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: <1660848134.73d224eb9affdf42105a607550bb33ba3f19310a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtracefs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtracefs/libtracefs-1.3.1.ebuild X-VCS-Directories: dev-libs/libtracefs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 73d224eb9affdf42105a607550bb33ba3f19310a X-VCS-Branch: master Date: Thu, 18 Aug 2022 18:43:17 +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: 5bc53d21-dc8e-4bc6-b47d-b60295b60dda X-Archives-Hash: 7c44c41e26813e334c1a332820a6c657 commit: 73d224eb9affdf42105a607550bb33ba3f19310a Author: brahmajit das protonmail com> AuthorDate: Thu Aug 18 18:28:21 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 18 18:42:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d224eb dev-libs/libtracefs: Fix wrong target install-doc and source-highlight dependency The make target install-doc is wrong and install_doc should be used in this package's case. gnu source-highlight is needed for source highlighting by asciidoc Closes: https://bugs.gentoo.org/865465 Closes: https://bugs.gentoo.org/865469 Signed-off-by: brahmajit das protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/26913 Signed-off-by: Sam James gentoo.org> dev-libs/libtracefs/libtracefs-1.3.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/libtracefs/libtracefs-1.3.1.ebuild b/dev-libs/libtracefs/libtracefs-1.3.1.ebuild index d5ffcefc4d9b..f3049d954da5 100644 --- a/dev-libs/libtracefs/libtracefs-1.3.1.ebuild +++ b/dev-libs/libtracefs/libtracefs-1.3.1.ebuild @@ -23,9 +23,10 @@ RDEPEND=" >=dev-libs/libtraceevent-1.3.0 " DEPEND="${RDEPEND}" +# source-highlight is needed, see bug https://bugs.gentoo.org/865469 BDEPEND=" virtual/pkgconfig - doc? ( app-text/xmlto app-text/asciidoc ) + doc? ( app-text/xmlto app-text/asciidoc dev-util/source-highlight ) " PATCHES=( @@ -51,5 +52,6 @@ src_install() { emake "${EMAKE_FLAGS[@]}" DESTDIR="${ED}" install # can't prevent installation of the static lib with parameters rm "${ED}/usr/$(get_libdir)/libtracefs.a" || die - use doc && emake "${EMAKE_FLAGS[@]}" DESTDIR="${ED}" install-doc + # install-doc is wrong target, see https://bugs.gentoo.org/865465 + use doc && emake "${EMAKE_FLAGS[@]}" DESTDIR="${ED}" install_doc }