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: Wed, 23 Dec 2020 08:06:44
Message-Id: 1608710483.c3e5de21e8e5dd21559d97c2fddcf795a14f96bb.mgorny@gentoo
1 commit: c3e5de21e8e5dd21559d97c2fddcf795a14f96bb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 08:01:23 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 08:01:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e5de21
7
8 xfce-extra/thunar-volman: Bump to 4.16.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.16.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 d98d2bbd619..ead2c480421 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.9.5.tar.bz2 501846 BLAKE2B e64a1593551cb542461be54e7e0624a9e3a3f0db43df166f0922f79e031a0f85da3eb00289a8d30c427c5f6500a3e12b065a7fdf3f34e24d6e88d27be048669a SHA512 843ff1f55b68e6f584da29c2c6c91ed045c4e9ee05cb573db6a0192553cf05faefb4227359bd6ef306c2bbb94e2fe5357c07f70a0d170b35c48d3e9ebac7a9b9
22 DIST thunar-volman-4.15.1.tar.bz2 497217 BLAKE2B 2b98fc4699e82b3f9e60366840b3ba8dd7eb7a7a183ce06c29b2cb5f9fa48701e1ba795a33123032d53107717b514278d076f19e015b4fb7fcbf63c7cdcee2ed SHA512 9c0fb92200aea8109fe0aa9808bd0effe2f6c2def316193812a91137d85801227d0fbbca5ee5da659f718734e7fe254546e992d849702a2d04c345c18e97785c
23 +DIST thunar-volman-4.16.0.tar.bz2 501194 BLAKE2B 3d2fce7bb9a52a950ab84fa9986387af01d7d55864bd8fc1a3051ab406c99648b4ba21d018e806baa07ec1ac7e2bc798eb402b1c0e115e52b58ccdbda0ca4c5f SHA512 33b7561e55491b793aa634dfa0b108788286e6b7a2f60a781b8ba10f73de74630520736ae99c4db66ae2da562a82bb1a6bdacd8307d6d452f26e647da6471af8
24
25 diff --git a/xfce-extra/thunar-volman/thunar-volman-4.16.0.ebuild b/xfce-extra/thunar-volman/thunar-volman-4.16.0.ebuild
26 new file mode 100644
27 index 00000000000..9e3e1ee1be4
28 --- /dev/null
29 +++ b/xfce-extra/thunar-volman/thunar-volman-4.16.0.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2020 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 +DEPEND=">=dev-libs/glib-2.50
49 + dev-libs/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="${DEPEND}
57 + virtual/udev
58 + >=xfce-base/thunar-1.6[udisks]"
59 +BDEPEND="
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 +}