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 8B6881580B3 for ; Fri, 3 Sep 2021 15:20:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B455E0875; 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 E517DE0875 for ; Fri, 3 Sep 2021 15:20:10 +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 D6615340CF6 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 339A4A2 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.17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/java-pkg-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99 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: 504f3c1e-535b-4259-85f0-43c3acd14594 X-Archives-Hash: c3a14cf0b6d1c5f70b41227334143f8b commit: 17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99 Author: Ulrich Müller gentoo org> AuthorDate: Thu Sep 2 08:51:37 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=17f0cb3a java-pkg-2.eclass: Move EXPORT_FUNCTIONS below inherit Signed-off-by: Ulrich Müller gentoo.org> eclass/java-pkg-2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/java-pkg-2.eclass b/eclass/java-pkg-2.eclass index 96d33f9d196..b0573eea4d0 100644 --- a/eclass/java-pkg-2.eclass +++ b/eclass/java-pkg-2.eclass @@ -18,8 +18,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS pkg_setup src_prepare src_compile pkg_preinst - if [[ -z ${_JAVA_PKG_2_ECLASS} ]] ; then _JAVA_PKG_2_ECLASS=1 @@ -159,3 +157,5 @@ java-pkg-2_pkg_preinst() { } fi + +EXPORT_FUNCTIONS pkg_setup src_prepare src_compile pkg_preinst