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 E894D158086 for ; Fri, 31 Dec 2021 23:23:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 879322BC064; Fri, 31 Dec 2021 23:23:12 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF3602BC064 for ; Fri, 31 Dec 2021 23:23:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A3C46342DFF for ; Fri, 31 Dec 2021 23:23:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1D04268 for ; Fri, 31 Dec 2021 23:23:07 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1640992981.dcee89b1055939e823df6706efa666e91a0fbf79.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fts-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild X-VCS-Directories: sys-libs/fts-standalone/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dcee89b1055939e823df6706efa666e91a0fbf79 X-VCS-Branch: master Date: Fri, 31 Dec 2021 23:23:07 +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: 001f5353-bfea-4996-8278-ba3af0ea308c X-Archives-Hash: 88f1dca2544ff24df28864cd87d53c77 commit: dcee89b1055939e823df6706efa666e91a0fbf79 Author: David Seifert gentoo org> AuthorDate: Fri Dec 31 23:23:01 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Dec 31 23:23:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcee89b1 sys-libs/fts-standalone: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild index d816d53c4048..b5e23331c74e 100644 --- a/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild +++ b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools DESCRIPTION="Standalone fts library for use with musl" HOMEPAGE="https://github.com/pullmoll/musl-fts" SRC_URI="https://github.com/pullmoll/musl-fts/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/musl-fts-${PV}" LICENSE="BSD" SLOT="0" @@ -18,8 +19,6 @@ DEPEND=" !sys-libs/glibc !sys-libs/uclibc" -S="${WORKDIR}/musl-fts-${PV}" - src_prepare() { default eautoreconf @@ -32,6 +31,6 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die mv "${ED%/}"/usr/$(get_libdir)/pkgconfig/{musl-fts,fts-standalone}.pc || die }