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 CF91E158010 for ; Sun, 1 Jan 2023 18:16:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19020E086A; Sun, 1 Jan 2023 18:16:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00D40E086E for ; Sun, 1 Jan 2023 18:16:38 +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 25A50340D11 for ; Sun, 1 Jan 2023 18:16:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 938BE801 for ; Sun, 1 Jan 2023 18:16:35 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1672596978.8574f23cce9261eda81e9366316e53a7f551d7e7.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/files/lvm2-2.03.16-readelf.patch X-VCS-Directories: sys-fs/lvm2/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 8574f23cce9261eda81e9366316e53a7f551d7e7 X-VCS-Branch: master Date: Sun, 1 Jan 2023 18:16:35 +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: f9715c0c-74f7-443b-b1b8-98458274a679 X-Archives-Hash: ef7999cdc91c4a7eab7093e1bfa074f4 commit: 8574f23cce9261eda81e9366316e53a7f551d7e7 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Jan 1 13:45:08 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jan 1 18:16:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8574f23c sys-fs/lvm2: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/28913 Signed-off-by: Conrad Kostecki gentoo.org> sys-fs/lvm2/files/lvm2-2.03.16-readelf.patch | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/sys-fs/lvm2/files/lvm2-2.03.16-readelf.patch b/sys-fs/lvm2/files/lvm2-2.03.16-readelf.patch deleted file mode 100644 index b4d60c5825db..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.03.16-readelf.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Nuar LVM2.2.03.16.orig/libdm/Makefile.in LVM2.2.03.16/libdm/Makefile.in ---- LVM2.2.03.16.orig/libdm/Makefile.in 2022-05-18 09:24:20.000000000 -0700 -+++ LVM2.2.03.16/libdm/Makefile.in 2022-10-27 10:09:29.283631020 -0700 -@@ -59,6 +59,10 @@ - - PROGS_CFLAGS = $(UDEV_CFLAGS) - -+ifeq ($(strip $(READELF)),) -+READELF := readelf -+endif -+ - device-mapper: $(TARGETS) - - dm-tools.device-mapper: device-mapper -@@ -71,8 +75,8 @@ - # also the older symbol is built-in - .symver_check: $(LIB_SHARED) - @echo " [CHECK] $<" -- $(Q) if readelf -Ws $< | grep -q dm_stats_create_region@@; then \ -- SYM=$$(readelf -Ws $< | grep dm_stats_create_region@DM_1_02_106); \ -+ $(Q) if $(READELF) -Ws $< | grep -q dm_stats_create_region@@; then \ -+ SYM=$$( $(READELF) -Ws $< | grep dm_stats_create_region@DM_1_02_106); \ - if test -n "$$SYM"; then touch $@; \ - else echo >&2 "Missing versioned symbols in $<"; false; fi; \ - else touch $@; fi