* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-01-02 6:19 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-01-02 6:19 UTC (permalink / raw
To: gentoo-commits
commit: 94430e13013be64b454278d3c655cb7a2730c18e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 1 22:13:44 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 2 06:18:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94430e13
sys-apps/uam: Clean old up
sys-apps/uam/Manifest | 2 --
sys-apps/uam/uam-0.3.1.ebuild | 44 -------------------------------------
sys-apps/uam/uam-0.3.ebuild | 50 -------------------------------------------
3 files changed, 96 deletions(-)
diff --git a/sys-apps/uam/Manifest b/sys-apps/uam/Manifest
index 6a361c0b1f2..0eb41229ce8 100644
--- a/sys-apps/uam/Manifest
+++ b/sys-apps/uam/Manifest
@@ -1,3 +1 @@
-DIST uam-0.3.1.tar.bz2 59632 BLAKE2B 7134ac7754635904023a6b6272786f078d87b4cde13e949046bc48492f7632ef1c8af24f6d16a2c09abcff59df4047f875645ac13836457f1ea35af495396ecd SHA512 bcd7a37701eb73bf3443d1fa98372fc0788cb3101619265c012d010f83e2cccc17fa8bc033704396707aa6de9caf0a80c9637dd7c7d1f86b01fd844967dac5a5
DIST uam-0.3.2.tar.bz2 60508 BLAKE2B 35accde4ae392f33af0d1c0f30069975e30691927dff33ac754d00f1de7b30d1b789e9797637f9701913796b5993add4b2405294fa47b1fbd6f8d6e1946b1ad8 SHA512 4a4ee9286b3762227fc5a03a10998cb3b4a2f110cd648bb2ed45f400e31218a17d3929c83450e9190255bda1f22f4001a7f33842999b79c27aa12fc11f286273
-DIST uam-0.3.tar.bz2 58143 BLAKE2B 08a20293e66c649b9933138888411c0a8bbf86d24dfe5bff7714d6e9f6d96e6608de237ef0cd09a9d4b5b7f24566dfc0add581a64592c02c8f4b0325c132cf4d SHA512 6b5ce8b37ea7b430a492c4411ac005d6555e49bbc4849ae03c5bb16e7dd89e8cac32349dfa0507f01cc6b22bdb111eda69471141da4952f8425f9390035c6085
diff --git a/sys-apps/uam/uam-0.3.1.ebuild b/sys-apps/uam/uam-0.3.1.ebuild
deleted file mode 100644
index facab0b105e..00000000000
--- a/sys-apps/uam/uam-0.3.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 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://bitbucket.org/mgorny/uam/"
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${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
-}
diff --git a/sys-apps/uam/uam-0.3.ebuild b/sys-apps/uam/uam-0.3.ebuild
deleted file mode 100644
index 097c74fe846..00000000000
--- a/sys-apps/uam/uam-0.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools-utils user
-
-DESCRIPTION="Simple udev-based automounter for removable USB media"
-HOMEPAGE="https://bitbucket.org/mgorny/uam/"
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="virtual/udev"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( NEWS README )
-
-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."
-
- if [[ -e "${EROOT}"/dev/.udev ]]; then
- ebegin "Calling udev to reload its rules"
- udevadm control --reload-rules
- eend $?
- fi
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-05-16 19:03 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-05-16 19:03 UTC (permalink / raw
To: gentoo-commits
commit: a05ed6ed30b2d87d1e7d8711cb8060a6fa715c39
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 19:00:44 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 16 19:03:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05ed6ed
sys-apps/uam: Bump to EAPI 6
sys-apps/uam/{uam-9999.ebuild => uam-0.3.2-r1.ebuild} | 11 ++++-------
sys-apps/uam/uam-9999.ebuild | 11 +++++++----
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-0.3.2-r1.ebuild
similarity index 90%
copy from sys-apps/uam/uam-9999.ebuild
copy to sys-apps/uam/uam-0.3.2-r1.ebuild
index 5b6acde55b3..409fc7f68e8 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-0.3.2-r1.ebuild
@@ -1,20 +1,17 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3 udev user
+inherit udev user
DESCRIPTION="Simple udev-based automounter for removable USB media"
HOMEPAGE="https://github.com/mgorny/uam/"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/uam.git"
+SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="virtual/udev"
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild
index 5b6acde55b3..4aa94933698 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-9999.ebuild
@@ -1,11 +1,9 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3 udev user
+inherit autotools git-r3 udev user
DESCRIPTION="Simple udev-based automounter for removable USB media"
HOMEPAGE="https://github.com/mgorny/uam/"
@@ -21,6 +19,11 @@ RDEPEND="virtual/udev"
DEPEND="${RDEPEND}
virtual/pkgconfig"
+src_prepare() {
+ default
+ eautoreconf
+}
+
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
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-05-16 19:03 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-05-16 19:03 UTC (permalink / raw
To: gentoo-commits
commit: 1e68495bb473bc91a99cd439af4d1ce402837138
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 18:57:35 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 16 19:03:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e68495b
sys-apps/uam: Switch to GitHub
sys-apps/uam/metadata.xml | 4 ++--
sys-apps/uam/uam-0.3.2.ebuild | 6 +++---
sys-apps/uam/uam-9999.ebuild | 4 ++--
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sys-apps/uam/metadata.xml b/sys-apps/uam/metadata.xml
index 6a889f577ea..2cdff751d2a 100644
--- a/sys-apps/uam/metadata.xml
+++ b/sys-apps/uam/metadata.xml
@@ -15,7 +15,7 @@
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
- <bugs-to>https://bitbucket.org/mgorny/uam/issues/</bugs-to>
- <remote-id type="bitbucket">mgorny/uam</remote-id>
+ <bugs-to>https://github.com/mgorny/uam/issues/</bugs-to>
+ <remote-id type="github">mgorny/uam</remote-id>
</upstream>
</pkgmetadata>
diff --git a/sys-apps/uam/uam-0.3.2.ebuild b/sys-apps/uam/uam-0.3.2.ebuild
index 1700a15a47c..e0bf0ed9eef 100644
--- a/sys-apps/uam/uam-0.3.2.ebuild
+++ b/sys-apps/uam/uam-0.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -6,8 +6,8 @@ EAPI=5
inherit autotools-utils udev user
DESCRIPTION="Simple udev-based automounter for removable USB media"
-HOMEPAGE="https://bitbucket.org/mgorny/uam/"
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
+HOMEPAGE="https://github.com/mgorny/uam/"
+SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild
index 653f9fe868d..5b6acde55b3 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-9999.ebuild
@@ -8,9 +8,9 @@ AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils git-r3 udev user
DESCRIPTION="Simple udev-based automounter for removable USB media"
-HOMEPAGE="https://bitbucket.org/mgorny/uam/"
+HOMEPAGE="https://github.com/mgorny/uam/"
SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git"
+EGIT_REPO_URI="https://github.com/mgorny/uam.git"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-05-16 19:03 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-05-16 19:03 UTC (permalink / raw
To: gentoo-commits
commit: d917ea1283802a0ed78028bf89cad5764ca08d62
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 18:52:29 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 16 19:03:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d917ea12
sys-apps/uam: Remove conditionals from -9999
sys-apps/uam/uam-9999.ebuild | 19 +++++--------------
1 file changed, 5 insertions(+), 14 deletions(-)
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild
index 512c8e51355..653f9fe868d 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-9999.ebuild
@@ -1,35 +1,26 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-#if LIVE
AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git"
-
-inherit git-r3
-#endif
-inherit autotools-utils udev user
+inherit autotools-utils git-r3 udev user
DESCRIPTION="Simple udev-based automounter for removable USB media"
HOMEPAGE="https://bitbucket.org/mgorny/uam/"
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
IUSE=""
RDEPEND="virtual/udev"
DEPEND="${RDEPEND}
virtual/pkgconfig"
-#if LIVE
-KEYWORDS=
-SRC_URI=
-#endif
-
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
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-09-06 21:22 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-09-06 21:22 UTC (permalink / raw
To: gentoo-commits
commit: 8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 6 20:56:57 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> 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
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2018-09-06 21:22 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-09-06 21:22 UTC (permalink / raw
To: gentoo-commits
commit: 51ea18273290b8c394fa113d70184459acbd07ec
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 6 20:56:41 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Sep 6 21:22:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51ea1827
sys-apps/uam: Copy stable keywords to the EAPI bump
sys-apps/uam/uam-0.3.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/uam/uam-0.3.2-r1.ebuild b/sys-apps/uam/uam-0.3.2-r1.ebuild
index 409fc7f68e8..eddf29d0f8a 100644
--- a/sys-apps/uam/uam-0.3.2-r1.ebuild
+++ b/sys-apps/uam/uam-0.3.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="virtual/udev"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2019-09-13 12:58 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2019-09-13 12:58 UTC (permalink / raw
To: gentoo-commits
commit: 011482c262ccbce84ce869e3406757346f1394a2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 18:32:52 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 12:42:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011482c2
sys-apps/uam: Use acct-group/plugdev
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-apps/uam/uam-0.3.2-r1.ebuild | 14 +++++---------
sys-apps/uam/uam-9999.ebuild | 14 +++++---------
2 files changed, 10 insertions(+), 18 deletions(-)
diff --git a/sys-apps/uam/uam-0.3.2-r1.ebuild b/sys-apps/uam/uam-0.3.2-r1.ebuild
index eddf29d0f8a..e22ef2bb800 100644
--- a/sys-apps/uam/uam-0.3.2-r1.ebuild
+++ b/sys-apps/uam/uam-0.3.2-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit udev user
+inherit udev
DESCRIPTION="Simple udev-based automounter for removable USB media"
HOMEPAGE="https://github.com/mgorny/uam/"
@@ -14,16 +14,12 @@ SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
-RDEPEND="virtual/udev"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
+RDEPEND="
+ acct-group/plugdev
+ virtual/udev"
+DEPEND="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
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild
index 4aa94933698..3a247b31bd2 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit autotools git-r3 udev user
+inherit autotools git-r3 udev
DESCRIPTION="Simple udev-based automounter for removable USB media"
HOMEPAGE="https://github.com/mgorny/uam/"
@@ -15,9 +15,10 @@ SLOT="0"
KEYWORDS=""
IUSE=""
-RDEPEND="virtual/udev"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
+RDEPEND="
+ acct-group/plugdev
+ virtual/udev"
+DEPEND="virtual/pkgconfig"
src_prepare() {
default
@@ -25,11 +26,6 @@ src_prepare() {
}
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
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2023-07-25 21:00 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2023-07-25 21:00 UTC (permalink / raw
To: gentoo-commits
commit: dd387b5b881e6208fb2b9a9b224779fff42e8c2d
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jun 17 08:49:12 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Jul 25 20:50:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd387b5b
sys-apps/uam: update HOMEPAGE
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-apps/uam/metadata.xml | 4 ++--
sys-apps/uam/uam-0.3.2-r1.ebuild | 6 +++---
sys-apps/uam/uam-9999.ebuild | 6 +++---
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/sys-apps/uam/metadata.xml b/sys-apps/uam/metadata.xml
index 96811fbf503a..580155d522cb 100644
--- a/sys-apps/uam/metadata.xml
+++ b/sys-apps/uam/metadata.xml
@@ -15,7 +15,7 @@
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
- <bugs-to>https://github.com/mgorny/uam/issues/</bugs-to>
- <remote-id type="github">mgorny/uam</remote-id>
+ <bugs-to>https://github.com/projg2/uam/issues/</bugs-to>
+ <remote-id type="github">projg2/uam</remote-id>
</upstream>
</pkgmetadata>
diff --git a/sys-apps/uam/uam-0.3.2-r1.ebuild b/sys-apps/uam/uam-0.3.2-r1.ebuild
index a8c27ad33943..2514adb19864 100644
--- a/sys-apps/uam/uam-0.3.2-r1.ebuild
+++ b/sys-apps/uam/uam-0.3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -6,8 +6,8 @@ EAPI=6
inherit udev
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"
+HOMEPAGE="https://github.com/projg2/uam/"
+SRC_URI="https://github.com/projg2/uam/releases/download/${P}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
diff --git a/sys-apps/uam/uam-9999.ebuild b/sys-apps/uam/uam-9999.ebuild
index 3a247b31bd2c..a0bdb67f668f 100644
--- a/sys-apps/uam/uam-9999.ebuild
+++ b/sys-apps/uam/uam-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -6,9 +6,9 @@ EAPI=6
inherit autotools git-r3 udev
DESCRIPTION="Simple udev-based automounter for removable USB media"
-HOMEPAGE="https://github.com/mgorny/uam/"
+HOMEPAGE="https://github.com/projg2/uam/"
SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/uam.git"
+EGIT_REPO_URI="https://github.com/projg2/uam.git"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2024-04-20 17:47 Arthur Zamarin
0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-04-20 17:47 UTC (permalink / raw
To: gentoo-commits
commit: 454a31ef807009bad1e2328191cdef9f4dc7aec9
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 17:47:43 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> 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 <arthurzam <AT> 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
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/
@ 2024-04-20 17:47 Arthur Zamarin
0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-04-20 17:47 UTC (permalink / raw
To: gentoo-commits
commit: b852144648542743ae2774a88be3362a103e5868
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 17:46:54 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 17:46:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8521446
sys-apps/uam: EAPI=8, fix udev_reload
Closes: https://bugs.gentoo.org/851888
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-apps/uam/{uam-0.3.2-r1.ebuild => uam-0.3.2-r2.ebuild} | 11 +++++++----
1 file 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
similarity index 92%
rename from sys-apps/uam/uam-0.3.2-r1.ebuild
rename to 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
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-20 17:48 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-02 6:19 [gentoo-commits] repo/gentoo:master commit in: sys-apps/uam/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2018-05-16 19:03 Michał Górny
2018-05-16 19:03 Michał Górny
2018-05-16 19:03 Michał Górny
2018-09-06 21:22 Michał Górny
2018-09-06 21:22 Michał Górny
2019-09-13 12:58 Michał Górny
2023-07-25 21:00 Conrad Kostecki
2024-04-20 17:47 Arthur Zamarin
2024-04-20 17:47 Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox