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 CCCFC13950D for ; Mon, 7 Dec 2020 00:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27EABE0867; Mon, 7 Dec 2020 00:11:44 +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 10BAEE0867 for ; Mon, 7 Dec 2020 00:11:44 +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 885D2340D82 for ; Mon, 7 Dec 2020 00:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1081138A for ; Mon, 7 Dec 2020 00:11:41 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1607299880.4a3e4541e66d8bd77f09a2aaf2aa737b25ddb6bb.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 4a3e4541e66d8bd77f09a2aaf2aa737b25ddb6bb X-VCS-Branch: master Date: Mon, 7 Dec 2020 00:11:41 +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: 14e8cfef-a2c6-45db-8b38-d741b1b626d7 X-Archives-Hash: c18be47e9a24f04e60f399e5d4a50847 commit: 4a3e4541e66d8bd77f09a2aaf2aa737b25ddb6bb Author: Aaron Bauman gentoo org> AuthorDate: Mon Dec 7 00:10:25 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Mon Dec 7 00:11:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a3e4541 eclass/distutils-r1: Fix EclassDocMissingFunc Signed-off-by: Aaron Bauman gentoo.org> eclass/distutils-r1.eclass | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 5ffc91be479..33c66c4872e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1193,34 +1193,66 @@ distutils-r1_src_install() { # -- distutils.eclass functions -- +# @FUNCTION: distutils_get_intermediate_installation_image +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_get_intermediate_installation_image() { die "${FUNCNAME}() is invalid for distutils-r1" } +# @FUNCTION: distutils_src_unpack +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_src_unpack() { die "${FUNCNAME}() is invalid for distutils-r1, and you don't want it in EAPI ${EAPI} anyway" } +# @FUNCTION: distutils_src_prepare +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_src_prepare() { die "${FUNCNAME}() is invalid for distutils-r1, you probably want: ${FUNCNAME/_/-r1_}" } +# @FUNCTION: distutils_src_compile +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_src_compile() { die "${FUNCNAME}() is invalid for distutils-r1, you probably want: ${FUNCNAME/_/-r1_}" } +# @FUNCTION: distutils_src_test +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_src_test() { die "${FUNCNAME}() is invalid for distutils-r1, you probably want: ${FUNCNAME/_/-r1_}" } +# @FUNCTION: distutils_src_install +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_src_install() { die "${FUNCNAME}() is invalid for distutils-r1, you probably want: ${FUNCNAME/_/-r1_}" } +# @FUNCTION: distutils_pkg_postinst +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_pkg_postinst() { die "${FUNCNAME}() is invalid for distutils-r1, and pkg_postinst is unnecessary" } +# @FUNCTION: distutils_pkg_postrm +# @INTERNAL +# @DESCRIPTION: +# Die and warn when function from previous distutils is called distutils_pkg_postrm() { die "${FUNCNAME}() is invalid for distutils-r1, and pkg_postrm is unnecessary" }