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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCDE8138335 for ; Thu, 6 Sep 2018 21:23:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7BE7E0961; Thu, 6 Sep 2018 21:22:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 934C0E0964 for ; Thu, 6 Sep 2018 21:22:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0DDE335CCB for ; Thu, 6 Sep 2018 21:22:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0F8E3E1 for ; Thu, 6 Sep 2018 21:22:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1536268956.8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918.mgorny@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.ebuild X-VCS-Directories: sys-apps/uam/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918 X-VCS-Branch: master Date: Thu, 6 Sep 2018 21:22:51 +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-Archives-Salt: 960b36c3-56b1-4687-b0b7-30aef5ed6138 X-Archives-Hash: a2add7d6e9486a8cf2515117a84fe748 commit: 8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918 Author: Michał Górny gentoo org> AuthorDate: Thu Sep 6 20:56:57 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 6 21:22:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d2b5b2a sys-apps/uam: Clean old up sys-apps/uam/uam-0.3.2.ebuild | 44 ------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/sys-apps/uam/uam-0.3.2.ebuild b/sys-apps/uam/uam-0.3.2.ebuild deleted file mode 100644 index e0bf0ed9eef..00000000000 --- a/sys-apps/uam/uam-0.3.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools-utils udev user - -DESCRIPTION="Simple udev-based automounter for removable USB media" -HOMEPAGE="https://github.com/mgorny/uam/" -SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="virtual/udev" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_postinst() { - # The plugdev group is created by pam, pmount and many other ebuilds - # in gx86. As we don't want to depend on any of them (even pmount is - # optional), we create it ourself too. - enewgroup plugdev - - 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 -}