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: Sat, 24 Oct 2015 09:36:59
Message-Id: 1445679386.e68a0be8472f37a7011a95d67a3620a6d6008cc0.mgorny@gentoo
1 commit: e68a0be8472f37a7011a95d67a3620a6d6008cc0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 24 09:36:26 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 24 09:36:26 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e68a0be8
7
8 eclass/base.eclass: Add deprecation note on top
9
10 eclass/base.eclass | 16 ++++++++++++++++
11 1 file changed, 16 insertions(+)
12
13 diff --git a/eclass/base.eclass b/eclass/base.eclass
14 index fffdacb..f5eb97c 100644
15 --- a/eclass/base.eclass
16 +++ b/eclass/base.eclass
17 @@ -2,6 +2,22 @@
18 # Distributed under the terms of the GNU General Public License v2
19 # $Id$
20
21 +# DEPRECATED
22 +# This eclass has been deprecated and must not be used by any new
23 +# ebuilds or eclasses. Replacements for particular phase functions
24 +# in EAPI 2+:
25 +#
26 +# base_src_unpack() - default (or unpacker_src_unpack if unpacker.eclass
27 +# was inherited)
28 +# base_src_prepare() - inherit eutils, inline:
29 +# epatch "${PATCHES[@]}" # if PATCHES defined as array
30 +# epatch ${PATCHES} # if PATCHES defined as string
31 +# epatch_user
32 +# base_src_configure() - default
33 +# base_src_compile() - default
34 +# base_src_install() - default
35 +# base_src_install_docs() - einstalldocs from eutils.eclass
36 +
37 # @ECLASS: base.eclass
38 # @MAINTAINER:
39 # QA Team <qa@g.o>