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 BD5911580B7 for ; Fri, 3 Sep 2021 15:20:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6069DE0898; Fri, 3 Sep 2021 15:20:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 3CA89E0898 for ; Fri, 3 Sep 2021 15:20:12 +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 54FFE340CF6 for ; Fri, 3 Sep 2021 15:20:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59E41A7 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: <1630682380.d496332d182b1708f3f5ae0d3feb15dd57c888dc.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/java-pkg-simple.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d496332d182b1708f3f5ae0d3feb15dd57c888dc 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: ab7f6332-6b43-4888-b4ef-d2076acd1ec2 X-Archives-Hash: 14f6bf073df6c874b2382eb4fb4236d5 commit: d496332d182b1708f3f5ae0d3feb15dd57c888dc Author: Ulrich Müller gentoo org> AuthorDate: Thu Sep 2 08:52:00 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Sep 3 15:19:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d496332d java-pkg-simple.eclass: Move EXPORT_FUNCTIONS below inherit Signed-off-by: Ulrich Müller gentoo.org> eclass/java-pkg-simple.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass index 184934eb3bd..fc006ff2fcc 100644 --- a/eclass/java-pkg-simple.eclass +++ b/eclass/java-pkg-simple.eclass @@ -21,8 +21,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS src_compile src_install src_test - if [[ -z ${_JAVA_PKG_SIMPLE_ECLASS} ]] ; then _JAVA_PKG_SIMPLE_ECLASS=1 @@ -570,3 +568,5 @@ java-pkg-simple_src_test() { } fi + +EXPORT_FUNCTIONS src_compile src_install src_test