Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 09 Feb 2022 09:39:36
Message-Id: 1644396229.ae1762f85b3fbf7367afefa1a9575a121c2aef9a.mgorny@gentoo
1 commit: ae1762f85b3fbf7367afefa1a9575a121c2aef9a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 4 17:27:48 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 9 08:43:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae1762f8
7
8 python-utils-r1.eclass: Remove python_wrapper_setup
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/python-utils-r1.eclass | 16 ----------------
13 1 file changed, 16 deletions(-)
14
15 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
16 index b92fade0855e..395e3e6420f4 100644
17 --- a/eclass/python-utils-r1.eclass
18 +++ b/eclass/python-utils-r1.eclass
19 @@ -838,22 +838,6 @@ python_doheader() {
20 )
21 }
22
23 -# @FUNCTION: python_wrapper_setup
24 -# @USAGE: [<path> [<impl>]]
25 -# @DESCRIPTION:
26 -# Backwards compatibility function. The relevant API is now considered
27 -# private, please use python_setup instead.
28 -python_wrapper_setup() {
29 - debug-print-function ${FUNCNAME} "${@}"
30 -
31 - eqawarn "python_wrapper_setup() is part of private eclass API."
32 - eqawarn "Please call python_setup() instead."
33 -
34 - [[ ${EAPI} == [67] ]] || die "${FUNCNAME} banned in EAPI ${EAPI}"
35 -
36 - _python_wrapper_setup "${@}"
37 -}
38 -
39 # @FUNCTION: _python_wrapper_setup
40 # @USAGE: [<path> [<impl>]]
41 # @INTERNAL