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 8CE9C13835B for ; Mon, 12 Apr 2021 02:31:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96C6AE0845; Mon, 12 Apr 2021 02:31:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7BBD4E0845 for ; Mon, 12 Apr 2021 02:31:11 +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 7B0B1340BDE for ; Mon, 12 Apr 2021 02:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8D2B702 for ; Mon, 12 Apr 2021 02:31: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: <1618194655.b8419f7297a3ea019eefeb2a35bdba4a3d9df751.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/diveintopython/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/diveintopython/diveintopython-3-r1.ebuild app-doc/diveintopython/diveintopython-3.ebuild X-VCS-Directories: app-doc/diveintopython/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b8419f7297a3ea019eefeb2a35bdba4a3d9df751 X-VCS-Branch: master Date: Mon, 12 Apr 2021 02:31: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: bc944d56-a95a-4b88-bda3-5a2c87940332 X-Archives-Hash: 4f463b37767b1ac1328dcd779a3d5e4e commit: b8419f7297a3ea019eefeb2a35bdba4a3d9df751 Author: Sam James gentoo org> AuthorDate: Mon Apr 12 02:03:28 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 12 02:30:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8419f72 app-doc/diveintopython: fix dodoc->doins Signed-off-by: Sam James gentoo.org> .../{diveintopython-3.ebuild => diveintopython-3-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-doc/diveintopython/diveintopython-3.ebuild b/app-doc/diveintopython/diveintopython-3-r1.ebuild similarity index 87% rename from app-doc/diveintopython/diveintopython-3.ebuild rename to app-doc/diveintopython/diveintopython-3-r1.ebuild index bc2f6bfcc2c..2fce9fa8d37 100644 --- a/app-doc/diveintopython/diveintopython-3.ebuild +++ b/app-doc/diveintopython/diveintopython-3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,6 +18,6 @@ IUSE="pdf" src_install() { insinto "/usr/share/doc/${PN}-${SLOT}" - use pdf && dodoc "${P}.pdf" + use pdf && doins "${P}.pdf" doins -r * }