From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1374204-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 A22E215808B for <garchives@archives.gentoo.org>; Thu, 10 Mar 2022 22:45:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D47D2E08DD; Thu, 10 Mar 2022 22:45: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 4DB37E08CE for <gentoo-commits@lists.gentoo.org>; Thu, 10 Mar 2022 22:45: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 1E67F342F70 for <gentoo-commits@lists.gentoo.org>; Thu, 10 Mar 2022 22:45:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 740F41BD for <gentoo-commits@lists.gentoo.org>; Thu, 10 Mar 2022 22:45: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: <1646951592.b1fbfa633e03ebcfb90a1a84781e5b6eeab64338.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild X-VCS-Directories: dev-perl/Search-Xapian/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b1fbfa633e03ebcfb90a1a84781e5b6eeab64338 X-VCS-Branch: master Date: Thu, 10 Mar 2022 22:45: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: 940261ef-cd09-46ce-946b-034ce53ea80a X-Archives-Hash: 9aae683c8a89b92d4ed698a12c2e8372 commit: b1fbfa633e03ebcfb90a1a84781e5b6eeab64338 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Mar 10 22:33:12 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Mar 10 22:33:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1fbfa63 dev-perl/Search-Xapian: don't call tc-getCXX in global scope Closes: https://bugs.gentoo.org/593366 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 7 +++++-- dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild | 7 +++++-- dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 5 ++++- dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild | 5 ++++- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild index b8cfbc7060ef..5cc9b91c2ae4 100644 --- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -27,7 +27,10 @@ DEPEND="${RDEPEND} DIST_TEST=do # parallel fails sometimes... -myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" +src_configure() { + myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + perl-module_src_configure +} src_install() { perl-module_src_install diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild index 3a61a1ff3b12..f7d7e72802ad 100644 --- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -26,7 +26,10 @@ DEPEND="${RDEPEND} DIST_TEST=do # parallel fails sometimes... -myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" +src_configure() { + myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + perl-module_src_configure +} src_install() { perl-module_src_install diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild index b3fef4008d7b..9e0f99acb617 100644 --- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild @@ -23,7 +23,10 @@ DEPEND="${RDEPEND} DIST_TEST=do # parallel fails sometimes... -myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" +src_configure() { + myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + perl-module_src_configure +} src_install() { perl-module_src_install diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild index e7e3101f4ac3..0c320bfdd619 100644 --- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild @@ -26,7 +26,10 @@ DEPEND="${RDEPEND} DIST_TEST=do # parallel fails sometimes... -myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" +src_configure() { + myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + perl-module_src_configure +} src_install() { perl-module_src_install