summaryrefslogtreecommitdiff
path: root/eclass/base.eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-10-24 11:36:26 +0200
committerMichał Górny <mgorny@gentoo.org>2015-10-24 11:36:26 +0200
commite68a0be8472f37a7011a95d67a3620a6d6008cc0 (patch)
tree8859a457022bc729a8c789659d9fb94805c37623 /eclass/base.eclass
parent0fc476cac721906cc37a93ef416eaedfaa29a2a3 (diff)
downloadgentoo-e68a0be8472f37a7011a95d67a3620a6d6008cc0.tar.gz
gentoo-e68a0be8472f37a7011a95d67a3620a6d6008cc0.tar.xz
eclass/base.eclass: Add deprecation note on top
Diffstat (limited to 'eclass/base.eclass')
-rw-r--r--eclass/base.eclass16
1 files changed, 16 insertions, 0 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass
index fffdacb76c6..f5eb97c350a 100644
--- a/eclass/base.eclass
+++ b/eclass/base.eclass
@@ -2,6 +2,22 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
+# DEPRECATED
+# This eclass has been deprecated and must not be used by any new
+# ebuilds or eclasses. Replacements for particular phase functions
+# in EAPI 2+:
+#
+# base_src_unpack() - default (or unpacker_src_unpack if unpacker.eclass
+# was inherited)
+# base_src_prepare() - inherit eutils, inline:
+# epatch "${PATCHES[@]}" # if PATCHES defined as array
+# epatch ${PATCHES} # if PATCHES defined as string
+# epatch_user
+# base_src_configure() - default
+# base_src_compile() - default
+# base_src_install() - default
+# base_src_install_docs() - einstalldocs from eutils.eclass
+
# @ECLASS: base.eclass
# @MAINTAINER:
# QA Team <qa@gentoo.org>