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 21061158091 for ; Thu, 16 Jun 2022 11:41:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 537BDE0905; Thu, 16 Jun 2022 11:41:47 +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 37B4DE0905 for ; Thu, 16 Jun 2022 11:41:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4EEC7341EE3 for ; Thu, 16 Jun 2022 11:41:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2DEAD3 for ; Thu, 16 Jun 2022 11:41:44 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1655379634.a4778986fd82d1a5b336aca5bf8db9252ee52ef8.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bcache-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild sys-fs/bcache-tools/bcache-tools-9999.ebuild X-VCS-Directories: sys-fs/bcache-tools/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: a4778986fd82d1a5b336aca5bf8db9252ee52ef8 X-VCS-Branch: master Date: Thu, 16 Jun 2022 11:41:44 +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: 4f66f198-9fa8-43d7-b535-b263dfd268dd X-Archives-Hash: 7995bf752be33bf9f402dc0c09560276 commit: a4778986fd82d1a5b336aca5bf8db9252ee52ef8 Author: Florian Schmaus gentoo org> AuthorDate: Thu Jun 16 11:38:03 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Jun 16 11:40:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4778986 sys-fs/bcache-tools: call udev_reload in pkg_postrm() Closes: https://bugs.gentoo.org/852164 Signed-off-by: Florian Schmaus gentoo.org> sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild | 4 ++++ sys-fs/bcache-tools/bcache-tools-9999.ebuild | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild b/sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild index f2e436d2fa27..9e6dc7c64771 100644 --- a/sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild +++ b/sys-fs/bcache-tools/bcache-tools-1.1-r1.ebuild @@ -69,3 +69,7 @@ src_install() { pkg_postinst() { udev_reload } + +pkg_postrm() { + udev_reload +} diff --git a/sys-fs/bcache-tools/bcache-tools-9999.ebuild b/sys-fs/bcache-tools/bcache-tools-9999.ebuild index 31a8bc178342..1afc686aacaf 100644 --- a/sys-fs/bcache-tools/bcache-tools-9999.ebuild +++ b/sys-fs/bcache-tools/bcache-tools-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -67,3 +67,7 @@ src_install() { pkg_postinst() { udev_reload } + +pkg_postrm() { + udev_reload +}