diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-20 20:46:54 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-20 20:46:54 +0300 |
commit | b852144648542743ae2774a88be3362a103e5868 (patch) | |
tree | 1fc8ca4a064c830067b95c4a127c8ab315fd336f | |
parent | sys-apps/xdg-desktop-portal: Stabilize 1.18.4 arm64, #930324 (diff) | |
download | gentoo-b852144648542743ae2774a88be3362a103e5868.tar.gz gentoo-b852144648542743ae2774a88be3362a103e5868.tar.bz2 gentoo-b852144648542743ae2774a88be3362a103e5868.zip |
sys-apps/uam: EAPI=8, fix udev_reload
Closes: https://bugs.gentoo.org/851888
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r-- | sys-apps/uam/uam-0.3.2-r2.ebuild (renamed from sys-apps/uam/uam-0.3.2-r1.ebuild) | 11 |
1 files 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 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 +} |