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 2F72F158003 for ; Sat, 2 Oct 2021 08:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C7F6E0869; Sat, 2 Oct 2021 08:59:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52BA6E0869 for ; Sat, 2 Oct 2021 08:59:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E543342DCE for ; Sat, 2 Oct 2021 08:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBA27107 for ; Sat, 2 Oct 2021 08:59:17 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1633165150.54d9b288b40c29c2ab6ac0b1dcaafeb335757452.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/linux-logo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/linux-logo/linux-logo-6.0.ebuild X-VCS-Directories: app-misc/linux-logo/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 54d9b288b40c29c2ab6ac0b1dcaafeb335757452 X-VCS-Branch: master Date: Sat, 2 Oct 2021 08:59: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: 06a7681b-435a-4fe2-8a70-c7212f8719b8 X-Archives-Hash: 559e2f5ed769755461def918a2a8f1df commit: 54d9b288b40c29c2ab6ac0b1dcaafeb335757452 Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Oct 2 08:58:58 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Oct 2 08:59:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d9b288 app-misc/linux-logo: fix compressed manpage install Closes: https://bugs.gentoo.org/729430 Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Bernard Cafarelli gentoo.org> app-misc/linux-logo/linux-logo-6.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-misc/linux-logo/linux-logo-6.0.ebuild b/app-misc/linux-logo/linux-logo-6.0.ebuild index 5d00ccd57c2..99142eb53ef 100644 --- a/app-misc/linux-logo/linux-logo-6.0.ebuild +++ b/app-misc/linux-logo/linux-logo-6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -33,6 +33,11 @@ src_prepare() { cp "${FILESDIR}"/gentoo-*.logo "${S}"/logos/ || die sed -e 's#=$(PREFIX)#=$(DESTDIR)$(PREFIX)#' -i po/Makefile || die + + # Manpage is already gzipped in tarball + gunzip linux_logo.1.gz || die + sed -e "s/.1.gz/.1/g" -i Makefile || die + default }