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: Fri, 21 Aug 2020 02:23:42
Message-Id: 1597976615.0c06221cd11b4c41245dff941e0d4e0f5af56c50.mgorny@gentoo
1 commit: 0c06221cd11b4c41245dff941e0d4e0f5af56c50
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 21 02:16:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 21 02:23:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c06221c
7
8 xfce-extra/thunar-volman: Bump to 4.15.0
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-4.15.0.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 2f97c7c6829..bc02be3ed11 100644
18 --- a/xfce-extra/thunar-volman/Manifest
19 +++ b/xfce-extra/thunar-volman/Manifest
20 @@ -1 +1,2 @@
21 DIST thunar-volman-0.9.5.tar.bz2 501846 BLAKE2B e64a1593551cb542461be54e7e0624a9e3a3f0db43df166f0922f79e031a0f85da3eb00289a8d30c427c5f6500a3e12b065a7fdf3f34e24d6e88d27be048669a SHA512 843ff1f55b68e6f584da29c2c6c91ed045c4e9ee05cb573db6a0192553cf05faefb4227359bd6ef306c2bbb94e2fe5357c07f70a0d170b35c48d3e9ebac7a9b9
22 +DIST thunar-volman-4.15.0.tar.bz2 508430 BLAKE2B cffad4035dc203e546bb35e257012890303b8be7efcfa33e5f4178532b3163b1f0d3a497e877018c282e9a23644a6de18fff8e6a199b267027552cfb77673eeb SHA512 e7893e4d256080c999b4a04921dfa21ed7d52c1879c63a3d53e9baf482c021534debb22edd2f5cada34c1be045f2c78725fbecfca2dafe8e17bf2557d86b2496
23
24 diff --git a/xfce-extra/thunar-volman/thunar-volman-4.15.0.ebuild b/xfce-extra/thunar-volman/thunar-volman-4.15.0.ebuild
25 new file mode 100644
26 index 00000000000..2290a1f6a0f
27 --- /dev/null
28 +++ b/xfce-extra/thunar-volman/thunar-volman-4.15.0.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="Daemon that enforces volume-related policies"
38 +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman"
39 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +# CC for tvm-burn-cd.svg
42 +LICENSE="GPL-2+ CC-BY-SA-3.0"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="libnotify"
46 +
47 +COMMON_DEPEND=">=dev-libs/glib-2.30
48 + dev-libs/libgudev:=
49 + >=x11-libs/gtk+-3.20:3
50 + >=xfce-base/exo-0.10:=
51 + >=xfce-base/libxfce4ui-4.12:=
52 + >=xfce-base/libxfce4util-4.12:=
53 + >=xfce-base/xfconf-4.12:=
54 + libnotify? ( >=x11-libs/libnotify-0.7 )"
55 +RDEPEND="${COMMON_DEPEND}
56 + virtual/udev
57 + >=xfce-base/thunar-1.6[udisks]"
58 +DEPEND="${COMMON_DEPEND}
59 + dev-util/intltool
60 + sys-devel/gettext
61 + virtual/pkgconfig"
62 +
63 +src_configure() {
64 + local myconf=(
65 + $(use_enable libnotify notifications)
66 + )
67 + econf "${myconf[@]}"
68 +}
69 +
70 +pkg_postinst() {
71 + xdg_icon_cache_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_icon_cache_update
76 +}