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 39AE4158043 for ; Sat, 20 Apr 2024 17:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BF0DE29E3; Sat, 20 Apr 2024 17:48:01 +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 3F2CEE29E3 for ; Sat, 20 Apr 2024 17:48:01 +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 51AA53433D2 for ; Sat, 20 Apr 2024 17:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDD331747 for ; Sat, 20 Apr 2024 17:47:58 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713635214.b852144648542743ae2774a88be3362a103e5868.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/uam/uam-0.3.2-r1.ebuild sys-apps/uam/uam-0.3.2-r2.ebuild X-VCS-Directories: sys-apps/uam/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b852144648542743ae2774a88be3362a103e5868 X-VCS-Branch: master Date: Sat, 20 Apr 2024 17:47:58 +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: 4da2f7b3-ff62-45c4-a214-d8f27871da8f X-Archives-Hash: e2eea7963405648e6c1fd224e607ced8 commit: b852144648542743ae2774a88be3362a103e5868 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Apr 20 17:46:54 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Apr 20 17:46:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8521446 sys-apps/uam: EAPI=8, fix udev_reload Closes: https://bugs.gentoo.org/851888 Signed-off-by: Arthur Zamarin gentoo.org> sys-apps/uam/{uam-0.3.2-r1.ebuild => uam-0.3.2-r2.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sys-apps/uam/uam-0.3.2-r1.ebuild b/sys-apps/uam/uam-0.3.2-r2.ebuild similarity index 92% rename from sys-apps/uam/uam-0.3.2-r1.ebuild rename to sys-apps/uam/uam-0.3.2-r2.ebuild index 2514adb19864..2aea00b7b611 100644 --- a/sys-apps/uam/uam-0.3.2-r1.ebuild +++ b/sys-apps/uam/uam-0.3.2-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit udev @@ -12,12 +12,11 @@ SRC_URI="https://github.com/projg2/uam/releases/download/${P}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" RDEPEND=" acct-group/plugdev virtual/udev" -DEPEND="virtual/pkgconfig" +BDEPEND="virtual/pkgconfig" pkg_postinst() { elog "To be able to access uam-mounted filesystems, you have to be" @@ -38,3 +37,7 @@ pkg_postinst() { udev_reload } + +pkg_postrm() { + udev_reload +}