Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/uam: uam-0.3.2.ebuild ChangeLog
Date: Thu, 26 Sep 2013 21:16:20
Message-Id: 20130926211617.0B5CF2004C@flycatcher.gentoo.org
1 mgorny 13/09/26 21:16:16
2
3 Modified: ChangeLog
4 Added: uam-0.3.2.ebuild
5 Log:
6 Version bump. Fixes requiring tinynotify-send aside sw-notify-send, bug #485898.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.32 sys-apps/uam/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uam/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uam/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uam/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/uam/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 4 Jun 2013 07:02:16 -0000 1.31
24 +++ ChangeLog 26 Sep 2013 21:16:16 -0000 1.32
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/uam
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/uam/ChangeLog,v 1.31 2013/06/04 07:02:16 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/uam/ChangeLog,v 1.32 2013/09/26 21:16:16 mgorny Exp $
30 +
31 +*uam-0.3.2 (26 Sep 2013)
32 +
33 + 26 Sep 2013; Michał Górny <mgorny@g.o> +uam-0.3.2.ebuild:
34 + Version bump. Fixes requiring tinynotify-send aside sw-notify-send, bug
35 + #485898.
36
37 *uam-0.3.1 (04 Jun 2013)
38
39
40
41
42 1.1 sys-apps/uam/uam-0.3.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uam/uam-0.3.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uam/uam-0.3.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uam-0.3.2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/uam/uam-0.3.2.ebuild,v 1.1 2013/09/26 21:16:16 mgorny Exp $
52
53 EAPI=5
54
55 inherit autotools-utils udev user
56
57 DESCRIPTION="Simple udev-based automounter for removable USB media"
58 HOMEPAGE="https://bitbucket.org/mgorny/uam/"
59 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="virtual/udev"
67 DEPEND="${RDEPEND}
68 virtual/pkgconfig"
69
70 pkg_postinst() {
71 # The plugdev group is created by pam, pmount and many other ebuilds
72 # in gx86. As we don't want to depend on any of them (even pmount is
73 # optional), we create it ourself too.
74 enewgroup plugdev
75
76 elog "To be able to access uam-mounted filesystems, you have to be"
77 elog "a member of the 'plugdev' group."
78 elog
79 elog "Note that uam doesn't provide any way to allow unprivileged user"
80 elog "to manually umount devices. The upstream suggested solution"
81 elog "is to use [sys-apps/pmount]. If you don't feel like installing"
82 elog "additional tools, remember to sync before removing your USB stick."
83 elog
84 elog "If you'd like uam to mount ejectable media like CDs/DVDs, you need"
85 elog "to enable in-kernel media polling, e.g.:"
86 elog " echo 5000 > /sys/module/block/parameters/events_dfl_poll_msecs"
87 elog "where 5000 would mean a poll will occur every 5 seconds."
88 elog
89 elog "If you'd like to receive libnotify-based notifications, you need"
90 elog "to install the [x11-misc/sw-notify-send] tool."
91
92 udev_reload
93 }