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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9CD9213835A for ; Mon, 29 Jun 2020 06:29:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B37F7E0957; Mon, 29 Jun 2020 06:29:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99D01E0957 for ; Mon, 29 Jun 2020 06:29:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FFD734F336 for ; Mon, 29 Jun 2020 06:29:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E2B32AF for ; Mon, 29 Jun 2020 06:29:17 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1593412150.21044ff0e95adb9c2b5e7eb18711c058f2905003.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/chmlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/chmlib/chmlib-0.40-r1.ebuild X-VCS-Directories: dev-libs/chmlib/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 21044ff0e95adb9c2b5e7eb18711c058f2905003 X-VCS-Branch: master Date: Mon, 29 Jun 2020 06:29:17 +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: da15f113-e824-4c4b-9869-9e2fd8eb9049 X-Archives-Hash: 67a503538baf27ec9d0234b2eed7081b commit: 21044ff0e95adb9c2b5e7eb18711c058f2905003 Author: Lars Wendler gentoo org> AuthorDate: Mon Jun 29 06:28:07 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jun 29 06:29:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21044ff0 dev-libs/chmlib: switched to EAPI-7 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> dev-libs/chmlib/chmlib-0.40-r1.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-libs/chmlib/chmlib-0.40-r1.ebuild b/dev-libs/chmlib/chmlib-0.40-r1.ebuild index 7b60e53d0f7..957e5d88bca 100644 --- a/dev-libs/chmlib/chmlib-0.40-r1.ebuild +++ b/dev-libs/chmlib/chmlib-0.40-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools out-of-source @@ -21,16 +21,19 @@ PATCHES=( src_prepare() { default + # Required for CONFIG_SHELL != bash (bug #668408) eautoreconf } my_src_configure() { - econf \ - $(use_enable examples) \ + local myeconfargs=( + $(use_enable examples) $(use_enable static-libs static) + ) + econf "${myeconfargs[@]}" } my_src_install_all() { einstalldocs - find "${D}" -name '*.la' -delete || die + find "${ED}" -type f -name '*.la' -delete || die }