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 DD323158089 for ; Mon, 18 Sep 2023 16:39:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32E5C2BC07C; Mon, 18 Sep 2023 16:39:59 +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 18D622BC07C for ; Mon, 18 Sep 2023 16:39:59 +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 32822335C78 for ; Mon, 18 Sep 2023 16:39:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4C6B11E9 for ; Mon, 18 Sep 2023 16:39:55 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1695055189.fc8ed35c279112504ed48f3b7a91a095ff5e51f8.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/heimdall/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-mobilephone/heimdall/heimdall-2.0.2.ebuild app-mobilephone/heimdall/heimdall-9999.ebuild X-VCS-Directories: app-mobilephone/heimdall/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: fc8ed35c279112504ed48f3b7a91a095ff5e51f8 X-VCS-Branch: master Date: Mon, 18 Sep 2023 16:39:55 +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: 9ffc2190-b48c-4821-a588-e3cab4c128e5 X-Archives-Hash: ddbe28957de6f1cd374f3e7e0602c4a2 commit: fc8ed35c279112504ed48f3b7a91a095ff5e51f8 Author: Joonas Niilola gentoo org> AuthorDate: Mon Sep 18 16:38:55 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Sep 18 16:39:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8ed35c app-mobilephone/heimdall: call udev_reload in pkg_postrm phase Signed-off-by: Joonas Niilola gentoo.org> app-mobilephone/heimdall/heimdall-2.0.2.ebuild | 8 ++++++-- app-mobilephone/heimdall/heimdall-9999.ebuild | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/app-mobilephone/heimdall/heimdall-2.0.2.ebuild b/app-mobilephone/heimdall/heimdall-2.0.2.ebuild index b1c61d9f7b06..7595551d2aa5 100644 --- a/app-mobilephone/heimdall/heimdall-2.0.2.ebuild +++ b/app-mobilephone/heimdall/heimdall-2.0.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,7 @@ inherit cmake udev if [[ ${PV} != 9999 ]]; then SRC_URI="https://git.sr.ht/~grimler/Heimdall/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm64" + KEYWORDS="~amd64 ~arm64" S="${WORKDIR}/Heimdall-v${PV}" else inherit git-r3 @@ -50,3 +50,7 @@ src_install() { pkg_postinst() { udev_reload } + +pkg_postrm() { + udev_reload +} diff --git a/app-mobilephone/heimdall/heimdall-9999.ebuild b/app-mobilephone/heimdall/heimdall-9999.ebuild index b1c61d9f7b06..69599346a8bb 100644 --- a/app-mobilephone/heimdall/heimdall-9999.ebuild +++ b/app-mobilephone/heimdall/heimdall-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -50,3 +50,7 @@ src_install() { pkg_postinst() { udev_reload } + +pkg_postrm() { + udev_reload +}