Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 03 Sep 2021 15:20:13
Message-Id: 1630682383.7e2f3b0be05579dea042e03c7720575629fdc0a4.ulm@gentoo
1 commit: 7e2f3b0be05579dea042e03c7720575629fdc0a4
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 2 08:53:42 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 3 15:19:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e2f3b0b
7
8 mercurial.eclass: Move EXPORT_FUNCTIONS below inherit
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/mercurial.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass
16 index b62ecdf102a..5d0ebf0d9e4 100644
17 --- a/eclass/mercurial.eclass
18 +++ b/eclass/mercurial.eclass
19 @@ -20,8 +20,6 @@ case ${EAPI:-0} in
20 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
21 esac
22
23 -EXPORT_FUNCTIONS src_unpack
24 -
25 if [[ -z ${_MERCURIAL_ECLASS} ]] ; then
26 _MERCURIAL_ECLASS=1
27
28 @@ -219,3 +217,5 @@ function mercurial_src_unpack {
29 }
30
31 fi
32 +
33 +EXPORT_FUNCTIONS src_unpack