Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgconf/
Date: Sun, 07 Aug 2022 06:23:40
Message-Id: 1659853408.a004655fbad62394aea65603608af5b1d17d9313.sam@gentoo
1 commit: a004655fbad62394aea65603608af5b1d17d9313
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 7 06:22:36 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 7 06:23:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a004655f
7
8 dev-util/pkgconf: fix cleanup error
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-util/pkgconf/{pkgconf-1.9.0.ebuild => pkgconf-1.9.0-r1.ebuild} | 3 ++-
13 dev-util/pkgconf/pkgconf-9999.ebuild | 4 +++-
14 2 files changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-util/pkgconf/pkgconf-1.9.0.ebuild b/dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild
17 similarity index 97%
18 rename from dev-util/pkgconf/pkgconf-1.9.0.ebuild
19 rename to dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild
20 index c63109267d0a..743bdb4a60b0 100644
21 --- a/dev-util/pkgconf/pkgconf-1.9.0.ebuild
22 +++ b/dev-util/pkgconf/pkgconf-1.9.0-r1.ebuild
23 @@ -36,7 +36,8 @@ src_prepare() {
24
25 [[ ${PV} == 9999 ]] && eautoreconf
26
27 - MULTILIB_CHOST_TOOLS+=(
28 + MULTILIB_CHOST_TOOLS=(
29 + /usr/bin/pkgconf
30 /usr/bin/pkg-config$(get_exeext)
31 )
32 }
33
34 diff --git a/dev-util/pkgconf/pkgconf-9999.ebuild b/dev-util/pkgconf/pkgconf-9999.ebuild
35 index a889721e17d0..f2e53e490eb3 100644
36 --- a/dev-util/pkgconf/pkgconf-9999.ebuild
37 +++ b/dev-util/pkgconf/pkgconf-9999.ebuild
38 @@ -10,6 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
39 EGIT_REPO_URI="https://gitea.treehouse.systems/ariadne/pkgconf.git"
40 else
41 SRC_URI="https://distfiles.dereferenced.org/${PN}/${P}.tar.xz"
42 + # Per release notes, 1.9.0 is a testing/development release.
43 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"
44 fi
45
46 @@ -35,7 +36,8 @@ src_prepare() {
47
48 [[ ${PV} == 9999 ]] && eautoreconf
49
50 - MULTILIB_CHOST_TOOLS+=(
51 + MULTILIB_CHOST_TOOLS=(
52 + /usr/bin/pkgconf
53 /usr/bin/pkg-config$(get_exeext)
54 )
55 }