Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/thunar-volman/
Date: Mon, 12 Aug 2019 13:21:49
Message-Id: 1565616034.28af458cf5bd870db8a40d783fa45a9f7d7e43af.mgorny@gentoo
1 commit: 28af458cf5bd870db8a40d783fa45a9f7d7e43af
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 11:51:09 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 13:20:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28af458c
7
8 xfce-extra/thunar-volman: Bump to 0.9.5
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/thunar-volman/Manifest | 1 +
13 .../thunar-volman/thunar-volman-0.9.5.ebuild | 47 ++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/xfce-extra/thunar-volman/Manifest b/xfce-extra/thunar-volman/Manifest
17 index 1dd68cefec2..dd44f5087f5 100644
18 --- a/xfce-extra/thunar-volman/Manifest
19 +++ b/xfce-extra/thunar-volman/Manifest
20 @@ -1,2 +1,3 @@
21 DIST thunar-volman-0.8.1.tar.bz2 474769 BLAKE2B 2bf6378b35f0cd868cc7363909cc5d54a997a5a69758a27d45640968e3ef8d7cb3f5af185d1a8f83e8593610490a8566742070808ab85810cd3411856aa0030a SHA512 a82c019b028277d97e7903dcbeaf4704cb7fc1e95b0ea18c6290a7a8581355691990cbdb5fa0c234ed5dd51c1ba7f1bca9a495e60f9f8597a993845481113bb6
22 DIST thunar-volman-0.9.4.tar.bz2 501493 BLAKE2B 788b881f40995e95fffcedd70c0c0ea66ec8f9a81386e103d41c853a2d24408d79be04053cf34fbb5a8a28a367713ccd63cc3eaf4e536ec71a3466edb8d387ae SHA512 e75d1d8a6094f9722e170f7dc2978a213b292225ec66cdb602c4a3a2b9dac07b5d5228c970c0a39f46f4f7a0197c089f7f930fbc24dfc202dbdc27501686fb2f
23 +DIST thunar-volman-0.9.5.tar.bz2 501846 BLAKE2B e64a1593551cb542461be54e7e0624a9e3a3f0db43df166f0922f79e031a0f85da3eb00289a8d30c427c5f6500a3e12b065a7fdf3f34e24d6e88d27be048669a SHA512 843ff1f55b68e6f584da29c2c6c91ed045c4e9ee05cb573db6a0192553cf05faefb4227359bd6ef306c2bbb94e2fe5357c07f70a0d170b35c48d3e9ebac7a9b9
24
25 diff --git a/xfce-extra/thunar-volman/thunar-volman-0.9.5.ebuild b/xfce-extra/thunar-volman/thunar-volman-0.9.5.ebuild
26 new file mode 100644
27 index 00000000000..854fba8adbb
28 --- /dev/null
29 +++ b/xfce-extra/thunar-volman/thunar-volman-0.9.5.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit xdg-utils
37 +
38 +DESCRIPTION="Daemon that enforces volume-related policies"
39 +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman"
40 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +# CC for tvm-burn-cd.svg
43 +LICENSE="GPL-2+ CC-BY-SA-3.0"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="libnotify"
47 +
48 +COMMON_DEPEND=">=dev-libs/glib-2.30
49 + virtual/libgudev:=
50 + >=x11-libs/gtk+-3.20:3
51 + >=xfce-base/exo-0.10:=
52 + >=xfce-base/libxfce4ui-4.12:=
53 + >=xfce-base/libxfce4util-4.12:=
54 + >=xfce-base/xfconf-4.12:=
55 + libnotify? ( >=x11-libs/libnotify-0.7 )"
56 +RDEPEND="${COMMON_DEPEND}
57 + virtual/udev
58 + >=xfce-base/thunar-1.6[udisks]"
59 +DEPEND="${COMMON_DEPEND}
60 + dev-util/intltool
61 + sys-devel/gettext
62 + virtual/pkgconfig"
63 +
64 +src_configure() {
65 + local myconf=(
66 + $(use_enable libnotify notifications)
67 + )
68 + econf "${myconf[@]}"
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_icon_cache_update
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_icon_cache_update
77 +}