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 16F08158094 for ; Thu, 8 Sep 2022 00:23:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44752E0A80; Thu, 8 Sep 2022 00:23:25 +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 26F27E0A80 for ; Thu, 8 Sep 2022 00:23:25 +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 F2414341160 for ; Thu, 8 Sep 2022 00:23:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D9F85B1 for ; Thu, 8 Sep 2022 00:23:19 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1662596559.7328940e2833ec9478d81745c609423b4c251b28.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pax-utils/, app-misc/pax-utils/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pax-utils/files/pax-utils-1.3.5-man-reorder-xmlto-arguments.patch app-misc/pax-utils/pax-utils-1.3.5.ebuild X-VCS-Directories: app-misc/pax-utils/files/ app-misc/pax-utils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 7328940e2833ec9478d81745c609423b4c251b28 X-VCS-Branch: master Date: Thu, 8 Sep 2022 00:23:19 +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: 2bde15f9-acf3-4313-b4f4-2e69b52264c2 X-Archives-Hash: 65e339caed434d6b55dc8594028182b5 commit: 7328940e2833ec9478d81745c609423b4c251b28 Author: Mike Gilbert gentoo org> AuthorDate: Thu Sep 8 00:20:45 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Sep 8 00:22:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7328940e app-misc/pax-utils: apply patch to reorder xmlto arguments Closes: https://bugs.gentoo.org/869110 Signed-off-by: Mike Gilbert gentoo.org> ...x-utils-1.3.5-man-reorder-xmlto-arguments.patch | 30 ++++++++++++++++++++++ app-misc/pax-utils/pax-utils-1.3.5.ebuild | 4 +++ 2 files changed, 34 insertions(+) diff --git a/app-misc/pax-utils/files/pax-utils-1.3.5-man-reorder-xmlto-arguments.patch b/app-misc/pax-utils/files/pax-utils-1.3.5-man-reorder-xmlto-arguments.patch new file mode 100644 index 000000000000..909c69e096c6 --- /dev/null +++ b/app-misc/pax-utils/files/pax-utils-1.3.5-man-reorder-xmlto-arguments.patch @@ -0,0 +1,30 @@ +From 2d981305b117b669c60bede076557c2d765cf198 Mon Sep 17 00:00:00 2001 +From: Mike Gilbert +Date: Wed, 7 Sep 2022 20:13:00 -0400 +Subject: [PATCH] man: reorder xmlto arguments + +Bug: https://bugs.gentoo.org/869110 +Thanks-to: Fabian Groffen +Signed-off-by: Mike Gilbert +--- + man/meson.build | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/man/meson.build b/man/meson.build +index fc8d183..2e346ec 100644 +--- a/man/meson.build ++++ b/man/meson.build +@@ -25,8 +25,8 @@ endforeach + + custom_target('docbook_to_man', + command : [ +- xmlto, 'man', '-x', files('custom.xsl'), '--skip-validation', book, +- '-o', meson.current_build_dir() ++ xmlto, '-x', files('custom.xsl'), '--skip-validation', ++ '-o', meson.current_build_dir(), 'man', book + ], + input : [ + 'pax-utils.docbook.in', 'custom.xsl', 'fragment/reftail', +-- +2.37.3 + diff --git a/app-misc/pax-utils/pax-utils-1.3.5.ebuild b/app-misc/pax-utils/pax-utils-1.3.5.ebuild index 1b90ea8c3bf9..c0464ce0aa15 100644 --- a/app-misc/pax-utils/pax-utils-1.3.5.ebuild +++ b/app-misc/pax-utils/pax-utils-1.3.5.ebuild @@ -51,6 +51,10 @@ RESTRICT=" !test? ( test ) " +PATCHES=( + "${FILESDIR}/pax-utils-1.3.5-man-reorder-xmlto-arguments.patch" +) + pkg_setup() { if use test || use python; then python-single-r1_pkg_setup