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 87FB21581D3 for ; Wed, 15 May 2024 15:26:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 931C1E2A72; Wed, 15 May 2024 15:26:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 728FFE2A72 for ; Wed, 15 May 2024 15:26:45 +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 99FEC335C4E for ; Wed, 15 May 2024 15:26:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D18E91A80 for ; Wed, 15 May 2024 15:26:42 +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: <1715786770.05a9bf9ac30d889c14ad08ccaea679307e04b35a.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/xfsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild X-VCS-Directories: sys-fs/xfsprogs/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 05a9bf9ac30d889c14ad08ccaea679307e04b35a X-VCS-Branch: master Date: Wed, 15 May 2024 15:26:42 +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: 94af1929-6690-4ff2-a242-884ec82e0f8b X-Archives-Hash: 638a84d626aa33df9a3c89e4c07ff104 commit: 05a9bf9ac30d889c14ad08ccaea679307e04b35a Author: Mike Gilbert gentoo org> AuthorDate: Wed May 15 15:24:57 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed May 15 15:26:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a9bf9a sys-fs/xfsprogs: call udev_reload Closes: https://bugs.gentoo.org/931948 Signed-off-by: Mike Gilbert gentoo.org> sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild | 8 ++++++++ sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild b/sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild index 55fcb0627c3c..6d8a45f9081c 100644 --- a/sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-6.6.0-r1.ebuild @@ -97,3 +97,11 @@ src_install() { gen_usr_ldscript -a handle } + +pkg_postrm() { + udev_reload +} + +pkg_postinst() { + udev_reload +} diff --git a/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild b/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild index dfca5f7562c5..e5ba87bba74e 100644 --- a/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild @@ -97,3 +97,11 @@ src_install() { rm "${ED}/usr/$(get_libdir)/libhandle.a" || die fi } + +pkg_postrm() { + udev_reload +} + +pkg_postinst() { + udev_reload +}