From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1368948-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 8EFE615808C
	for <garchives@archives.gentoo.org>; Sat, 19 Feb 2022 05:17:32 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 90B04E0839;
	Sat, 19 Feb 2022 05:17:30 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 37E9CE082B
	for <gentoo-commits@lists.gentoo.org>; Sat, 19 Feb 2022 05:17:30 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id D6C38343762
	for <gentoo-commits@lists.gentoo.org>; Sat, 19 Feb 2022 05:17:28 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A56826D
	for <gentoo-commits@lists.gentoo.org>; Sat, 19 Feb 2022 05:17:27 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1645247547.f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-daemon/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-java/commons-daemon/commons-daemon-1.2.4.ebuild
X-VCS-Directories: dev-java/commons-daemon/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0
X-VCS-Branch: master
Date: Sat, 19 Feb 2022 05:17:27 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: aa5a0f48-c957-49e5-81ed-778987665ee3
X-Archives-Hash: b8da766bd7b79fd5545979faf48e83cb

commit:     f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Fri Feb 18 12:18:12 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 19 05:12:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a8109b

dev-java/commons-daemon: respect AR

Bug: https://bugs.gentoo.org/833602
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24248
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-java/commons-daemon/commons-daemon-1.2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild b/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild
index 103bf27e250b..0d7869bd8559 100644
--- a/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild
+++ b/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild
@@ -10,7 +10,7 @@ JAVA_PKG_IUSE="doc source"
 MAVEN_ID="commons-daemon:commons-daemon:1.2.4"
 # JAVA_TESTING_FRAMEWORKS="junit-4"
 
-inherit java-pkg-2 java-pkg-simple
+inherit java-pkg-2 java-pkg-simple toolchain-funcs
 
 DESCRIPTION="Tools to allow Java programs to run as UNIX daemons"
 HOMEPAGE="https://commons.apache.org/proper/commons-daemon/"
@@ -47,7 +47,7 @@ src_compile() {
 
 	pushd src/native/unix || die
 		./configure
-		emake
+		emake AR="$(tc-getAR)"
 	popd
 }