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 E4198138335 for ; Sun, 16 Jun 2019 21:57:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB7BAE0886; Sun, 16 Jun 2019 21:57:35 +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 B5362E0884 for ; Sun, 16 Jun 2019 21:57:35 +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 42B4434627E for ; Sun, 16 Jun 2019 21:57:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B6E661C for ; Sun, 16 Jun 2019 21:57:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1560722225.ab971009926b4f69c8864993c31bafe7064a601c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/cryfs/cryfs-9999.ebuild X-VCS-Directories: sys-fs/cryfs/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ab971009926b4f69c8864993c31bafe7064a601c X-VCS-Branch: master Date: Sun, 16 Jun 2019 21:57:32 +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: f4a36cab-bd11-432a-9a14-61a1f20993a9 X-Archives-Hash: d78b7f014fde30cac5095d7db5d0a20c commit: ab971009926b4f69c8864993c31bafe7064a601c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 16 18:01:00 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 16 21:57:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab971009 sys-fs/cryfs: Manually install manpage, don't compress/uncompress Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-fs/cryfs/cryfs-9999.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-fs/cryfs/cryfs-9999.ebuild b/sys-fs/cryfs/cryfs-9999.ebuild index 0162f8ddc28..a40f623dfb9 100644 --- a/sys-fs/cryfs/cryfs-9999.ebuild +++ b/sys-fs/cryfs/cryfs-9999.ebuild @@ -39,6 +39,9 @@ DEPEND="${RDEPEND} src_prepare() { cmake-utils_src_prepare + # don't install compressed manpage + cmake_comment_add_subdirectory doc + # remove tests that require internet access to comply with Gentoo policy sed -e "/CurlHttpClientTest.cpp/d" -e "/FakeHttpClientTest.cpp/d" \ -i test/cpp-utils/CMakeLists.txt || die @@ -85,7 +88,6 @@ src_install() { # work around upstream issue with cmake not creating install target # in Makefile if we enable BUILD_TESTING dobin "${BUILD_DIR}/src/cryfs-cli/cryfs" - gzip -cd "${BUILD_DIR}/doc/cryfs.1.gz" > "${T}/cryfs.1" || die - doman "${T}/cryfs.1" + doman doc/man/cryfs.1 einstalldocs }