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 4AD471580B1 for ; Tue, 31 Aug 2021 17:23:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2101E09AB; Tue, 31 Aug 2021 17:23:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 87582E09AB for ; Tue, 31 Aug 2021 17:23:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 448DC33B864 for ; Tue, 31 Aug 2021 17:23:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D502539 for ; Tue, 31 Aug 2021 17:23:31 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1630430588.23ea70513e81f0f00bcc36dddc7ab9945cb909b1.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 23ea70513e81f0f00bcc36dddc7ab9945cb909b1 X-VCS-Branch: master Date: Tue, 31 Aug 2021 17:23:31 +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: 932c9c88-89f5-4b5a-95d8-ae009b3ec44b X-Archives-Hash: 2bb3c6059c20e5eda588e589e1f21a14 commit: 23ea70513e81f0f00bcc36dddc7ab9945cb909b1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 31 17:23:08 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 31 17:23:08 2021 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=23ea7051 kde.org.eclass: Move EXPORT_FUNCTIONS below guard Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 21d96602c0..c375893e25 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -20,8 +20,6 @@ case ${EAPI} in *) die "EAPI=${EAPI:-0} is not supported" ;; esac -EXPORT_FUNCTIONS pkg_nofetch src_unpack - if [[ -z ${_KDE_ORG_ECLASS} ]]; then _KDE_ORG_ECLASS=1 @@ -354,3 +352,5 @@ kde.org_src_unpack() { } fi + +EXPORT_FUNCTIONS pkg_nofetch src_unpack