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 575A7158093 for ; Sun, 3 Jul 2022 09:35:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CE66E098A; Sun, 3 Jul 2022 09:35:44 +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 643A8E098A for ; Sun, 3 Jul 2022 09:35:44 +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 611F5341DEC for ; Sun, 3 Jul 2022 09:35:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0C20501 for ; Sun, 3 Jul 2022 09:35:41 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1656840930.991ac772d4fdcf62a35ba2aafb2d2db9564e566b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libnitrokey/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libnitrokey/libnitrokey-3.6.ebuild app-crypt/libnitrokey/libnitrokey-9999.ebuild X-VCS-Directories: app-crypt/libnitrokey/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 991ac772d4fdcf62a35ba2aafb2d2db9564e566b X-VCS-Branch: master Date: Sun, 3 Jul 2022 09:35:41 +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: 43036434-2373-495f-85bc-d14656264df4 X-Archives-Hash: 503e11e7812153a2ffbab05df7c500f9 commit: 991ac772d4fdcf62a35ba2aafb2d2db9564e566b Author: David Seifert gentoo org> AuthorDate: Sun Jul 3 09:35:30 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jul 3 09:35:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991ac772 app-crypt/libnitrokey: call udev_reload in pkg_postinst/pkg_postrm Closes: https://bugs.gentoo.org/854243 Signed-off-by: David Seifert gentoo.org> app-crypt/libnitrokey/libnitrokey-3.6.ebuild | 10 +++++++++- app-crypt/libnitrokey/libnitrokey-9999.ebuild | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/app-crypt/libnitrokey/libnitrokey-3.6.ebuild b/app-crypt/libnitrokey/libnitrokey-3.6.ebuild index ecef8c9b5c2d..dd6d0126cf31 100644 --- a/app-crypt/libnitrokey/libnitrokey-3.6.ebuild +++ b/app-crypt/libnitrokey/libnitrokey-3.6.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=7 @@ -45,3 +45,11 @@ src_configure() { ) cmake_src_configure } + +pkg_postinst() { + udev_reload +} + +pkg_postrm() { + udev_reload +} diff --git a/app-crypt/libnitrokey/libnitrokey-9999.ebuild b/app-crypt/libnitrokey/libnitrokey-9999.ebuild index 8687d0d1b4e3..a9135e08d5d4 100644 --- a/app-crypt/libnitrokey/libnitrokey-9999.ebuild +++ b/app-crypt/libnitrokey/libnitrokey-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=7 @@ -45,3 +45,11 @@ src_configure() { ) cmake_src_configure } + +pkg_postinst() { + udev_reload +} + +pkg_postrm() { + udev_reload +}