From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1529867-garchives=archives.gentoo.org@lists.gentoo.org>
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 0CA5C158009
	for <garchives@archives.gentoo.org>; Sun, 18 Jun 2023 02:18:57 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0B909E087A;
	Sun, 18 Jun 2023 02:18:56 +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 E7763E087A
	for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 02:18:55 +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 2DD5234085A
	for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 02:18:55 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B998EA91
	for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 02:18:53 +0000 (UTC)
From: "Matthias Maier" <tamiko@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" <tamiko@gentoo.org>
Message-ID: <1687054729.606a92e1d12c8a98d5b1ec0f773948cf66d2f4b8.tamiko@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild
X-VCS-Directories: app-emulation/spice-vdagent/
X-VCS-Committer: tamiko
X-VCS-Committer-Name: Matthias Maier
X-VCS-Revision: 606a92e1d12c8a98d5b1ec0f773948cf66d2f4b8
X-VCS-Branch: master
Date: Sun, 18 Jun 2023 02:18:53 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 0960a6e6-70df-4015-b487-bdbddce78201
X-Archives-Hash: 6ca5698f207fc74085e1dd6d52192afd

commit:     606a92e1d12c8a98d5b1ec0f773948cf66d2f4b8
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 18 02:17:40 2023 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Sun Jun 18 02:18:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=606a92e1

app-emulation/spice-vdagent: also call udev_reload in pkg_postrm()

Closes: https://bugs.gentoo.org/851645
Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>

 app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild
index 36be63a656d9..a53a0f00c60d 100644
--- a/app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild
+++ b/app-emulation/spice-vdagent/spice-vdagent-0.22.1.ebuild
@@ -67,3 +67,7 @@ pkg_postinst() {
 	udev_reload
 	tmpfiles_process spice-vdagentd.conf
 }
+
+pkg_postrm() {
+	udev_reload
+}