Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fts-standalone/
Date: Fri, 31 Dec 2021 23:23:13
Message-Id: 1640992981.dcee89b1055939e823df6706efa666e91a0fbf79.soap@gentoo
1 commit: dcee89b1055939e823df6706efa666e91a0fbf79
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 31 23:23:01 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 31 23:23:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcee89b1
7
8 sys-libs/fts-standalone: update EAPI 6 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild | 9 ++++-----
13 1 file changed, 4 insertions(+), 5 deletions(-)
14
15 diff --git a/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild
16 index d816d53c4048..b5e23331c74e 100644
17 --- a/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild
18 +++ b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild
19 @@ -1,13 +1,14 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=8
26
27 inherit autotools
28
29 DESCRIPTION="Standalone fts library for use with musl"
30 HOMEPAGE="https://github.com/pullmoll/musl-fts"
31 SRC_URI="https://github.com/pullmoll/musl-fts/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 +S="${WORKDIR}/musl-fts-${PV}"
33
34 LICENSE="BSD"
35 SLOT="0"
36 @@ -18,8 +19,6 @@ DEPEND="
37 !sys-libs/glibc
38 !sys-libs/uclibc"
39
40 -S="${WORKDIR}/musl-fts-${PV}"
41 -
42 src_prepare() {
43 default
44 eautoreconf
45 @@ -32,6 +31,6 @@ src_configure() {
46
47 src_install() {
48 default
49 - find "${D}" -name '*.la' -delete || die
50 + find "${ED}" -name '*.la' -delete || die
51 mv "${ED%/}"/usr/$(get_libdir)/pkgconfig/{musl-fts,fts-standalone}.pc || die
52 }