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.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 985E8158094 for ; Sun, 7 Aug 2022 06:23:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCD0EE0EBE; Sun, 7 Aug 2022 06:23:39 +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 92067E0EBE for ; Sun, 7 Aug 2022 06:23:39 +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 5CC83340F5A for ; Sun, 7 Aug 2022 06:23:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2BFA1E for ; Sun, 7 Aug 2022 06:23:36 +0000 (UTC) From: "Sam James" 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" Message-ID: <1659853408.a004655fbad62394aea65603608af5b1d17d9313.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild dev-util/pkgconf/pkgconf-1.9.0.ebuild dev-util/pkgconf/pkgconf-9999.ebuild X-VCS-Directories: dev-util/pkgconf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a004655fbad62394aea65603608af5b1d17d9313 X-VCS-Branch: master Date: Sun, 7 Aug 2022 06:23:36 +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: f8b14404-d635-483f-8431-4b9b98ff83b5 X-Archives-Hash: c79a5c10f595eca3ef10e6653445643a commit: a004655fbad62394aea65603608af5b1d17d9313 Author: Sam James gentoo org> AuthorDate: Sun Aug 7 06:22:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 7 06:23:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a004655f dev-util/pkgconf: fix cleanup error Signed-off-by: Sam James gentoo.org> dev-util/pkgconf/{pkgconf-1.9.0.ebuild => pkgconf-1.9.0-r1.ebuild} | 3 ++- dev-util/pkgconf/pkgconf-9999.ebuild | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-util/pkgconf/pkgconf-1.9.0.ebuild b/dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild similarity index 97% rename from dev-util/pkgconf/pkgconf-1.9.0.ebuild rename to dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild index c63109267d0a..743bdb4a60b0 100644 --- a/dev-util/pkgconf/pkgconf-1.9.0.ebuild +++ b/dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild @@ -36,7 +36,8 @@ src_prepare() { [[ ${PV} == 9999 ]] && eautoreconf - MULTILIB_CHOST_TOOLS+=( + MULTILIB_CHOST_TOOLS=( + /usr/bin/pkgconf /usr/bin/pkg-config$(get_exeext) ) } diff --git a/dev-util/pkgconf/pkgconf-9999.ebuild b/dev-util/pkgconf/pkgconf-9999.ebuild index a889721e17d0..f2e53e490eb3 100644 --- a/dev-util/pkgconf/pkgconf-9999.ebuild +++ b/dev-util/pkgconf/pkgconf-9999.ebuild @@ -10,6 +10,7 @@ if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://gitea.treehouse.systems/ariadne/pkgconf.git" else SRC_URI="https://distfiles.dereferenced.org/${PN}/${P}.tar.xz" + # Per release notes, 1.9.0 is a testing/development release. KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi @@ -35,7 +36,8 @@ src_prepare() { [[ ${PV} == 9999 ]] && eautoreconf - MULTILIB_CHOST_TOOLS+=( + MULTILIB_CHOST_TOOLS=( + /usr/bin/pkgconf /usr/bin/pkg-config$(get_exeext) ) }