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 D38AC158043 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 BAACBE29E4; Sat, 20 Apr 2024 17:48:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A3550E29E4 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 5D0B03433DB 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 F23F11748 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: <1713635263.454a31ef807009bad1e2328191cdef9f4dc7aec9.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-9999.ebuild X-VCS-Directories: sys-apps/uam/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 454a31ef807009bad1e2328191cdef9f4dc7aec9 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: 63cd0cb4-d179-4142-9611-1fd688738f74 X-Archives-Hash: 8ad120f02fa3fc50dfd3d79681b08d26 commit: 454a31ef807009bad1e2328191cdef9f4dc7aec9 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Apr 20 17:47:43 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Apr 20 17:47:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454a31ef sys-apps/uam: drop stale live ebuild Signed-off-by: Arthur Zamarin gentoo.org> sys-apps/uam/uam-9999.ebuild | 46 -------------------------------------------- 1 file changed, 46 deletions(-) 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 -}