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 BC293158020 for ; Mon, 21 Nov 2022 19:53:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE243E0A52; Mon, 21 Nov 2022 19:53:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C4F21E0A52 for ; Mon, 21 Nov 2022 19:53:04 +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 E30CD33BF35 for ; Mon, 21 Nov 2022 19:53:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34CC121 for ; Mon, 21 Nov 2022 19:53:02 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1669060295.a05d2535777027dd8d43197b865768da4baf2126.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/lvm2-2.03.14-r4.ebuild sys-fs/lvm2/lvm2-2.03.16-r2.ebuild sys-fs/lvm2/lvm2-2.03.17.ebuild X-VCS-Directories: sys-fs/lvm2/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: a05d2535777027dd8d43197b865768da4baf2126 X-VCS-Branch: master Date: Mon, 21 Nov 2022 19:53:02 +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: cb1286bb-1327-4be7-9176-d1d0448eeca9 X-Archives-Hash: 388d1a5fc7b4efcabbbe40d854b27083 commit: a05d2535777027dd8d43197b865768da4baf2126 Author: Mike Gilbert gentoo org> AuthorDate: Mon Nov 21 19:51:35 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Nov 21 19:51:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05d2535 sys-fs/lvm2: fix build with USE="sanlock -systemd" Closes: https://bugs.gentoo.org/822054 Signed-off-by: Mike Gilbert gentoo.org> sys-fs/lvm2/lvm2-2.03.14-r4.ebuild | 1 + sys-fs/lvm2/lvm2-2.03.16-r2.ebuild | 1 + sys-fs/lvm2/lvm2-2.03.17.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/sys-fs/lvm2/lvm2-2.03.14-r4.ebuild b/sys-fs/lvm2/lvm2-2.03.14-r4.ebuild index b8512c8bc5ce..b991a1ef1218 100644 --- a/sys-fs/lvm2/lvm2-2.03.14-r4.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.14-r4.ebuild @@ -103,6 +103,7 @@ src_prepare() { # Users without systemd get no auto-activation of any logical volume if ! use systemd ; then eapply "${FILESDIR}"/${PN}-2.03.14-dm_lvm_rules_no_systemd.patch + sed -i -e '/^USE_SD_NOTIFY=yes$/s/yes/no/' daemons/lvmlockd/Makefile.in || die fi sed -i \ diff --git a/sys-fs/lvm2/lvm2-2.03.16-r2.ebuild b/sys-fs/lvm2/lvm2-2.03.16-r2.ebuild index dca72ccfd4a0..4b49e8d27e66 100644 --- a/sys-fs/lvm2/lvm2-2.03.16-r2.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.16-r2.ebuild @@ -108,6 +108,7 @@ src_prepare() { # Users without systemd get no auto-activation of any logical volume if ! use systemd ; then eapply "${FILESDIR}"/${PN}-2.03.16-dm_lvm_rules_no_systemd.patch + sed -i -e '/^USE_SD_NOTIFY=yes$/s/yes/no/' daemons/lvmlockd/Makefile.in || die fi sed -i \ diff --git a/sys-fs/lvm2/lvm2-2.03.17.ebuild b/sys-fs/lvm2/lvm2-2.03.17.ebuild index 01f3f1dd4f90..91f4b5074807 100644 --- a/sys-fs/lvm2/lvm2-2.03.17.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.17.ebuild @@ -107,6 +107,7 @@ src_prepare() { # Users without systemd get no auto-activation of any logical volume if ! use systemd ; then eapply "${FILESDIR}"/${PN}-2.03.16-dm_lvm_rules_no_systemd.patch + sed -i -e '/^USE_SD_NOTIFY=yes$/s/yes/no/' daemons/lvmlockd/Makefile.in || die fi sed -i -e "s:/usr/bin/true:$(type -P true):" scripts/blk_availability_systemd_red_hat.service.in || die #517514