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 C4572158015 for ; Wed, 27 Dec 2023 22:22:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D44D22BC022; Wed, 27 Dec 2023 22:22:36 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8569C2BC022 for ; Wed, 27 Dec 2023 22:22:36 +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 750CE340C42 for ; Wed, 27 Dec 2023 22:22:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93E14119 for ; Wed, 27 Dec 2023 22:22:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1703715739.2af83a21b451b1738fdb04d7216312af4a078efe.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/files/, sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/files/lvm2-2.03.22-autoconf-2.72-egrep.patch sys-fs/lvm2/lvm2-2.03.22-r2.ebuild sys-fs/lvm2/lvm2-2.03.22-r3.ebuild X-VCS-Directories: sys-fs/lvm2/ sys-fs/lvm2/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2af83a21b451b1738fdb04d7216312af4a078efe X-VCS-Branch: master Date: Wed, 27 Dec 2023 22:22:33 +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: 194e5e6b-dd65-49ea-b2ee-479f2befe36d X-Archives-Hash: ec5e6cfd119c7e02b64c82a165684b60 commit: 2af83a21b451b1738fdb04d7216312af4a078efe Author: Sam James gentoo org> AuthorDate: Wed Dec 27 22:03:37 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 27 22:22:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af83a21 sys-fs/lvm2: fix autoconf-2.72 compat Revbump as @EGREP@ isn't substituted without it but it installs "successfully". Closes: https://bugs.gentoo.org/920798 Signed-off-by: Sam James gentoo.org> .../files/lvm2-2.03.22-autoconf-2.72-egrep.patch | 30 ++++++++++++++++++++++ ...m2-2.03.22-r2.ebuild => lvm2-2.03.22-r3.ebuild} | 1 + 2 files changed, 31 insertions(+) diff --git a/sys-fs/lvm2/files/lvm2-2.03.22-autoconf-2.72-egrep.patch b/sys-fs/lvm2/files/lvm2-2.03.22-autoconf-2.72-egrep.patch new file mode 100644 index 000000000000..9ce7d540200e --- /dev/null +++ b/sys-fs/lvm2/files/lvm2-2.03.22-autoconf-2.72-egrep.patch @@ -0,0 +1,30 @@ +https://bugs.gentoo.org/920798 +https://gitlab.com/lvmteam/lvm2/-/merge_requests/4 + +From 39cb34e56b8c04b4d652eb9dbd643e10a05ff21c Mon Sep 17 00:00:00 2001 +From: Kai Kang +Date: Mon, 6 Nov 2023 16:44:41 +0800 +Subject: [PATCH] configure.ac: check egrep + +The macro AC_HEADER_STDC which requires AC_PROG_EGREP has been removed +from configure.ac, then it fails to substitute '@EGREP@': + +| [GEN] command-lines-input.h +| /bin/bash: line 2: @EGREP@: command not found +| [GEN] command-count.h + +Call AC_PROG_EGREP to fix the error. + +Signed-off-by: Kai Kang +--- a/configure.ac ++++ b/configure.ac +@@ -78,6 +78,7 @@ AC_PROG_LN_S + AC_PROG_MAKE_SET + AC_PROG_MKDIR_P + AC_PROG_RANLIB ++AC_PROG_EGREP + AC_CHECK_TOOL([READELF], [readelf]) + AC_CHECK_TOOL(AR, ar) + AC_PATH_TOOL(CFLOW_CMD, cflow) +-- +GitLab diff --git a/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild b/sys-fs/lvm2/lvm2-2.03.22-r3.ebuild similarity index 99% rename from sys-fs/lvm2/lvm2-2.03.22-r2.ebuild rename to sys-fs/lvm2/lvm2-2.03.22-r3.ebuild index a53c83765217..68e624c6d31d 100644 --- a/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.22-r3.ebuild @@ -68,6 +68,7 @@ PATCHES=( # For upstream -- review and forward: "${FILESDIR}"/${PN}-2.03.20-dmeventd-no-idle-exit.patch "${FILESDIR}"/${PN}-2.03.20-freopen-musl.patch + "${FILESDIR}"/${PN}-2.03.22-autoconf-2.72-egrep.patch ) pkg_setup() {