From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E5ECB1580B2 for ; Fri, 3 Sep 2021 15:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14DC2E0878; Fri, 3 Sep 2021 15:20:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA07BE0878 for ; Fri, 3 Sep 2021 15:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B615E340B57 for ; Fri, 3 Sep 2021 15:20:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 202369E for ; Fri, 3 Sep 2021 15:20:08 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1630682378.3a48c438c804452a0a0a35b7346a031ab23ca6da.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/gnustep-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3a48c438c804452a0a0a35b7346a031ab23ca6da X-VCS-Branch: master Date: Fri, 3 Sep 2021 15:20:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1e7f7b0-102a-4d3c-9be6-e9264fc2bf32 X-Archives-Hash: c07e20cc1a7833c2cc18895ddb78f558 commit: 3a48c438c804452a0a0a35b7346a031ab23ca6da Author: Ulrich Müller gentoo org> AuthorDate: Thu Sep 2 08:51:14 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Sep 3 15:19:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a48c438 gnustep-base.eclass: Move EXPORT_FUNCTIONS below inherit Signed-off-by: Ulrich Müller gentoo.org> eclass/gnustep-base.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass index fb4a48b734c..d37ecad102e 100644 --- a/eclass/gnustep-base.eclass +++ b/eclass/gnustep-base.eclass @@ -15,8 +15,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install pkg_postinst - if [[ -z ${_GNUSTEP_BASE_ECLASS} ]] ; then _GNUSTEP_BASE_ECLASS=1 @@ -263,3 +261,5 @@ EOF } fi + +EXPORT_FUNCTIONS src_{prepare,configure,compile,install} pkg_{setup,postinst}