diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-10-24 11:36:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-10-24 11:36:26 +0200 |
commit | e68a0be8472f37a7011a95d67a3620a6d6008cc0 (patch) | |
tree | 8859a457022bc729a8c789659d9fb94805c37623 | |
parent | app-misc/workrave: I forgot to add a dep on media-plugins/gst-plugins-meta to... (diff) | |
download | gentoo-e68a0be8472f37a7011a95d67a3620a6d6008cc0.tar.gz gentoo-e68a0be8472f37a7011a95d67a3620a6d6008cc0.tar.bz2 gentoo-e68a0be8472f37a7011a95d67a3620a6d6008cc0.zip |
eclass/base.eclass: Add deprecation note on top
-rw-r--r-- | eclass/base.eclass | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index fffdacb76c6b..f5eb97c350a8 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> |