summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-02-04 18:24:25 +0100
committerMichał Górny <mgorny@gentoo.org>2022-02-09 09:43:48 +0100
commit2e00253a6a2f4393a8e85c2dd733b6d91ea80a9b (patch)
tree4c7d58c72ccc8aaebc435742ceabbed392cd272c /eclass
parentpython-utils-r1.eclass: Fix sphinx_build for non-autodoc case (diff)
downloadgentoo-2e00253a6a2f4393a8e85c2dd733b6d91ea80a9b.tar.gz
gentoo-2e00253a6a2f4393a8e85c2dd733b6d91ea80a9b.tar.bz2
gentoo-2e00253a6a2f4393a8e85c2dd733b6d91ea80a9b.zip
python-utils-r1.eclass: Remove deprecated python_export
Remove python_export, as it is no longer used by any ebuilds in ::gentoo. Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/python-utils-r1.eclass17
1 files changed, 0 insertions, 17 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 255e30277f5e..b92fade0855e 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -266,23 +266,6 @@ _python_impl_matches() {
# python2.7
# @CODE
-# @FUNCTION: python_export
-# @USAGE: [<impl>] <variables>...
-# @INTERNAL
-# @DESCRIPTION:
-# Backwards compatibility function. The relevant API is now considered
-# private, please use python_get* instead.
-python_export() {
- debug-print-function ${FUNCNAME} "${@}"
-
- eqawarn "python_export() is part of private eclass API."
- eqawarn "Please call python_get*() instead."
-
- [[ ${EAPI} == [67] ]] || die "${FUNCNAME} banned in EAPI ${EAPI}"
-
- _python_export "${@}"
-}
-
# @FUNCTION: _python_export
# @USAGE: [<impl>] <variables>...
# @INTERNAL