diff options
Diffstat (limited to 'sys-apps/uam')
-rw-r--r-- | sys-apps/uam/Manifest | 3 | ||||
-rw-r--r-- | sys-apps/uam/uam-0.3.2-r2.ebuild (renamed from sys-apps/uam/uam-0.3.2-r1.ebuild) | 11 | ||||
-rw-r--r-- | sys-apps/uam/uam-9999.ebuild | 46 |
3 files changed, 8 insertions, 52 deletions
diff --git a/sys-apps/uam/Manifest b/sys-apps/uam/Manifest index e3415a8daf6b..640086d2e72d 100644 --- a/sys-apps/uam/Manifest +++ b/sys-apps/uam/Manifest @@ -1,4 +1,3 @@ DIST uam-0.3.2.tar.bz2 60508 BLAKE2B 35accde4ae392f33af0d1c0f30069975e30691927dff33ac754d00f1de7b30d1b789e9797637f9701913796b5993add4b2405294fa47b1fbd6f8d6e1946b1ad8 SHA512 4a4ee9286b3762227fc5a03a10998cb3b4a2f110cd648bb2ed45f400e31218a17d3929c83450e9190255bda1f22f4001a7f33842999b79c27aa12fc11f286273 -EBUILD uam-0.3.2-r1.ebuild 1277 BLAKE2B 54e58123395000cdae558231a64056661498be5228b02bd415e4dd478e9b04d47fff5e894f211940357ed34b68ed4d710ceebd58fadf15b1093200b365e6a725 SHA512 ed4f88ba6bb613f6fd839fe03d37850ec601c62f60614e04f3bd9e479547983845dff39bd9c5e212959255f1427a9e0f9effc76df5734968300b31546ba05679 -EBUILD uam-9999.ebuild 1311 BLAKE2B 022e072fb7ff30443175966480f7644d3d2eed4b369455195dd09b7faa564be9a3d8cddc8d9a3b9392bc3618bbe4527b338f99f08818fefd989c721b6895a1cc SHA512 1b6380047583171250b2cbbf5d00d34a2bba9419433c748ea5e20e6881c686569195a4bb67e070b7a8cd2271ffd6900be8d0919f85b3dda730bb43a3f7e88ecd +EBUILD uam-0.3.2-r2.ebuild 1301 BLAKE2B 9957cad7168c83ece672203fef4adce24706982c37e1b1b2f9da1005446bb5bb8e3b1281df0c6cc7b2936d5aeaf412f510c340531784601f27eb76bb284402b3 SHA512 fb67e19b56d3f2f6243f64fddb54fac2462b9da7058cc639c90bd3723f760a03e8ae35150f92cb73004a6ddccad490e50527fad584e30f5484ea3cccd6b2b192 MISC metadata.xml 715 BLAKE2B 8d4411787386e62f7a852473b7662a7b62189058bd14024465bec3ed46132d1ddf11e5fe305c5865e92c4e072453744c5f783ca94764e6825faf7e10c8562d9e SHA512 536adf66f3ed007fe9910db52219542c9867caecfd4d255bc4bdbc842307bc55615dfb95d9131f86ca721bded8c815d5bd1c9f9ca10941c5c7f82a5502451f25 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 +} diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild deleted file mode 100644 index a0bdb67f668f..000000000000 --- a/sys-apps/uam/uam-9999.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools git-r3 udev - -DESCRIPTION="Simple udev-based automounter for removable USB media" -HOMEPAGE="https://github.com/projg2/uam/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/projg2/uam.git" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND=" - acct-group/plugdev - virtual/udev" -DEPEND="virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -pkg_postinst() { - elog "To be able to access uam-mounted filesystems, you have to be" - elog "a member of the 'plugdev' group." - elog - elog "Note that uam doesn't provide any way to allow unprivileged user" - elog "to manually umount devices. The upstream suggested solution" - elog "is to use [sys-apps/pmount]. If you don't feel like installing" - elog "additional tools, remember to sync before removing your USB stick." - elog - elog "If you'd like uam to mount ejectable media like CDs/DVDs, you need" - elog "to enable in-kernel media polling, e.g.:" - elog " echo 5000 > /sys/module/block/parameters/events_dfl_poll_msecs" - elog "where 5000 would mean a poll will occur every 5 seconds." - elog - elog "If you'd like to receive libnotify-based notifications, you need" - elog "to install the [x11-misc/sw-notify-send] tool." - - udev_reload -} |