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 2C1421382C5 for ; Wed, 26 May 2021 09:07:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10F2CE0A97; Wed, 26 May 2021 09:02:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EE724E0A97 for ; Wed, 26 May 2021 09:02:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 08534335D2C for ; Wed, 26 May 2021 09:02:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B56D2632 for ; Wed, 26 May 2021 09:02:07 +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: <1622019716.860a1fd317c71f3740919d9304787465bd337a54.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/busybox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/busybox/busybox-1.32.1-r1.ebuild sys-apps/busybox/busybox-1.32.1.ebuild X-VCS-Directories: sys-apps/busybox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 860a1fd317c71f3740919d9304787465bd337a54 X-VCS-Branch: master Date: Wed, 26 May 2021 09:02:07 +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: b367124e-de78-4a7f-ab4c-c5d27a8169c8 X-Archives-Hash: c3cba3d1dccba16154c42caf213f98b2 commit: 860a1fd317c71f3740919d9304787465bd337a54 Author: Sam James gentoo org> AuthorDate: Wed May 26 09:00:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 26 09:01:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=860a1fd3 sys-apps/busybox: install man page in 1.32.1 Bug: https://bugs.gentoo.org/701512 Signed-off-by: Sam James gentoo.org> .../busybox/{busybox-1.32.1.ebuild => busybox-1.32.1-r1.ebuild} | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/busybox/busybox-1.32.1.ebuild b/sys-apps/busybox/busybox-1.32.1-r1.ebuild similarity index 99% rename from sys-apps/busybox/busybox-1.32.1.ebuild rename to sys-apps/busybox/busybox-1.32.1-r1.ebuild index 56929b85f91..7deed611401 100644 --- a/sys-apps/busybox/busybox-1.32.1.ebuild +++ b/sys-apps/busybox/busybox-1.32.1-r1.ebuild @@ -219,6 +219,9 @@ src_compile() { export SKIP_STRIP=y emake V=1 busybox + + # bug #701512 + emake V=1 doc } src_install() { @@ -290,7 +293,8 @@ src_install() { dodoc AUTHORS README TODO - cd docs + cd docs || die + doman busybox.1 docinto txt dodoc *.txt docinto pod @@ -298,7 +302,7 @@ src_install() { docinto html dodoc *.html - cd ../examples + cd ../examples || die docinto examples dodoc inittab depmod.pl *.conf *.script undeb unrpm }