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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86624138334 for ; Tue, 31 Dec 2019 02:41:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A0EEE0D73; Tue, 31 Dec 2019 02:41:30 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82D4AE0D73 for ; Tue, 31 Dec 2019 02:41:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4EEA34DD79 for ; Tue, 31 Dec 2019 02:41:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8DBC7F for ; Tue, 31 Dec 2019 02:41:27 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1577759731.c3afe9b0972272a1914dc981ba547a06ff693a38.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: patches/thin-provisioning-tools/0.8.5/ X-VCS-Repository: proj/genkernel X-VCS-Files: patches/thin-provisioning-tools/0.8.5/thin-provisioning-tools-0.8.5-no-manpages.patch X-VCS-Directories: patches/thin-provisioning-tools/0.8.5/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: c3afe9b0972272a1914dc981ba547a06ff693a38 X-VCS-Branch: master Date: Tue, 31 Dec 2019 02:41:27 +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: e5a82c66-deed-41d5-8171-2fc2c52deb84 X-Archives-Hash: 320e359d723b85367588f24b35650a0f commit: c3afe9b0972272a1914dc981ba547a06ff693a38 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Dec 31 02:27:58 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Dec 31 02:35:31 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c3afe9b0 gkbuilds/thin-provisioning-tools: Don't generate man pages Package is shipping own txt2man utility which tries to use ksh in some situations causing a build failure when ksh isn't present. However, we don't need man pages. This commit will add a patch which will skip generation of man pages. Closes: https://bugs.gentoo.org/704330 Signed-off-by: Thomas Deutschmann gentoo.org> ...thin-provisioning-tools-0.8.5-no-manpages.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/patches/thin-provisioning-tools/0.8.5/thin-provisioning-tools-0.8.5-no-manpages.patch b/patches/thin-provisioning-tools/0.8.5/thin-provisioning-tools-0.8.5-no-manpages.patch new file mode 100644 index 0000000..25f6381 --- /dev/null +++ b/patches/thin-provisioning-tools/0.8.5/thin-provisioning-tools-0.8.5-no-manpages.patch @@ -0,0 +1,27 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -279,7 +279,7 @@ TOOLS:=\ + + MANPAGES:=$(patsubst %,man8/%.8,$(TOOLS)) + +-install: bin/pdata_tools $(MANPAGES) ++install: bin/pdata_tools + $(INSTALL_DIR) $(BINDIR) + $(INSTALL_PROGRAM) bin/pdata_tools $(BINDIR) + $(STRIP) $(BINDIR)/pdata_tools +@@ -302,6 +302,7 @@ install: bin/pdata_tools $(MANPAGES) + ln -s -f pdata_tools $(BINDIR)/era_dump + ln -s -f pdata_tools $(BINDIR)/era_invalidate + ln -s -f pdata_tools $(BINDIR)/era_restore ++ifeq ("@INSTALLMANPAGES@", "yes") + $(INSTALL_DIR) $(MANPATH)/man8 + $(INSTALL_DATA) man8/cache_check.8 $(MANPATH)/man8 + $(INSTALL_DATA) man8/cache_dump.8 $(MANPATH)/man8 +@@ -322,6 +323,7 @@ install: bin/pdata_tools $(MANPAGES) + $(INSTALL_DATA) man8/era_restore.8 $(MANPATH)/man8 + $(INSTALL_DATA) man8/era_invalidate.8 $(MANPATH)/man8 + $(INSTALL_DATA) man8/thin_trim.8 $(MANPATH)/man8 ++endif + ifeq ("@DEVTOOLS@", "yes") + ln -s -f pdata_tools $(BINDIR)/thin_show_duplicates + ln -s -f pdata_tools $(BINDIR)/thin_ll_dump