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 BFDA8158030 for ; Tue, 28 Feb 2023 16:36:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21EA2E0729; Tue, 28 Feb 2023 16:36:26 +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 ED4C2E0718 for ; Tue, 28 Feb 2023 16:36:25 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20155335CB1 for ; Tue, 28 Feb 2023 16:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 941BA8C2 for ; Tue, 28 Feb 2023 16:36:23 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1677602178.e623d0417924e0989baefcd3292d59c22609b413.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libarchive/libarchive-3.6.1-r1.ebuild X-VCS-Directories: app-arch/libarchive/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e623d0417924e0989baefcd3292d59c22609b413 X-VCS-Branch: master Date: Tue, 28 Feb 2023 16:36:23 +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: 5e905012-cecd-4cf8-8caa-2aa232784f02 X-Archives-Hash: a56d73d6a1a029cea7b8eb63ef61c207 commit: e623d0417924e0989baefcd3292d59c22609b413 Author: Michał Górny gentoo org> AuthorDate: Tue Feb 28 16:11:50 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 28 16:36:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e623d041 app-arch/libarchive: eautoconf to fix makedev implicit decl Bug: https://bugs.gentoo.org/898360 Signed-off-by: Michał Górny gentoo.org> app-arch/libarchive/libarchive-3.6.1-r1.ebuild | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app-arch/libarchive/libarchive-3.6.1-r1.ebuild b/app-arch/libarchive/libarchive-3.6.1-r1.ebuild index 98013595c225..38a8df5f833c 100644 --- a/app-arch/libarchive/libarchive-3.6.1-r1.ebuild +++ b/app-arch/libarchive/libarchive-3.6.1-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit multilib-minimal toolchain-funcs verify-sig + +inherit autotools multilib-minimal toolchain-funcs verify-sig DESCRIPTION="Multi-format archive and compression library" HOMEPAGE="https://www.libarchive.org/" @@ -51,6 +52,13 @@ PATCHES=( "${FILESDIR}"/${P}-CVE-2022-36227.patch ) +src_prepare() { + # regenerate configure script to fix implicit includes + # https://bugs.gentoo.org/898360 + eautoconf + default +} + multilib_src_configure() { export ac_cv_header_ext2fs_ext2_fs_h=$(usex e2fsprogs) #354923