Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 02 Apr 2022 19:52:05
Message-Id: 1648929081.12a28a4becb51cfbfb7fc3114869ef1838293f46.mattst88@gentoo
1 commit: 12a28a4becb51cfbfb7fc3114869ef1838293f46
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 19:43:32 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 19:51:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a28a4b
7
8 xorg-3.eclass: Drop EXPORTED_FUNCTIONS variable
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 eclass/xorg-3.eclass | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15 diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass
16 index 81dd684e6fcf..fa2731585429 100644
17 --- a/eclass/xorg-3.eclass
18 +++ b/eclass/xorg-3.eclass
19 @@ -57,14 +57,13 @@ if [[ ${XORG_MULTILIB} == yes ]]; then
20 inherit multilib-minimal
21 fi
22
23 -EXPORTED_FUNCTIONS="src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm"
24 case "${EAPI:-0}" in
25 [7-8]) ;;
26 *) die "EAPI=${EAPI} is not supported" ;;
27 esac
28
29 # exports must be ALWAYS after inherit
30 -EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}
31 +EXPORT_FUNCTIONS src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm
32
33 IUSE=""